From 53a6bc114353debe06d5342a2cd47be145b8c7cf Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 10:28:32 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 0b719f4..a920c37 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,14 +8,18 @@ interface SvgTextLogoProps { type DominantBaseline = | 'auto' - | 'baseline' - | 'before-edge' - | 'after-edge' - | 'central' - | 'middle' + | 'inherit' + | 'alphabetic' + | 'hanging' + | 'ideographic' | 'mathematical' + | 'text-before-edge' + | 'middle' + | 'central' | 'text-after-edge' - | 'text-before-edge'; + | 'use-script' + | 'no-change' + | 'reset-size'; export const SvgTextLogo: React.FC = ({ text, -- 2.49.1