Files
f1f4cc01-6ebb-4be2-84ca-4c1…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

28 lines
495 B
TypeScript

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