UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

6 lines (5 loc) 289 B
import React from "react"; import { CheckboxProps as BlueprintCheckboxProps } from "@blueprintjs/core"; export type CheckboxProps = BlueprintCheckboxProps; export declare const Checkbox: ({ children, className, ...restProps }: CheckboxProps) => React.JSX.Element; export default Checkbox;