@coko/client
Version:
Client side common code for coko apps
7 lines (6 loc) • 326 B
TypeScript
import React, { ComponentProps } from 'react';
import { Checkbox as AntCheckbox } from 'antd';
type CheckboxProps = ComponentProps<typeof AntCheckbox>;
export declare const checkboxStyles: import("styled-components").RuleSet<object>;
declare const Checkbox: (props: CheckboxProps) => React.ReactNode;
export default Checkbox;