Merge version_1 into main #4
@@ -3,12 +3,13 @@ import React from "react";
|
||||
interface SvgTextLogoProps {
|
||||
text: string;
|
||||
className?: string;
|
||||
dominantBaseline?: "auto" | "text-top" | "middle" | "central" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit";
|
||||
dominantBaseline?: "auto" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit";
|
||||
}
|
||||
|
||||
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
||||
text,
|
||||
className = "", dominantBaseline = "middle"}) => {
|
||||
className = "", dominantBaseline = "middle"
|
||||
}) => {
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 1000 200"
|
||||
|
||||
Reference in New Issue
Block a user