@geist-ui/react
Version:
Modern and minimalist React UI library.
11 lines (10 loc) • 355 B
TypeScript
import React from 'react';
interface Props {
isRight?: boolean;
isSingle?: boolean;
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type ButtonIconProps = Props & NativeAttrs;
declare const ButtonIcon: React.FC<React.PropsWithChildren<ButtonIconProps>>;
export default ButtonIcon;