export type BreadcrumbItemProperties = {
    /**
     * Breadcrumb link icon (material icon name https://material.io/resources/icons/?style=baseline)
     **/
    icon?: string;
    /**
     * Accessible text alternative when the item has an icon and no children.
     *
     */
    label?: string;
    /**
     * Breadcrumb link icon position
     **/
    iconPosition?: 'after' | 'before';
};
