UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

8 lines (7 loc) 299 B
import React from 'react'; import { IconProps } from '.'; export type IconComponent = React.FC<IconProps> & { bothubType?: 'Icon'; }; export declare function icon<Component extends React.FC>(component: Component): IconComponent; export declare function isIconComponent(component: any): boolean;