feat: add trial status badge in appbar

This commit is contained in:
Ali BARIN
2023-04-08 10:10:51 +00:00
parent 94a3b66130
commit d4c542168c
9 changed files with 132 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
import { styled } from '@mui/material/styles';
import MuiChip, { chipClasses } from '@mui/material/Chip';
export const Chip = styled(MuiChip)`
&.${chipClasses.root} {
font-weight: 500;
}
&.${chipClasses.colorWarning} {
background: #fef3c7;
color: #78350f;
}
` as typeof MuiChip;