UNPKG

lucid-ui

Version:

A UI component library from Xandr.

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