UNPKG

react-conventions

Version:

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

18 lines (15 loc) 485 B
import React from 'react' import Badge from 'react-conventions/lib/Badge' const ExampleBadges = () => ( <div> <Badge text='1' theme='fog' /> <Badge icon='icon-link-1' theme='success' /> <Badge text='3' theme='danger' /> <Badge text='4' theme='warning' /> <Badge text='5' theme='sky' /> <Badge text='6' theme='navy' /> <Badge text='7' theme='border' /> <Badge icon='icon-link-1' text='Word' theme='success' /> </div> ) export default ExampleBadges