import type { Meta, StoryObj } from '@storybook/nextjs'
import SVGRenderer from '.'
const SAMPLE_SVG = `
`.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 = {}