--- import { cn } from '../lib/cn' import Button, { type ButtonProps } from './Button.astro' import type { Optional } from 'ts-toolbelt/out/Object/Optional' type Props = Optional, 'icon' | 'label'> & { copyText: string } const { copyText, class: className, icon, label, ...buttonProps } = Astro.props ---