Create a compact actionable element that can be used to represent an input, attribute, or action. A chip can be used to represent filters, tags, emails, or other inline elements.
npm install --save @react-md/chip
123456import React, { ReactElement } from "react";
import { Chip } from "@react-md/chip";
export default function Example(): ReactElement {
return <Chip id="example-chip-1">I'm a chip!</Chip>;
}