Files
04467e8d-ad3c-4095-b5af-490…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

34 lines
640 B
TypeScript

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