import React from 'react'; interface Props { children?: React.ReactNode; onClick: () => void; disable: boolean; color: string; } export const Button: React.FC = ({children, onClick, disable, color}) => { return( ) }