diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 9d15f93..9baae73 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,6 +1,6 @@ import { SVGProps } from 'react'; -type DominantBaseline = 'auto' | 'baseline' | 'before-edge' | 'hanging' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; +type DominantBaseline = 'auto' | 'before-edge' | 'hanging' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; interface SvgTextLogoProps extends SVGProps { text?: string; @@ -17,7 +17,7 @@ export default function SvgTextLogo({ fontWeight = 'bold', fill = 'currentColor', fontFamily = 'system-ui, -apple-system, sans-serif', - dominantBaseline = 'middle', + dominantBaseline = 'central', ...props }: SvgTextLogoProps) { return (