Files
84ab5758-69f2-4e6d-ad51-c7d…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

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