import * as React from 'react' import { withTheme } from 'utils' import { storiesOf } from '@storybook/react' import Box from 'Box' import Tag from '.' const stories = storiesOf('Tag', module) stories.add('default', withTheme(() => { return (
Normal Gray Primary Success
) }) )