Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-11 11:14:24 +00:00

View File

@@ -6,12 +6,13 @@ interface SvgTextLogoProps {
text: string;
className?: string;
textClassName?: string;
dominantBaseline?: "auto" | "baseline" | "before-edge" | "hanging" | "mathematical" | "central" | "middle" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "inherit";
dominantBaseline?: "auto" | "text-before-edge" | "hanging" | "mathematical" | "central" | "middle" | "text-after-edge" | "ideographic" | "alphabetic" | "inherit" | "use-script" | "no-change" | "reset-size";
}
export const SvgTextLogo = ({
text,
className = "", textClassName = "", dominantBaseline = "central"}: SvgTextLogoProps) => {
className = "", textClassName = "", dominantBaseline = "central"
}: SvgTextLogoProps) => {
return (
<svg
viewBox={`0 0 ${text.length * 60} 100`}