UNPKG

sc-react-ions

Version:

An open source set of React components that implement Ambassador's Design and UX patterns.

9 lines (6 loc) 266 B
import React from 'react' import Chip from 'react-ions/lib/components/Chip' const ExampleChipCallback = () => ( <Chip text='Upgrade now' size='smaller' color='neutral-1' clickCallback={() => alert('you clicked the chip')} /> ) export default ExampleChipCallback