2023-09-13 22:49:52 +00:00
|
|
|
type ContainedButtonBackground = 'blue' | 'normal' | 'red';
|
|
|
|
|
|
|
|
type ContainedButtonOptionalProps = {
|
|
|
|
background?: ContainedButtonBackground;
|
|
|
|
};
|
|
|
|
|
|
|
|
type ContainedButtonProps = import('@mui/material').ButtonProps &
|
|
|
|
ContainedButtonOptionalProps;
|