29 lines
508 B
TypeScript
29 lines
508 B
TypeScript
import React from 'react';
|
|
|
|
interface SvgTextLogoProps {
|
|
className?: string;
|
|
}
|
|
|
|
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ className }) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 200 40"
|
|
className={className}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<text
|
|
x="10"
|
|
y="30"
|
|
fontSize="24"
|
|
fontWeight="bold"
|
|
dominantBaseline="middle"
|
|
fill="currentColor"
|
|
>
|
|
Logo
|
|
</text>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SvgTextLogo;
|