From 7a87f8b40d82b835b46ff8c7727f5193845933f0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:42:04 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 696ca9e..60425b3 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,12 +1,13 @@ import React from 'react'; +import type { SVGProps } from 'react'; -interface SvgTextLogoProps { +interface SvgTextLogoProps extends SVGProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; - dominantBaseline?: SVGTextElementAttributes['dominantBaseline']; + dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit'; } const SvgTextLogo: React.FC = ({ -- 2.49.1