diff --git a/src/index.d.ts b/src/index.d.ts index 94e32077..e88b0fd3 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -1,9 +1,10 @@ /// -import { FC, SVGAttributes } from 'react'; +import { FC, RefObject, SVGAttributes } from 'react'; export interface IconProps extends SVGAttributes { color?: string; size?: string | number; + ref?: RefObject; } export type Icon = FC;