UNPKG

lucid-ui

Version:

A UI component library from Xandr.

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