import type { Meta, StoryObj } from '@storybook/nextjs' import SVGRenderer from '.' const SAMPLE_SVG = ` SVG Preview Click to open high-resolution preview Inline SVG asset `.trim() const meta = { title: 'Base/Data Display/SVGRenderer', component: SVGRenderer, parameters: { docs: { description: { component: 'Renders sanitized SVG markup with zoom-to-preview capability.', }, source: { language: 'tsx', code: ` ... \`} /> `.trim(), }, }, }, tags: ['autodocs'], args: { content: SAMPLE_SVG, }, } satisfies Meta export default meta type Story = StoryObj export const Default: Story = {}