import React from 'react'; import { Meta, Story } from '@storybook/react'; import Underline, { IUnderlineProps } from './Underline'; export default { title: 'Controls/Underline', component: Underline, parameters: { docs: { description: { component: Underline.peek.description, }, }, }, } as Meta; /* With Defaults */ export const WithDefaults: Story = (args) => { return foo bar baz; }; /* With Regex Match */ export const WithRegexMatch: Story = (args) => { return ( foo bar baz ); }; /* With String Match */ export const WithStringMatch: Story = (args) => { return ( foo bar baz ); };