UNPKG

@ducor/react

Version:

admin template ui interface

10 lines (9 loc) 216 B
import React from "react"; interface CheckboxProps { label: string; name: string; checked?: boolean; defaultValue?: string; } declare const Checkbox: React.FC<CheckboxProps>; export default Checkbox;