import { InputLabel as InputLabelRaw, ListItem as ListItemRaw, Paper as PaperRaw, TextField as TextFieldRaw, Typography } from '@mui/material'; import { keyframes, styled } from '@mui/material/styles'; import { ReactNode } from 'react'; export const Paper = styled(PaperRaw)` margin-top: 5px; margin-bottom: 30px; border: 1px solid rgba(0, 0, 0, 0.12); border-color: ${({ theme }) => theme.palette.divider}; background: ${({ theme }) => theme.palette.background.paper}; color: ${({ theme }) => theme.palette.text.primary}; `; const animateMoveFromRight = keyframes` from { transform: translate3d(40px, 0, 0); opacity: 0; } to { transform:translate3d(0px, 0, 0); opacity: 1; } `; export const SectionTitle = styled((props: { children?: ReactNode } & React.ComponentProps) => )` padding-left: 0px !important; animation: ${animateMoveFromRight} 0.5s cubic-bezier(0.4, 0, 0.2, 1); `; export const TextField = styled((props: React.ComponentProps) => )` color: ${({ theme }) => theme.palette.text.primary}; input { color: ${({ theme }) => theme.palette.text.primary}; } p, label { color: ${({ theme }) => theme.palette.text.secondary}; } `; export const InputLabel = styled(InputLabelRaw)` color: ${({ theme }) => theme.palette.text.primary}; `; export const ListItemVertical = styled(ListItemRaw)` flex-direction: column; align-items: flex-start; padding-bottom: 10px; & .MuiTextField-root { margin-top: 20px; } `; export const TimePickerContainer = styled('div')` margin-top: 10px; margin-bottom: 10px; display: flex; margin-right: 20px; `; export const Link = styled((props: { children?: ReactNode } & React.HTMLAttributes) => )` cursor: pointer; font-weight: 500px; outline: none; &:hover { text-decoration: underline; } &:focus { text-decoration: underline; } `;