UNPKG

@aappddeevv/dynamics-client-ui

Version:

## What is it? A library to help you create great dynamics applications.

19 lines (18 loc) 469 B
/// <reference types="react" /> /** Very plain checkbox. */ import * as React from "react"; export interface Props { className?: string; labelBefore?: boolean; onChange?: (checked: boolean, id: string, e: any) => void; label: string; title?: string; id?: string; [propName: string]: any; checked?: boolean; } /** * On change takes (checked status, id, evt). */ export declare const Checkbox: React.SFC<Props>; export default Checkbox;