--- import { cn } from '../lib/cn' import Button from './Button.astro' import type { ComponentProps, HTMLAttributes } from 'astro/types' type Props = HTMLAttributes<'div'> & { hideCancel?: boolean icon?: string label?: string disabled?: boolean color?: ComponentProps['color'] } const { hideCancel = false, icon = 'ri:send-plane-2-line', label = 'Submit', disabled = false, class: className, color = 'success', ...htmlProps } = Astro.props ---
{!hideCancel &&