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 { ModalFooterProps } from "$/types/ModalTypes";
import clsx from "clsx";
export default function ModalFooter(props: ModalFooterProps){
const {
className,
children
} = props;
export default function ModalFooter({
className,
children,
...props
}: Readonly<ModalFooterProps>){
return (
<div
className={clsx(
"flex flex-row items-center justify-center w-full rounded-b-lg",
className
)}
{...props}
>
<div
className="flex flex-row items-center justify-center mx-8 my-3"