Most simple components created

This commit is contained in:
2025-07-18 23:30:48 -04:00
commit 5421c2346a
134 changed files with 13805 additions and 0 deletions

32
lib/types/Modal.d.ts vendored Normal file
View File

@@ -0,0 +1,32 @@
export type ModalBackgroundType = "darken" | "lighten" | "blur" | "darken-blur" | "lighten-blur" | "darken-blur-radial" | "lighten-blur-radial" | "transparent" | "none";
export interface ModalHeaderProps {
onClose?: () => void;
className?: string;
children: React.ReactNode;
}
export interface ModalFooterProps {
className?: string;
children: React.ReactNode;
}
export interface ModalBodyProps {
className?: string;
children: React.ReactNode;
}
export interface ModalProps {
display: boolean;
onClose: () => void;
className?: string;
backgroundType?: ModalBackgroundType;
top?: boolean;
children: React.ReactNode;
}
export interface ModalBackgroundProps {
backgroundType?: ModalBackgroundType;
close: () => void;
}