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 @react-md/chipCreate 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.
``sh`
npm install --save @react-md/chip
You should check out the
full documentation for live examples
and more customization information, but an example usage is shown below.
`tsx
import type { ReactElement } from "react";
import { Chip } from "@react-md/chip";
export default function Example(): ReactElement {
return
}
``