import { Meta } from '@storybook/react-webpack5'; import InlineAlert, { InlineAlertProps } from './InlineAlert'; import { lorem10, lorem40 } from '../test-utils'; import Link from '../link'; /** * > **DEPRECATED** Use [InlinePrompt](?path=/docs/prompts-inlineprompt--docs) or [Field](?path=/docs/forms-field--docs) instead. */ export default { component: InlineAlert, title: 'Prompts/InlineAlert', tags: ['deprecated'], } as Meta; export const Basic = () => { return ( <>

Avoid using InlineAlert directly (unless for some custom use cases), for form control validation, info messaging please use Field component

{''}

You have 20.22 EUR available in My savings You have 20.22 EUR available in My savings {lorem10} {lorem10} {lorem40} ); };