UNPKG

matrix-react-sdk

Version:
12 lines (11 loc) 277 B
import React from "react"; interface IProps { value: boolean; label: string; byline?: string; disabled?: boolean; onChange(checked: boolean): void; className?: string; } declare const LabelledCheckbox: React.FC<IProps>; export default LabelledCheckbox;