1 Commits

Author SHA1 Message Date
0690b70825 Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx 2026-03-12 09:55:30 +00:00
3 changed files with 13 additions and 15 deletions

View File

@@ -203,4 +203,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -12,8 +12,8 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--foreground: #000f06e6;
--primary-cta: #0a7039;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000f06e6;

View File

@@ -6,7 +6,6 @@ interface SvgTextLogoProps {
fontSize?: number;
fontWeight?: number | string;
letterSpacing?: number;
fill?: string;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
@@ -15,28 +14,27 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
fontSize = 48,
fontWeight = 700,
letterSpacing = 0,
fill = 'currentColor',
}) => {
const textLength = text.length;
const charWidth = fontSize * 0.6;
const width = charWidth * textLength + letterSpacing * (textLength - 1);
const height = fontSize * 1.2;
const svgWidth = text.length * (fontSize * 0.6) + 40;
const svgHeight = fontSize + 20;
return (
<svg
viewBox={`0 0 ${width} ${height}`}
width={svgWidth}
height={svgHeight}
viewBox={`0 0 ${svgWidth} ${svgHeight}`}
className={className}
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
>
<text
x="0"
y={fontSize}
x="20"
y={fontSize + 5}
fontSize={fontSize}
fontWeight={fontWeight}
fill={fill}
letterSpacing={letterSpacing}
dominantBaseline="middle"
fill="currentColor"
dominantBaseline="alphabetic"
textAnchor="start"
>
{text}
</text>