diff --git a/src/assets/svgs/interfaces.ts b/src/assets/svgs/interfaces.ts index 0cbd14f..b53eeb4 100644 --- a/src/assets/svgs/interfaces.ts +++ b/src/assets/svgs/interfaces.ts @@ -1,6 +1,8 @@ -export interface SVGProps { - color: string - height: string - width: string - opacity?: number +import React from 'react'; + +export interface SVGProps extends React.SVGProps { + color?: string; + height?: string; + opacity?: number; + width?: string; }