Merge version_1 into main #3
@@ -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`}
|
||||
|
||||
Reference in New Issue
Block a user