Files
03ed0702-efc8-4599-af94-cfa…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

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