Files
756e0c36-bf2d-4f14-a7b9-550…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

39 lines
727 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
fontSize?: number;
fontWeight?: number | string;
className?: string;
}
export const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
fontSize = 32,
fontWeight = 'bold',
className = '',
}) => {
return (
<svg
viewBox="0 0 200 60"
className={className}
xmlns="http://www.w3.org/2000/svg"
preserveAspectRatio="xMidYMid meet"
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline="central"
fontSize={fontSize}
fontWeight={fontWeight}
fill="currentColor"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;