import React from 'react' interface TxtIconProps { className?: string width?: number | string height?: number | string } export const TxtIcon: React.FC = ({ className, width = 40, height = 40, }) => { return ( ) }