Files
3dedaef9-80e8-4fc2-8503-e41…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

36 lines
690 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 200 100"
className={`w-full h-full ${className}`}
xmlns="http://www.w3.org/2000/svg"
role="img"
aria-label={text}
>
<text
x="50%"
y="50%"
dominantBaseline="middle"
textAnchor="middle"
className={`text-2xl font-bold ${textClassName}`}
fill="currentColor"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;