import Checkbox from '@mui/material/Checkbox'; import FormControlLabel from '@mui/material/FormControlLabel'; import FormLabel from '@mui/material/FormLabel'; import Grid from '@mui/material/Grid'; import OutlinedInput from '@mui/material/OutlinedInput'; import { styled } from '@mui/material/styles'; const FormGrid = styled(Grid)(() => ({ display: 'flex', flexDirection: 'column', })); export default function AddressForm() { return ( First name Last name Address line 1 Address line 2 City State Zip / Postal code Country } label="Use this address for payment details" /> ); }