import React, { FC, MouseEvent } from "react"; interface IProps { icon?: string; size?: string; shape?: string; color?: string; text?: string; onClick?: (e: MouseEvent) => void; } export const Button: FC = ({ size = "small", shape = "", color, onClick, children }) => { return ( ); };