Files
318fcd4a-0eb6-4a02-9606-e23…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

31 lines
606 B
TypeScript

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