diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 7fe0605..465eb5e 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps { fontSize?: number; fontWeight?: number | string; letterSpacing?: number; - dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'after-edge' | 'central' | 'ideographic' | 'hanging' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; } const SvgTextLogo: React.FC = ({ @@ -29,7 +29,7 @@ const SvgTextLogo: React.FC = ({ fontSize={fontSize} fontWeight={fontWeight} letterSpacing={letterSpacing} - dominantBaseline={dominantBaseline === 'text-before-edge' ? 'before-edge' : dominantBaseline} + dominantBaseline={dominantBaseline === 'text-before-edge' ? 'text-before-edge' : dominantBaseline} fill="currentColor" > {text}