UNPKG

lucid-ui

Version:

A UI component library from Xandr.

11 lines 410 B
import React from 'react'; import { FileIcon } from './FileIcon'; export default { title: 'Icons/Icons/FileIcon', component: FileIcon, }; //👇 We create a “template” of how args map to rendering const Template = (args) => React.createElement(FileIcon, { ...args }); //👇 Each story then reuses that template export const Primary = Template.bind({}); //# sourceMappingURL=FileIcon.stories.js.map