lucid-ui
Version:
A UI component library from Xandr.
18 lines • 558 B
JavaScript
import React from 'react';
import { BellIcon } from './BellIcon';
export default {
title: 'Icons/Icons/BellIcon',
component: BellIcon,
parameters: {
docs: {
description: {
component: BellIcon.peek.description,
},
},
},
};
//👇 We create a “template” of how args map to rendering
const Template = (args) => React.createElement(BellIcon, { ...args });
//👇 Each story then reuses that template
export const Primary = Template.bind({});
//# sourceMappingURL=BellIcon.stories.js.map