Files
d129fe33-ca2d-4299-8dfd-cb7…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

40 lines
784 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
fontWeight?: string;
letterSpacing?: string;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
fontSize = 48,
fontWeight = '700',
letterSpacing = '-0.02em',
}) => {
return (
<svg
viewBox={`0 0 ${text.length * fontSize * 0.6} ${fontSize * 1.2}`}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="0"
y={fontSize}
fontSize={fontSize}
fontWeight={fontWeight}
letterSpacing={letterSpacing}
fill="currentColor"
dominantBaseline="alphabetic"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;