import type React from "react"; import { forwardRef, InputHTMLAttributes } from "react"; export interface CheckboxProps extends InputHTMLAttributes { label: string; description?: string; options?: string[]; prefix?: string; suffix?: string; action?: { icon: JSX.Element; action: () => void; }; error?: string; } export const Checkbox = forwardRef( function Input( { label, description, options, prefix, suffix, action, error, children, ...rest }: CheckboxProps, ref ) { return (

{description}

); } );