import React from "react" import { Button as ChakraButton, ButtonProps as ChakraButtonProps, } 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 width?: string color?: string outlined?: boolean disabled?: boolean loading?: boolean } const Button: React.FC = ({ children, onClick, icon, size, disabled, loading, width, color, outlined = false, ...props }) => { const { themeColor } = useContext(MyThemeContext) return ( {children} ) } export default Button