48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
|
|
interface SvgTextLogoProps {
|
|
text: string;
|
|
className?: string;
|
|
fontSize?: number;
|
|
fontFamily?: string;
|
|
fontWeight?: number | string;
|
|
letterSpacing?: number;
|
|
textAnchor?: 'start' | 'middle' | 'end';
|
|
dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'central' | 'hanging' | 'ideographic' | 'mathematical';
|
|
}
|
|
|
|
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
|
text,
|
|
className = '',
|
|
fontSize = 24,
|
|
fontFamily = 'Arial, sans-serif',
|
|
fontWeight = 700,
|
|
letterSpacing = 0,
|
|
textAnchor = 'middle',
|
|
dominantBaseline = 'middle',
|
|
}) => {
|
|
return (
|
|
<svg
|
|
viewBox={`0 0 ${text.length * fontSize * 0.6} ${fontSize * 1.5}`}
|
|
className={className}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<text
|
|
x={`${text.length * fontSize * 0.3}`}
|
|
y={`${fontSize * 0.75}`}
|
|
fontSize={fontSize}
|
|
fontFamily={fontFamily}
|
|
fontWeight={fontWeight}
|
|
letterSpacing={letterSpacing}
|
|
textAnchor={textAnchor}
|
|
dominantBaseline={dominantBaseline}
|
|
fill="currentColor"
|
|
>
|
|
{text}
|
|
</text>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SvgTextLogo;
|