From 62ba6ac72b657b20fe7400975f0f89eda668e4e0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:34:28 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index fbf6f12..98075c2 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,30 +3,41 @@ import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; + fontSize?: number; + fontWeight?: number | string; + letterSpacing?: number; + fill?: string; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; + dominantBaseline?: 'auto' | 'baseline' | 'hanging' | 'middle' | 'central'; } const SvgTextLogo: React.FC = ({ text, className = '', + fontSize = 48, + fontWeight = 700, + letterSpacing = 0, + fill = 'currentColor', textAnchor = 'middle', - dominantBaseline = 'middle' + dominantBaseline = 'middle', }) => { return ( {text}