UNPKG

lucid-ui

Version:

A UI component library from Xandr.

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