@engie-group/fluid-design-system
Version:
The Fluid Design System is ENGIE’s open-source library to create, build and deliver ENGIE digital services in a more efficient way.
16 lines (15 loc) • 395 B
TypeScript
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';
};