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