@useloops/design-system
Version:
The official React based Loops design system
16 lines (13 loc) • 458 B
TypeScript
import { FunctionComponent, ChangeEvent } from 'react';
interface DifferentialProps {
labelLeft: string;
labelRight: string;
labelCenter?: string;
disabled?: boolean;
value?: string;
onChange?: (event: ChangeEvent<HTMLInputElement>, checked: boolean) => void;
internalChange?: () => void;
}
declare const Differential: FunctionComponent<DifferentialProps>;
export { Differential as default };
export type { DifferentialProps };