Files
b45679a3-efe0-4592-abbe-37b…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

31 lines
636 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
textClassName?: string;
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ text, className = '', textClassName = '' }) => {
return (
<svg
viewBox={`0 0 ${text.length * 40} 60`}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline="middle"
className={textClassName}
fontSize="24"
fontWeight="bold"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;