UNPKG

@connectycube/chat-widget

Version:

A customizable React chat widget built on the ConnectyCube platform, enabling real-time messaging, calls, and user engagement in any web app.

11 lines 531 B
import * as React from 'react'; import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; import { type LucideProps } from 'lucide-react'; interface CheckboxProps extends CheckboxPrimitive.CheckboxProps { iconElement?: React.ReactNode; iconProps?: LucideProps; indicatorProps?: CheckboxPrimitive.CheckboxIndicatorProps; } declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>; export { Checkbox, type CheckboxProps }; //# sourceMappingURL=checkbox.d.ts.map