import { Meta, StoryObj } from '@storybook/react'; import { Highlight } from '.'; export default { args: {}, component: Highlight, title: 'Components/Highlight', } as Meta; export const Default: StoryObj = { args: { children: 'What a good day for hello! Indeed sir!', highlight: 'Hello', }, };