Files
1f379ff2-07fa-4d7e-ae92-095…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

28 lines
562 B
TypeScript

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