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