Files
df2d435f-56c7-4456-98bc-63b…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

31 lines
581 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
}
export function SvgTextLogo({ text, className = '' }: SvgTextLogoProps) {
return (
<svg
viewBox="0 0 300 100"
xmlns="http://www.w3.org/2000/svg"
className={`w-full h-auto ${className}`}
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline="central"
fontSize="48"
fontWeight="bold"
fill="currentColor"
>
{text}
</text>
</svg>
);
}
export default SvgTextLogo;