welcome-ui
Version:
Customizable design system with react, typescript, tailwindcss and ariakit.
15 lines (14 loc) • 374 B
TypeScript
import { ForwardRefProps } from '../../utils';
export interface IconOptions {
size?: 'lg' | 'md' | 'sm' | 'xl' | 'xs' | 'xxl';
}
export type IconProps = ForwardRefProps<IconOptions & {
content?: {
block: string;
height?: number;
isFlag?: boolean;
stroked?: boolean;
viewBox?: string;
width?: number;
};
}, 'svg'>;