UNPKG

xtreme-ui

Version:

Collection of reusable components that can be used in web projects

26 lines 622 B
import { CSSProperties } from 'react'; export type IIconProps = { className?: string; style?: CSSProperties; code: string; type?: keyof typeof EIconType; size?: number | keyof typeof EIconSize; onClick?: () => void; }; export declare enum EIconType { thin = "thin", light = "light", regular = "regular", solid = "solid", duotone = "duotone", sharpSolid = "sharpSolid", sharpRegular = "sharpRegular", sharpLight = "sharpLight", brand = "brand" } export declare enum EIconSize { mini = 12, default = 18, large = 24 } //# sourceMappingURL=types.d.ts.map