Files
43654e30-e104-4069-936a-10a…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

29 lines
562 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
}
export const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ text, className = '' }) => {
return (
<svg
viewBox="0 0 200 50"
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="100"
y="35"
textAnchor="middle"
dominantBaseline="middle"
className="text-lg font-bold"
fill="currentColor"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;