28 lines
495 B
TypeScript
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; |