38 lines
821 B
TypeScript
38 lines
821 B
TypeScript
import React from "react";
|
|
|
|
interface SvgTextLogoProps {
|
|
text: string;
|
|
className?: string;
|
|
fontSize?: number;
|
|
fontWeight?: number | string;
|
|
fill?: string;
|
|
fontFamily?: string;
|
|
}
|
|
|
|
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
|
text,
|
|
className = "", fontSize = 32,
|
|
fontWeight = "bold", fill = "currentColor", fontFamily = "system-ui, -apple-system, sans-serif"}) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 300 100"
|
|
className={`${className}`}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<text
|
|
x="50%"
|
|
y="50%"
|
|
textAnchor="middle"
|
|
dominantBaseline="middle"
|
|
fontSize={fontSize}
|
|
fontWeight={fontWeight}
|
|
fill={fill}
|
|
fontFamily={fontFamily}
|
|
>
|
|
{text}
|
|
</text>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default SvgTextLogo; |