"use client"; import { cn } from "@/lib/utils"; import { forwardRef } from "react"; import { GradientBlur } from "../GradientBlur/GradientBlur"; import { ActionButton } from "@/components/ui/ActionButton/ActionButton"; export interface BottomActionButtonProps extends React.ComponentProps<"div"> { actionButtonProps?: React.ComponentProps; showGradientBlur?: boolean; } const BottomActionButton = forwardRef( function BottomActionButton( { actionButtonProps, showGradientBlur = true, className, ...props }, ref ) { return (
{actionButtonProps ? : null}
); } ); export { BottomActionButton };