@keen.io/ui-core
Version:
Keen visual components library
14 lines (13 loc) • 484 B
TypeScript
import { ButtonAction } from './types';
declare type ButtonProps = {
isDisabled?: boolean;
borderRadius?: string;
background?: string;
backgroundHover?: string;
};
export declare const StyledButton: import("styled-components").StyledComponent<"button", any, ButtonProps, never>;
declare type IconProps = {
action: ButtonAction;
};
export declare const StyledIcon: import("styled-components").StyledComponent<"span", any, IconProps, never>;
export {};