'use client' import { Button } from '@/components/ui/button' import React from 'react' export interface ActionButtonsProps { icon: React.ReactNode, label?: string, buttonWidth?: number, isGhost?: boolean, onClick?: () => void } function ActionButtons({ icon, label, onClick, isGhost=false, buttonWidth}: ActionButtonsProps) { return (
{label &&

{label}

}
) } export default ActionButtons