30 lines
605 B
TypeScript
30 lines
605 B
TypeScript
import React, { SVGProps } from 'react';
|
|
|
|
interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
|
|
className?: string;
|
|
}
|
|
|
|
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ className = '', ...props }) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 200 50"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={`w-full h-full ${className}`}
|
|
{...props}
|
|
>
|
|
<text
|
|
x="10"
|
|
y="35"
|
|
fontSize="32"
|
|
fontWeight="bold"
|
|
fill="currentColor"
|
|
dominantBaseline="middle"
|
|
>
|
|
Logo
|
|
</text>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SvgTextLogo;
|