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.
Divider
skyroc-ui/dividerRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/divider.jsonSource
1'use client';23import type { ComponentRef } from 'react';4import { forwardRef } from 'react';5import { useComponentConfig } from '../config-provider/context';6import DividerUI from './DividerUI';7import type { DividerProps } from './types';89const Divider = forwardRef<ComponentRef<typeof DividerUI>, DividerProps>((props, ref) => {10 const config = useComponentConfig('divider');1112 const mergedProps = {13 ...config,14 ...props15 };1617 return (18 <DividerUI19 {...mergedProps}20 ref={ref}21 />22 );23});2425Divider.displayName = 'Divider';2627export default Divider;
What it pulls in
npm packages
Other registry items
