import { ThemeSize } from "../../theme/types.js"; import { EmptyCompactProps, EmptyCompactSlots, EmptyUi } from "@soybeanjs/headless/empty"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/empty/types.d.ts /** * Properties for the Empty component. */ interface EmptyProps extends EmptyCompactProps { /** * Additional class names applied to the root element. */ class?: ClassValue; /** * Per-slot class overrides for the component. */ ui?: Partial; /** * Size variant of the component. */ size?: ThemeSize; } /** * Slots for the Empty component. */ type EmptySlots = EmptyCompactSlots; //#endregion export { EmptyProps, EmptySlots };