Files
48f7d9dd-d8fe-4384-8781-37f…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

35 lines
633 B
TypeScript

import React from "react";
interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = "", fontSize = 48,
}) => {
return (
<svg
viewBox={`0 0 ${text.length * 40} 80`}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="50%"
y="50%"
dominantBaseline="middle"
textAnchor="middle"
fontSize={fontSize}
fontWeight="bold"
fill="currentColor"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;