import React from "react" import { Button as ChakraButton } from "@chakra-ui/core" import { useContext } from "react" import MyThemeContext from "../../themeContext" import { IconType } from "react-icons/lib/cjs" interface ButtonProps { children: string | string[] onClick?: () => void size?: "xs" | "sm" | "lg" | "md" icon?: IconType outlined?: boolean disabled?: boolean } const Button: React.FC = ({ children, onClick, icon, size, disabled, outlined = false, }) => { const { themeColor } = useContext(MyThemeContext) return ( {children} ) } export default Button