UNPKG

@amaui/ui-react

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