UNPKG

@keen.io/ui-core

Version:

Keen visual components library

11 lines (10 loc) 311 B
import React, { FC } from 'react'; import { ButtonVariant } from '../../types'; declare type Props = { icon: JSX.Element; isDisabled?: boolean; onClick?: (e: React.SyntheticEvent) => void; variant?: ButtonVariant; }; declare const CircleButton: FC<Props>; export default CircleButton;