Files
109e43ae-ddb2-42e3-a592-ad7…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

30 lines
669 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
textClassName?: string;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ text, className = '', textClassName = '' }) => {
return (
<svg
viewBox="0 0 400 100"
className={`w-full h-auto ${className}`}
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
>
<text
x="50%"
y="50%"
dominantBaseline="middle"
textAnchor="middle"
className={`text-4xl font-bold fill-current ${textClassName}`}
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;