import * as React from 'react'; import IconCollections from './IconCollections'; import IconCollectionsAdd from './IconCollectionsAdd'; import IconCollectionsBolt from './IconCollectionsBolt'; import IconCollectionsFilled from './IconCollectionsFilled'; import IconCollectionsStar from './IconCollectionsStar'; import IconCollectionsStarFilled from './IconCollectionsStarFilled'; const section = { display: 'flex', }; const icon = { display: 'flex', 'flex-direction': 'column', 'align-items': 'center', 'margin-right': '20px', }; const Icon = ({ children, name }: { children: React.ReactChild; name: string }) => { return (
{children} {name}
); }; export const allIcons = () => (
); export default { title: 'Icons|Collections', };