import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold'; fill?: string; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = 'bold', fill = 'currentColor', }) => { const fontWeightMap: Record = { light: 300, normal: 400, medium: 500, semibold: 600, bold: 700, extrabold: 800, }; const fontWeightValue = fontWeightMap[fontWeight] || 400; return ( {text} ); }; export default SvgTextLogo;