Skip to content
brandonk1234 edited this page Feb 20, 2017 · 1 revision

Chip

A chip displays small pieces of text, in a "chip" shape. This component could be also used as a label.

Props

The only prop needed for this component are listed and explained below:

  • text - This prop must be a string. This is the text that will be displayed on the chip component.

Example

<Chip
	text={"Courses"}
/>,
<Chip
	text={"Components"}
/>,
<Chip
	text={"Content"}
/>

Related