import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; size?: 'sm' | 'md' | 'lg' | 'xl'; weight?: 'light' | 'normal' | 'bold'; } const SvgTextLogo: React.FC = ({ text, className = '', size = 'md', weight = 'bold', }) => { const sizeMap = { sm: { width: 120, height: 40, fontSize: 24 }, md: { width: 200, height: 60, fontSize: 40 }, lg: { width: 300, height: 80, fontSize: 56 }, xl: { width: 400, height: 100, fontSize: 72 }, }; const weightMap = { light: 300, normal: 400, bold: 700, }; const dimensions = sizeMap[size]; const fontWeight = weightMap[weight]; return ( {text} ); }; export default SvgTextLogo;