import React from 'react'; import { TextBadge } from '../src/lib/components/textbadge/TextBadge.component'; import { Wrapper, Title } from './common'; import { IconHelp } from '../src/lib/components/iconhelper/IconHelper'; import { Text } from '../src/lib/components/text/Text.component'; export default { title: 'Components/TextBadge', component: TextBadge, }; export const Playground = { args: { text: 'Test me', }, }; export const Default = { render: ({}) => { return ( Text Badges This is a badge with a tooltip This is a tooltip} title="Info" /> } /> ); }, };