1
1
mirror of https://github.com/primer/css.git synced 2024-11-28 13:12:16 +03:00
css/.storybook/Octicon.js

28 lines
659 B
JavaScript
Raw Normal View History

2017-09-09 03:25:21 +03:00
import React from 'react'
import {storiesOf} from '@storybook/react'
import octicons from 'octicons'
2017-09-12 23:09:56 +03:00
export const Octicon = (props) => {
2017-09-09 03:25:21 +03:00
const {name} = props
if (name in octicons) {
const svg = octicons[name].toSVG(props)
return <span dangerouslySetInnerHTML={ {__html: svg } } />
2017-09-09 03:25:21 +03:00
} else {
throw new Error(`No such octicon: "${name}"!`)
}
}
2017-09-12 20:53:29 +03:00
const story = storiesOf('Octicons', module)
2017-09-09 03:25:21 +03:00
Object.keys(octicons).forEach(name => {
2017-10-24 21:05:55 +03:00
story.add(name, () => {
return (
2017-10-24 21:05:55 +03:00
<div>
<Octicon name={name} height="64" />
<Octicon name={name} height="32" />
<Octicon name={name} height="16" />
</div>
)
})
2017-09-09 03:25:21 +03:00
})