Files
c60ae19c-d23d-4d4c-98da-d65…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

42 lines
815 B
TypeScript

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