import {ReactNode} from 'react' import {Row} from 'web/components/layout/row' export function IconWithInfo(props: { text?: string icon: ReactNode children?: ReactNode testid?: string }) { const {text, icon, children, testid} = props return (
{icon}
{text} {children}
) } export function InfoIcon(props: {className?: string}) { const {className = 'w-5 h-5'} = props return ( ) }