import {ReactNode} from 'react' import {Row} from 'web/components/layout/row' export function IconWithInfo(props: {text: string; icon: ReactNode}) { const {text, icon} = props return (
{icon}
{text}
) }