UNPKG

@easykit/design

Version:

Easy kit design components

9 lines (8 loc) 303 B
import { FC, HTMLAttributes, PropsWithChildren } from 'react'; export type ActionProps = PropsWithChildren<HTMLAttributes<HTMLButtonElement>> & { theme?: 'dark' | 'light'; active?: boolean; disabled?: boolean; elType?: 'button' | 'span'; }; export declare const Action: FC<ActionProps>;