@sjsf/shadcn4-theme
Version:
The shadcn-svelte based theme for svelte-jsonschema-form
9 lines (8 loc) • 388 B
TypeScript
import { type WithElementRef } from "../../../utils.js";
import type { HTMLAttributes } from "svelte/elements";
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
showCloseButton?: boolean;
};
declare const DialogFooter: import("svelte").Component<$$ComponentProps, {}, "ref">;
type DialogFooter = ReturnType<typeof DialogFooter>;
export default DialogFooter;