"use client"; import * as CheckboxPrimitives from "@radix-ui/react-checkbox"; import React from "react"; import { cx, focusRing } from "../lib/utils"; const OnboardingCheckbox = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, checked, ...props }, forwardedRef) => { return ( {checked === "indeterminate" ? ( ) : ( )} ); }); OnboardingCheckbox.displayName = "OnboardingCheckbox"; export { OnboardingCheckbox };