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

15
lib/types/Nav.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
export type Align = "start" | "end";
export type Placement = "top" | "bottom" | "left" | "right";
export type AnchorTo = `${Placement}` | `${Placement} ${Align}`;
export interface PopoverMenuProps {
buttonContent: React.ReactNode;
anchor?: AnchorTo;
children: React.ReactNode;
}
export interface NavBarProps {
className?: string;
children: React.ReactNode;
}