import React from 'react'; export interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; fill?: string; strokeWidth?: number; stroke?: string; } const SvgTextLogo = React.forwardRef( ( { text, className = '', fontSize = 48, fontWeight = 700, letterSpacing = 0, fill = 'currentColor', strokeWidth = 0, stroke = 'none', }, ref ) => { return ( {text} ); } ); SvgTextLogo.displayName = 'SvgTextLogo'; export default SvgTextLogo;