import { cn, interactive } from '@/lib' const PILL = 'flex items-center justify-center w-full max-w-[130px] h-[50px] rounded-full py-4 px-6 ' + 'text-lg font-semibold whitespace-nowrap ' + interactive export interface ActionSectionProps { isParticipating: boolean isRejecting: boolean onParticipate: () => void onReject: () => void } export function ActionSection({ isParticipating, isRejecting, onParticipate, onReject, }: ActionSectionProps) { return (