rightui
Version:
Beautiful UI library for Svelte. Based on shadcn-svelte. For Wonrity
28 lines (27 loc) • 1.21 kB
TypeScript
import { type VariantProps } from "tailwind-variants";
export declare const sheetVariants: import("tailwind-variants").TVReturnType<{
side: {
top: string;
bottom: string;
left: string;
right: string;
};
}, undefined, "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500", {
side: {
top: string;
bottom: string;
left: string;
right: string;
};
}, undefined, import("tailwind-variants").TVReturnType<{
side: {
top: string;
bottom: string;
left: string;
right: string;
};
}, undefined, "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500", unknown, unknown, undefined>>;
export type Side = VariantProps<typeof sheetVariants>["side"];
declare const SheetContent: import("svelte").Component<any, {}, "ref">;
type SheetContent = ReturnType<typeof SheetContent>;
export default SheetContent;