Files
d1fa9b14-7c6d-404d-acf8-e44…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

40 lines
801 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
fontWeight?: 'normal' | 'bold' | 'semibold';
letterSpacing?: number;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
fontSize = 48,
fontWeight = 'bold',
letterSpacing = 2,
}) => {
return (
<svg
viewBox="0 0 400 100"
className={`w-full h-auto ${className}`}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline="middle"
fontSize={fontSize}
fontWeight={fontWeight}
letterSpacing={letterSpacing}
className="fill-current"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;