UNPKG

lucid-ui

Version:

A UI component library from Xandr.

17 lines 508 B
import React from 'react'; import { RolloverIcon } from './RolloverIcon'; export default { title: 'Icons/Icons/RolloverIcon', component: RolloverIcon, argTypes: { size: { defaultValue: 16, }, viewBox: { defaultValue: '0 0 16 16', }, }, }; //👇 We create a “primary” story of how args map to rendering export const Primary = (args) => React.createElement(RolloverIcon, { ...args }); //# sourceMappingURL=RolloverIcon.stories.js.map