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