Files
70bfa309-8f9d-44ff-9d47-e37…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

41 lines
912 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
fontFamily?: string;
fill?: string;
dominantBaseline?: 'auto' | 'hanging' | 'middle' | 'central' | 'text-after-edge' | 'ideographic' | 'mathematical';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className,
fontSize = 24,
fontFamily = 'Arial, sans-serif',
fill = 'currentColor',
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="50%"
y="50%"
fontSize={fontSize}
fontFamily={fontFamily}
fill={fill}
textAnchor="middle"
dominantBaseline={dominantBaseline}
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;