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