UNPKG

lucid-ui

Version:

A UI component library from Xandr.

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