// @ts-nocheck 'use client'; import { IconClipboard } from '@tabler/icons-react'; import React from 'react'; import { cn } from '../../lib/utils'; export const ButtonsCard = ({ children, className, onClick, }: { children?: React.ReactNode; className?: string; onClick?: () => void; }) => { return (