diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 329270c..493af5c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps extends SVGProps { fontWeight?: string | number; fontFamily?: string; fill?: string; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit' | 'alphabetic' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'central' | 'text-after-edge'; } export const SvgTextLogo = React.forwardRef( @@ -17,7 +17,7 @@ export const SvgTextLogo = React.forwardRef( fontWeight = 'bold', fontFamily = 'system-ui, -apple-system, sans-serif', fill = 'currentColor', - dominantBaseline = 'central', + dominantBaseline = 'middle', viewBox = '0 0 200 60', width = 200, height = 60, @@ -51,4 +51,4 @@ export const SvgTextLogo = React.forwardRef( } ); -SvgTextLogo.displayName = 'SvgTextLogo'; +SvgTextLogo.displayName = 'SvgTextLogo'; \ No newline at end of file