Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-11 17:50:04 +00:00

View File

@@ -1,6 +1,6 @@
import React from 'react';
import React, { SVGAttributes } from 'react';
interface SvgTextLogoProps {
interface SvgTextLogoProps extends SVGAttributes<SVGSVGElement> {
text: string;
fontSize?: number;
fontFamily?: string;
@@ -18,12 +18,14 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
textAnchor = 'middle',
dominantBaseline = 'central',
className = '',
...svgProps
}) => {
return (
<svg
viewBox="0 0 200 100"
xmlns="http://www.w3.org/2000/svg"
className={className}
{...svgProps}
>
<text
x="100"