import React from 'react'; import { styled } from '@material-ui/core/styles'; import Button, { ButtonProps } from '@material-ui/core/Button'; import { Omit } from '@material-ui/types'; interface MyButtonProps { color: 'red' | 'blue'; } const MyButton = styled( ({ color, ...other }: MyButtonProps & Omit) => (