import { DensityProp } from '../../composables/density.js'; import { SkeletonInjected } from '../../composables/useSkeletonState.js'; import { SharedLinkProps } from '../OnyxRouterLink/types.js'; export type OnyxBreadcrumbItemProps = DensityProp & { /** * Whether the nav item is currently active. * If any nested option is active, the parent nav item will also be marked as active. * If "auto" and a [router](https://onyx.schwarz/development/router.html) is provided, the active state will be determined automatically based on the current route. */ active?: boolean | "auto"; /** * Whether to show a skeleton item. */ skeleton?: SkeletonInjected; } & Partial>;