UNPKG

@appbuckets/react-ui

Version:
9 lines (8 loc) 341 B
import { CreatableFunctionComponent } from '@appbuckets/react-ui-core'; import { library } from '@fortawesome/fontawesome-svg-core'; import { IconProps } from './Icon.types'; declare type IconComponent = CreatableFunctionComponent<IconProps> & { addToLibrary: typeof library.add; }; declare const Icon: IconComponent; export default Icon;