// @flow
import * as React from 'react';
import { text, withKnobs } from '@storybook/addon-knobs';
import SvgIcon, { IconEnum } from './svg-icon';
import { Table, TableBody, TableData, TableHead, TableHeader, TableRow } from './table';
import styled from 'styled-components';
export default {
title: 'Iconography | Core Icons',
decorators: [withKnobs],
};
const Wrapper = styled.div`
font-size: 1.5rem;
& > * {
margin-right: 0.5rem;
}
`;
Wrapper.displayName = '...';
export const _default = () => ;
export const labelled = () => (
);
export const reference = () => (
Icon
1rem
1.5rem
{Object.keys(SvgIcon.icons)
.sort()
.map(name => (
{name}
))}
);