import { StateView, type StateViewProps, type StateViewStatus, type StateViewTone, type StateViewVariant, } from "@/components/feedback/state-view" export type DataStateStatus = Exclude export type DataStateVariant = StateViewVariant export type DataStateTone = StateViewTone export type DataStateProps = Omit & { status: DataStateStatus variant?: DataStateVariant compact?: boolean } /** @deprecated Use StateView. */ function DataState({ status, variant = "card", compact = false, ...props }: DataStateProps) { return } export { DataState }