import Box from '@mui/joy/Box'; import Checkbox from '@mui/joy/Checkbox'; import List from '@mui/joy/List'; import ListItem from '@mui/joy/ListItem'; import Typography from '@mui/joy/Typography'; export default function IconlessCheckbox() { return ( Pizza toppings
{[ 'Pepperoni', 'Cheese', 'Olives', 'Tomatoes', 'Fried Bacon', 'Spinach', ].map((item, index) => ( ))}
); }