Files
c3d8e92a-3810-43ca-a041-b7e…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

37 lines
681 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fillColor?: string;
fontSize?: number;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
fillColor = '#000000',
fontSize = 32,
}) => {
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}
fontSize={fontSize}
fill={fillColor}
fontWeight="bold"
dominantBaseline="hanging"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;