Files
232f51eb-2b18-47ca-911a-99d…/src/components/shared/SvgTextLogo/SvgTextLogo.tsx

42 lines
898 B
TypeScript

import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
fontWeight?: number | string;
fill?: string;
dominantBaseline?: 'middle' | 'central' | 'hanging' | 'auto' | 'baseline' | 'text-bottom' | 'alphabetic';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className,
fontSize = 48,
fontWeight = 700,
fill = 'currentColor',
dominantBaseline = 'middle'
}) => {
return (
<svg
viewBox={`0 0 ${text.length * 30} 100`}
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<text
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline={dominantBaseline}
fontSize={fontSize}
fontWeight={fontWeight}
fill={fill}
fontFamily="inherit"
>
{text}
</text>
</svg>
);
};
export default SvgTextLogo;