Merge version_1 into main #3
@@ -4,12 +4,13 @@ interface SvgTextLogoProps {
|
||||
text: string;
|
||||
className?: string;
|
||||
fillColor?: string;
|
||||
dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "hanging" | "mathematical";
|
||||
dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size";
|
||||
}
|
||||
|
||||
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
||||
text,
|
||||
className = "", fillColor = "currentColor", dominantBaseline = "middle"}) => {
|
||||
className = "", fillColor = "currentColor", dominantBaseline = "middle"
|
||||
}) => {
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 200 100"
|
||||
|
||||
Reference in New Issue
Block a user