import MaterialIcon from '../../../../shared/components/material-icon' type RowLinkProps = { href: string heading: string subtext: string icon: string onClick?: () => void } export function RowLink({ href, heading, subtext, icon, onClick, }: RowLinkProps) { return (
  • {heading}
    {subtext}
  • ) }