@ws-serenity/react-button
v2.3.1
Published
Simple button with icon. Has zero styling
Downloads
29
Readme
@ws-serenity/react-button
About
Содержит компонент кнопки с иконкой и подписью
type BaseButtonProps = {
// текст внутри компонента
label?: string;
// Inline Svg react component
icon?: React.FunctionComponent<React.SVGAttributes<SVGElement>>;
}
<Button
type={'button'}
label={'Hello world'}
/>
export type ButtonProps = BaseButtonProps
& Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'children'>