"use client"; import { cn } from "@/lib/utils"; import { GradientBlur } from "../GradientBlur/GradientBlur"; import { ActionButton } from "@/components/ui/ActionButton/ActionButton"; export interface BottomActionButtonProps extends React.ComponentProps<"div"> { actionButtonProps?: React.ComponentProps; childrenAboveButton?: React.ReactNode; childrenUnderButton?: React.ReactNode; } function BottomActionButton({ actionButtonProps, className, childrenAboveButton, childrenUnderButton, ...props }: BottomActionButtonProps) { return (
{childrenAboveButton} {childrenUnderButton}
); } export { BottomActionButton };