UNPKG

el-react-ui

Version:

Energylink React UI components

9 lines (8 loc) 284 B
import { FC } from 'react'; import { SvgProps } from '@/components/base/types'; export interface WithIconProps extends SvgProps { strokeWidth?: number; viewBox?: string; color?: string; } export declare type WithIcon = (Component: FC<WithIconProps>) => FC<WithIconProps>;