@keen.io/ui-core
Version:
Keen visual components library
14 lines (13 loc) • 416 B
TypeScript
import React, { FC } from 'react';
import { ButtonAction } from './types';
declare type Props = {
action: ButtonAction;
isDisabled?: boolean;
borderRadius?: string;
background?: string;
backgroundHover?: string;
className?: string;
onClick?: (e: React.SyntheticEvent, type: ButtonAction) => void;
};
export declare const ActionButton: FC<Props>;
export default ActionButton;