Files
2affdab4-5f59-4f86-abd9-616…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

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