Files
react-test/docs/data/material/components/chips/DeletableChips.tsx

16 lines
415 B
TypeScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import Chip from '@mui/material/Chip';
import Stack from '@mui/material/Stack';
export default function DeletableChips() {
const handleDelete = () => {
console.info('You clicked the delete icon.');
};
return (
<Stack direction="row" spacing={1}>
<Chip label="Deletable" onDelete={handleDelete} />
<Chip label="Deletable" variant="outlined" onDelete={handleDelete} />
</Stack>
);
}