mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 06:03:58 -05:00
27 lines
442 B
TypeScript
27 lines
442 B
TypeScript
import type { ModalFooterProps } from "$/types/Modal";
|
|
import clsx from "clsx";
|
|
|
|
|
|
export default function ModalFooter(props: ModalFooterProps){
|
|
const {
|
|
className,
|
|
children
|
|
} = props;
|
|
|
|
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
"flex flex-row items-center justify-center w-full rounded-b-lg",
|
|
className
|
|
)}
|
|
>
|
|
<div
|
|
className="flex flex-row items-center justify-center mx-8 my-3"
|
|
>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|