import type { Meta, StoryObj } from "@storybook/react" import { Strong } from "./Strong" const meta = { title: "base/communication/Strong", component: Strong, tags: ["autodocs"], argTypes: { children: { control: "text", description: "The strong text content", }, }, parameters: { layout: "centered", }, args: { children: "This text is strong", }, } satisfies Meta export default meta type Story = StoryObj /** * Default strong text. */ export const Default: Story = {} /** * Strong text in context. */ export const InContext: Story = { render: () => (

This is a paragraph with strong text to show how it looks in context.

Another paragraph with different strong content to demonstrate usage.

), } /** * Strong text in a sentence. */ export const InSentence: Story = { args: { children: "important", }, render: args => (

This is a sentence where the word is made strong to show its significance.

), } /** * Multiple strong words. */ export const MultipleStrong: Story = { render: () => (

This paragraph contains multiple strong words to demonstrate how the component works in context. The first strong word and{" "} second strong word show different styling options.

), } /** * Strong text with other elements. */ export const WithOtherElements: Story = { render: () => (

This paragraph has strong text mixed with emphasized text.

Here we have strong text and code text together.

), }