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