Files
207cf671-4ab0-4bb2-8eb0-004…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

37 lines
735 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
textClassName?: string;
dominantBaseline?: 'auto' | 'alphabetic' | 'middle' | 'central' | 'hanging' | 'inherit';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
textClassName = '',
dominantBaseline = 'middle',
}) => {
return (
<svg
className={className}
viewBox="0 0 300 100"
xmlns="http://www.w3.org/2000/svg"
aria-label={text}
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline={dominantBaseline}
className={textClassName}
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;