Files
ccf170c7-359b-4adb-9b7a-ce6…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

39 lines
720 B
TypeScript

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