import React from 'react' import { type Meta, type StoryObj } from '@storybook/react' import { VisuallyHidden } from '../index' const meta = { title: 'Components/VisuallyHidden', component: VisuallyHidden, args: { children: '👋 Hello!', }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, render: (args) => (
There is visually hidden text between the two brackets (click "Show code" to see more): []
), }