diff --git a/services/frontend/src/components/Modal/volume/General.tsx b/services/frontend/src/components/Modal/volume/General.tsx index 88b8f14..d2985ae 100644 --- a/services/frontend/src/components/Modal/volume/General.tsx +++ b/services/frontend/src/components/Modal/volume/General.tsx @@ -1,11 +1,19 @@ +import { styled } from "@mui/joy"; + import TextField from "../../global/FormElements/TextField"; +const Root = styled("div")` + display: flex; + flex-direction: column; + row-gap: ${({ theme }) => theme.spacing(1)}; +`; + const General = () => { return ( - <> - - - + + + + ); };