41 lines
816 B
TypeScript
41 lines
816 B
TypeScript
import React from 'react';
|
|
|
|
interface SvgTextLogoProps {
|
|
text: string;
|
|
fontSize?: number;
|
|
fontWeight?: string | number;
|
|
fontFamily?: string;
|
|
fill?: string;
|
|
className?: string;
|
|
}
|
|
|
|
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
|
text,
|
|
fontSize = 32,
|
|
fontWeight = 'bold',
|
|
fontFamily = 'Arial, sans-serif',
|
|
fill = '#000000',
|
|
className = '',
|
|
}) => {
|
|
return (
|
|
<svg
|
|
viewBox={`0 0 ${text.length * fontSize * 0.6} ${fontSize * 1.5}`}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<text
|
|
x="0"
|
|
y={fontSize}
|
|
fontSize={fontSize}
|
|
fontWeight={fontWeight}
|
|
fontFamily={fontFamily}
|
|
fill={fill}
|
|
dominantBaseline="middle"
|
|
>
|
|
{text}
|
|
</text>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SvgTextLogo; |