wireadmin/web/src/lib/components/empty/index.ts

21 lines
473 B
TypeScript

import Root from './empty.svelte';
import Description from './empty-description.svelte';
import SimpleImage from './empty-simple-img.svelte';
import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLDivElement> {
description?: string | null;
}
export {
Root,
Description,
SimpleImage,
type Props,
//
Root as Empty,
Description as EmptyDescription,
SimpleImage as EmptySimpleImage,
type Props as EmptyProps,
};