2020-04-19 18:30:32 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { select } from '@storybook/addon-knobs';
|
|
|
|
|
|
|
|
import Icon from './Icon';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Common/Icon',
|
|
|
|
component: Icon
|
|
|
|
};
|
|
|
|
|
|
|
|
export const AllIcons = () => {
|
2020-05-09 04:52:48 +00:00
|
|
|
const names = Object.keys(Icon);
|
2020-04-19 18:30:32 +00:00
|
|
|
|
2020-05-09 04:52:48 +00:00
|
|
|
const SelectedIcon = Icon[select('name', names, names[0])];
|
2020-04-19 18:30:32 +00:00
|
|
|
return (
|
2020-05-09 04:52:48 +00:00
|
|
|
<SelectedIcon />
|
2020-04-19 18:30:32 +00:00
|
|
|
);
|
|
|
|
};
|