import { Meta, StoryObj } from "@storybook/react"; import { Text } from "../Text"; import { Strong } from "."; import { ColorArgTypes, MarginArgTypes, RenderPropsArgTypes, } from "@sb/helpers"; export default { title: "Typography/Strong", component: Strong, argTypes: { ...RenderPropsArgTypes, ...MarginArgTypes, ...ColorArgTypes, }, } as Meta; type Story = StoryObj; export const Primary: Story = { render: (args) => ( The most important step a man can take; it's not the first one, is it?{" "} {args.children} ), args: { children: "It's the next one.", }, };