insomnia/packages/insomnia-components/components/svg-icon.stories.js
Mike Ellan 4f39486eb7
Storybook Sidebar Provisioning & WIP Implementation (#2125)
* Migrating dimensions, latest SVG, stubbing sidebar

* Revert "Migrating dimensions, latest SVG, stubbing sidebar"

This reverts commit 5014a68f52.

* Revert "Revert "Migrating dimensions, latest SVG, stubbing sidebar""

This reverts commit 28c130c8d8.

* Post merge bootstrap & build

* Linting

* Updating Story Heirarchy

* Migrating legacy tooltip component

* Reverting spacing integration into core dimensions

* Cleaning up comments, tweaking CSS var usage

* Removing static height

* Cleaning up static CSS values, re-organizing sliding panel, fixing search icon

* adding flow def for autobind in new SB instance

* PR feedback, removing new vars/updating markup

* Fixing lint > flow error on type
2020-05-14 14:00:29 -04:00

55 lines
1.5 KiB
JavaScript

// @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: '1st Party | SvgIcon',
decorators: [withKnobs],
};
const Wrapper = styled.div`
font-size: 1.5rem;
& > * {
margin-right: 0.5rem;
}
`;
Wrapper.displayName = '...';
export const _default = () => <SvgIcon icon={IconEnum.arrowRight} />;
export const labelled = () => <SvgIcon icon={IconEnum.warning} label={text('Label', '3 Warnings')} />;
export const reference = () => (
<React.Fragment>
<Table striped outlined>
<TableHead>
<TableRow>
<TableHeader>Icon</TableHeader>
<TableHeader>1rem</TableHeader>
<TableHeader>1.5rem</TableHeader>
</TableRow>
</TableHead>
<TableBody>
{Object.keys(SvgIcon.icons)
.sort()
.map(name => (
<TableRow>
<TableData>
<code>{name}</code>
</TableData>
<TableData style={{ fontSize: '1rem' }}>
<SvgIcon icon={name} />
</TableData>
<TableData style={{ fontSize: '1.5rem' }}>
<SvgIcon icon={name} />
</TableData>
</TableRow>
))}
</TableBody>
</Table>
</React.Fragment>
);