UNPKG

create-nova-vite-template

Version:

This is a dashboard template built with React and Vite. It provides a modern and responsive user interface for building web applications.

15 lines (12 loc) 281 B
import { ReactNode } from "react"; interface CheckboxOption { label: ReactNode; value: string; } export interface CheckboxGroupProps { title: string; options: CheckboxOption[]; value: string[]; showSearch?: boolean; onChange?: (selectedValues: string[]) => void; }