Files
020ed629-b81b-4baa-9ece-b4e…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

29 lines
536 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
className?: string;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ className = '' }) => {
return (
<svg
viewBox="0 0 200 50"
xmlns="http://www.w3.org/2000/svg"
className={className}
aria-label="Logo"
>
<text
x="10"
y="35"
fontSize="32"
fontWeight="bold"
fill="currentColor"
dominantBaseline="middle"
>
Logo
</text>
</svg>
);
};
export default SvgTextLogo;