Files
c78a9d35-d204-4e83-90be-bd2…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

30 lines
574 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"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline="middle"
fontSize="32"
fontWeight="bold"
fill="currentColor"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;