This component no longer exists. It was in ondo-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 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.
empty-view
ondo-ui/empty-viewRemovedComponent
A ready-made empty state composed from Empty and Button.
Install it
npx shadcn@latest add https://ui.ondo.dou.so/r/empty-view.jsonSource
1import {2 Empty,3 EmptyContent,4 EmptyDescription,5 EmptyHeader,6 EmptyMedia,7 EmptyTitle,8} from "@/components/ui/empty"910interface EmptyViewProps extends Omit<11 React.ComponentProps<typeof Empty>,12 "title"13> {14 icon?: React.ReactNode15 title: React.ReactNode16 description?: React.ReactNode17 actions?: React.ReactNode18}1920function EmptyView({21 icon,22 title,23 description,24 actions,25 ...props26}: EmptyViewProps) {27 return (28 <Empty {...props}>29 <EmptyHeader>30 {icon ? <EmptyMedia variant="icon">{icon}</EmptyMedia> : null}31 <EmptyTitle>{title}</EmptyTitle>32 {description ? (33 <EmptyDescription>{description}</EmptyDescription>34 ) : null}35 </EmptyHeader>36 {actions ? <EmptyContent>{actions}</EmptyContent> : null}37 </Empty>38 )39}4041export { EmptyView, type EmptyViewProps }
What it pulls in
Other registry items
