UNPKG

@onesy/ui-react

Version:
13 lines (12 loc) 413 B
import React from 'react'; import { IBaseElement, IPropsAny } from '../types'; export declare type ICardButton = IBaseElement & { focus?: boolean; selected?: boolean; href?: boolean; onFocus?: (event: React.FocusEvent<any>) => any; onBlur?: (event: React.FocusEvent<any>) => any; InteractionProps?: IPropsAny; }; declare const CardButton: React.FC<ICardButton>; export default CardButton;