export interface HeadingWithIconLinkProps {
    /**
     * The key for the icon
     */
    iconKey?: string;
    /**
     * The link for the icons
     */
    link: string;
    /**
     * The title text for the heading
     */
    title: string;
}
