"use client"; import React, { forwardRef } from "react"; interface CheckboxProps extends React.InputHTMLAttributes { label: string; error?: string; } export const Checkbox = forwardRef( ({ label, error, className = "", ...props }, ref) => { return (
{error && ( {error} )}
); } ); Checkbox.displayName = "Checkbox";