mirror of
https://github.com/wireadmin/wireadmin
synced 2025-06-26 18:28:06 +00:00
21 lines
473 B
TypeScript
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,
|
|
};
|