2020-04-19 18:30:32 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { select } from '@storybook/addon-knobs';
|
|
|
|
|
2020-05-11 20:28:18 +00:00
|
|
|
import Icons from './Icons';
|
2020-04-19 18:30:32 +00:00
|
|
|
|
|
|
|
export default {
|
2020-05-11 20:28:18 +00:00
|
|
|
title: 'Common/Icons',
|
|
|
|
component: Icons
|
2020-04-19 18:30:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const AllIcons = () => {
|
2020-05-11 20:28:18 +00:00
|
|
|
const names = Object.keys(Icons);
|
2020-04-19 18:30:32 +00:00
|
|
|
|
2020-05-11 20:28:18 +00:00
|
|
|
const SelectedIcon = Icons[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
|
|
|
);
|
|
|
|
};
|