docbrown/app/javascript/icons/__stories__/CogIcon.stories.jsx
Nick Taylor c83cad6fb6
Sorting Storybook stories (#8058)
* Added story sorting to Storybook.

* Added design system guidelines.

* Made Base in Storybook tree 2nd in the tree view.

* Now Components are 3rd in the treeview of Storybook.

* Now App Components are 4th in the treeview of Storybook.

* Froze node version to 12.16.0

* Revert "Froze node version to 12.16.0"

This reverts commit 093b119c7d7ca05ecb4e1c0234b24bcf8e7b10a4.
2020-05-27 13:10:16 -04:00

12 lines
203 B
JavaScript

import { h } from 'preact';
import { CogIcon } from '../CogIcon';
export default {
title: '3_Components/Icons',
};
export const Default = () => <CogIcon />;
Default.story = {
name: 'cog icon',
};