UNPKG

@edancerys/ts-react-components-lib

Version:
16 lines (15 loc) 390 B
import React from 'react'; export interface ActionIconProps { icon?: string; fill?: string; hoverFill?: string; size?: number; backgroundColor?: string; padding?: string; margin?: string; border?: string; borderRadius?: string; display?: boolean; onClick?: () => void; } export declare const ActionIcon: React.FC<ActionIconProps>;