1
1
mirror of https://github.com/primer/css.git synced 2024-09-20 13:17:29 +03:00
css/modules/primer-marketing-buttons/stories.js
Catherine Bui 43e12e8838 only btn-orange is being added
just realized the old marketing button documentation threw me off. only orange is being added.
2017-11-06 22:40:30 -06:00

22 lines
805 B
JavaScript

import React from 'react'
import { storiesOf } from '@storybook/react'
storiesOf('Marketing buttons', module)
.add('Button colors', () => (
<div className='p-4'>
<button className="btn btn-orange mr-6" type="button">Button button</button>
</div>
))
.add('Outline colors', () => (
<div className='p-4'>
<button className="btn btn-outline-orange mr-6" type="button">Button button</button>
<a className="btn btn-outline-purple mr-6" href="#url" role="button">Link button</a>
<button className="btn btn-outline-green mr-6" type="button">Button button</button>
</div>
))
.add('Transparent button', () => (
<div className="bg-gray-dark p-4 mt-4 mr-6">
<button className="btn btn-transparent mr-6" type="button">Button button</button>
</div>
))