This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Breadcrumb
skyroc-ui/breadcrumbRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/breadcrumb.jsonSource
1'use client';23import type { Ref } from 'react';4import { forwardRef } from 'react';5import { useComponentConfig } from '../config-provider/context';6import BreadcrumbUI from './BreadcrumbUI';7import type { BreadcrumbItem, BreadcrumbProps } from './types';89const BreadcrumbInner = <T extends BreadcrumbItem>(props: BreadcrumbProps<T>, ref: Ref<HTMLElement>) => {10 const config = useComponentConfig('breadcrumb');1112 const mergedProps = {13 ...config,14 ...props15 } as BreadcrumbProps<T>;1617 return (18 <BreadcrumbUI<T>19 {...mergedProps}20 ref={ref}21 />22 );23};2425BreadcrumbInner.displayName = 'Breadcrumb';2627const Breadcrumb = forwardRef(BreadcrumbInner) as <T extends BreadcrumbItem>(28 props: BreadcrumbProps<T> & { ref?: Ref<HTMLElement> }29) => React.ReactElement;3031export default Breadcrumb;
What it pulls in
npm packages
Other registry items
