Files
983d73da-a42d-4a48-abfb-b72…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

37 lines
706 B
TypeScript

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