@amaui/ui-react
Version:
UI for React
14 lines (13 loc) • 437 B
TypeScript
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;