Update various components

This commit is contained in:
2026-02-26 21:03:21 -05:00
parent 637b3a0c34
commit 94f0f3ca13
20 changed files with 84 additions and 112 deletions

View File

@@ -2,19 +2,18 @@ import type { ModalBodyProps } from "$/types/ModalTypes";
import clsx from "clsx";
export default function ModalBody(props: ModalBodyProps){
const {
className,
children
} = props;
export default function ModalBody({
className,
children,
...props
}: Readonly<ModalBodyProps>){
return (
<div
className={clsx(
"flex flex-col items-center justify-start h-full w-full overflow-scroll",
className
)}
{...props}
>
{children}
</div>