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.
Drawer
skyroc-ui/drawerRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/drawer.jsonSource
1'use client';23import { useComponentConfig } from '../config-provider/context';4import DrawerUI from './DrawerUI';5import type { DrawerProps } from './types';67const Drawer = (props: DrawerProps) => {8 const config = useComponentConfig('drawer');910 const mergedProps = {11 ...config,12 ...props13 };1415 return (16 <DrawerUI17 {...mergedProps}18 />19 );20};2122Drawer.displayName = 'Drawer';2324export default Drawer;
What it pulls in
Other registry items
