UNPKG

geoiq-frontend-ui-kit

Version:

This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.

19 lines 405 B
export type Field = { id: string; href: string; name: string; icon?: never; } | { id: string; href: string; name?: never; icon: React.ReactNode; }; export type BreadcrumbProps = { id?: string; fields: Field[]; numberOfFieldsToShow: number; selectedFieldId?: string; breadcrumbEllipsisClassName?: string; }; //# sourceMappingURL=breadcrumb.types.d.ts.map