UNPKG

mochi-ui

Version:

Mochi UI is a React component library that helps you build aweomse production ready UI components with a soft UI design.

11 lines (10 loc) 244 B
import React from 'react'; type Props = { domName?: string; value?: boolean; name?: string; onChange?: () => void; disabled?: boolean; }; declare const CheckBox: (props: Props) => React.JSX.Element; export default CheckBox;