diff --git a/src/app/page.tsx b/src/app/page.tsx index dd1656a..41d0433 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -331,4 +331,4 @@ export default function Page() { ); -} +} \ No newline at end of file diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 12ae465..76d2910 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { fontFamily?: string; fontWeight?: number | string; fill?: string; - dominantBaseline?: 'middle' | 'central' | 'hanging' | 'auto' | 'text-bottom' | 'text-top'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ @@ -42,4 +42,4 @@ const SvgTextLogo: React.FC = ({ ); }; -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file