From 10e618d6e5ef62ed91a52563735a20be285d304f Mon Sep 17 00:00:00 2001 From: Tiago Porto Date: Mon, 11 Nov 2024 10:08:22 -0300 Subject: [PATCH] docs: fix relative link path --- src/SvgToInline.stories.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SvgToInline.stories.ts b/src/SvgToInline.stories.ts index 7fc57e0..5e69da3 100644 --- a/src/SvgToInline.stories.ts +++ b/src/SvgToInline.stories.ts @@ -46,5 +46,5 @@ const Template: Story = ({ path, className }: ArgTypes) => html` export const Regular = Template.bind({}) Regular.args = { - path: '/SVG_Logo.svg', + path: './SVG_Logo.svg', }