Files
468501fa-3421-4bff-b67c-ee8…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

29 lines
546 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 300 100"
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="50%"
y="50%"
dominantBaseline="middle"
textAnchor="middle"
fontSize="48"
fontWeight="bold"
fill="currentColor"
>
{text}
</text>
</svg>
);
};