Delete Icons.stories.jsx

This commit is contained in:
Cassie Tarakajian 2020-06-18 15:43:00 -04:00 committed by GitHub
parent ca4502dae9
commit 49526e080b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +0,0 @@
import React from 'react';
import { select } from '@storybook/addon-knobs';
import * as 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 />
);
};