import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import { styled } from '@mui/material/styles'; import Chip from '@mui/material/Chip'; import Paper from '@mui/material/Paper'; import TagFacesIcon from '@mui/icons-material/TagFaces'; const ListItem = styled('li')(({ theme }) => ({ margin: theme.spacing(0.5), })); export default function ChipArray() { const [chipData, setChipData] = React.useState([ { key: 0, label: 'Angular' }, { key: 1, label: 'jQuery' }, { key: 2, label: 'Polymer' }, { key: 3, label: 'React' }, { key: 4, label: 'Vue.js' }, ]); const handleDelete = (chipToDelete) => () => { setChipData((chips) => chips.filter((chip) => chip.key !== chipToDelete.key)); }; return ( <> Chip Array {chipData.map((data) => { let icon; if (data.label === 'React') { icon = ; } return ( ); })} ); }