Files
29027f1b-4fc3-4868-8acc-9fc…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

33 lines
627 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
}
export default function SvgTextLogo({
text,
className = '',
fontSize = 24,
}: SvgTextLogoProps) {
return (
<svg
viewBox={`0 0 ${text.length * fontSize} ${fontSize * 1.5}`}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline="central"
fontSize={fontSize}
fontWeight="bold"
fill="currentColor"
>
{text}
</text>
</svg>
);
}