Files
f590f240-8e06-433b-9fc1-e7f…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

29 lines
550 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 50"
className={`w-auto h-8 ${className}`}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="10"
y="35"
fontSize="32"
fontWeight="bold"
fill="currentColor"
dominantBaseline="auto"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;