UNPKG

@geneui/components

Version:

The Gene UI components library designed for BI tools

9 lines (8 loc) 317 B
import { FC, PropsWithChildren } from 'react'; interface IInteractiveWidgetIconProps extends PropsWithChildren { appearance?: 'default' | 'compact'; iconColor?: string; iconBackground?: boolean; } declare const InteractiveWidgetIcon: FC<IInteractiveWidgetIconProps>; export default InteractiveWidgetIcon;