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.
Toggle Group
skyroc-ui/toggle-groupRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/toggle-group.jsonSource
1import { isFunction } from '@/lib/typed';2import ToggleGroupItem from './ToggleGroupItem';3import ToggleGroupRoot from './ToggleGroupRoot';4import type { ToggleGroupProps } from './types';56const ToggleGroup = (props: ToggleGroupProps) => {7 const { className, classNames, itemRender, items, size, variant, ...rest } = props;89 return (10 <ToggleGroupRoot11 {...rest}12 className={[classNames?.groupRoot, className]}13 size={size}14 >15 {items.map((item) => {16 const { label, ...restItem } = item;1718 return (19 <ToggleGroupItem20 key={item.value}21 size={size}22 variant={variant}23 {...restItem}24 >25 {isFunction(itemRender) ? itemRender(item) : label}26 </ToggleGroupItem>27 );28 })}29 </ToggleGroupRoot>30 );31};3233export default ToggleGroup;
What it pulls in
Other registry items
