@appbuckets/react-ui
Version:
Just Another React UI Framework
9 lines (8 loc) • 341 B
TypeScript
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;