Files
f589a59b-4574-499f-866b-b47…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

44 lines
920 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fill?: string;
fontSize?: number;
fontFamily?: string;
fontWeight?: number | string;
letterSpacing?: number;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
fill = 'currentColor',
fontSize = 24,
fontFamily = 'system-ui, -apple-system, sans-serif',
fontWeight = 700,
letterSpacing = 0,
}) => {
return (
<svg
viewBox={`0 0 ${text.length * fontSize * 0.6} ${fontSize * 1.5}`}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="0"
y={fontSize}
fill={fill}
fontSize={fontSize}
fontFamily={fontFamily}
fontWeight={fontWeight}
letterSpacing={letterSpacing}
dominantBaseline="auto"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;