33 lines
603 B
TypeScript
33 lines
603 B
TypeScript
import React from "react";
|
|
|
|
interface SvgTextLogoProps {
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
|
className = "", style = {},
|
|
}) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 200 80"
|
|
className={className}
|
|
style={style}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
aria-label="Logo"
|
|
>
|
|
<text
|
|
x="10"
|
|
y="60"
|
|
fontSize="48"
|
|
fontWeight="bold"
|
|
fill="currentColor"
|
|
dominantBaseline="middle"
|
|
>
|
|
Logo
|
|
</text>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SvgTextLogo; |