"use client"; import type { ComponentProps } from "react"; import { Checkbox } from "@/components/ui/checkbox"; import { cn } from "@/lib/utils"; type SelectionCheckboxProps = ComponentProps & { wrapperClassName?: string; }; export function SelectionCheckbox({ className, wrapperClassName, ...props }: SelectionCheckboxProps) { return ( event.stopPropagation()} onClick={(event) => event.stopPropagation()} > ); }