import MaterialIcon from '../../../../shared/components/material-icon' import { isBootstrap5 } from '@/features/utils/bootstrap-5' type RowLinkProps = { href: string heading: string subtext: string icon: string } export function RowLink(props: RowLinkProps) { return isBootstrap5() ? : } function BS3RowLink({ href, heading, subtext, icon }: RowLinkProps) { return (
{heading}
{subtext}
) } function BS5RowLink({ href, heading, subtext, icon }: RowLinkProps) { return (
  • {heading}
    {subtext}
  • ) }