p5.js-web-editor/client/common/Icons.stories.jsx
2020-05-11 16:28:18 -04:00

18 lines
344 B
JavaScript

import React from 'react';
import { select } from '@storybook/addon-knobs';
import Icons from './Icons';
export default {
title: 'Common/Icons',
component: Icons
};
export const AllIcons = () => {
const names = Object.keys(Icons);
const SelectedIcon = Icons[select('name', names, names[0])];
return (
<SelectedIcon />
);
};