diff --git a/src/index.js b/src/index.js index 14c5fa5..9056991 100755 --- a/src/index.js +++ b/src/index.js @@ -7,6 +7,7 @@ import FacebookStyle from './stylized/FacebookStyle' import InstagramStyle from './stylized/InstagramStyle' import CodeStyle from './stylized/CodeStyle' import ListStyle from './stylized/ListStyle' +import BulletListStyle from './stylized/BulletListStyle' // Custom import Rect from './custom/Rect' import Circle from './custom/Circle' @@ -71,6 +72,9 @@ class ContentLoader extends React.Component { case 'list': return + case 'bullet-list': + return + default: case 'facebook': return diff --git a/src/stylized/BulletListStyle.js b/src/stylized/BulletListStyle.js new file mode 100644 index 0000000..682b11c --- /dev/null +++ b/src/stylized/BulletListStyle.js @@ -0,0 +1,17 @@ +//@flow +import * as React from 'react' +import Wrap from '../Wrap' +import type { WrapProps } from '../Wrap'; + +const BulletListStyle = (props: WrapProps): React.Element<*> => { + return ( + + + + + + + ) +} + +export default BulletListStyle diff --git a/stories/index.js b/stories/index.js index d7eb931..ae8b5e3 100644 --- a/stories/index.js +++ b/stories/index.js @@ -29,4 +29,5 @@ storiesOf('ContentLoader', module) .add('instagram style', () => ) .add('code style', () => ) .add('list style', () => ) + .add('bullet list style', () => ) .add('custom style', () => )