sc-react-ions
Version:
An open source set of React components that implement Ambassador's Design and UX patterns.
17 lines (14 loc) • 418 B
JavaScript
import React from 'react'
import Badge from 'react-ions/lib/components/Badge'
const ExampleBadges = () => (
<div>
<Badge text='1' theme='fog' />
<Badge text='2' theme='danger' />
<Badge text='3' theme='warning' />
<Badge text='4' theme='sky' />
<Badge text='5' theme='navy' />
<Badge text='6' theme='border' />
<Badge text='7' theme='success' />
</div>
)
export default ExampleBadges