9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
type ContainedButtonBackground = 'blue' | 'normal' | 'red';
|
|
|
|
type ContainedButtonOptionalProps = {
|
|
background?: ContainedButtonBackground;
|
|
};
|
|
|
|
type ContainedButtonProps = import('@mui/material').ButtonProps &
|
|
ContainedButtonOptionalProps;
|