UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

12 lines (11 loc) 351 B
import React from "react"; interface Props { breakpoint: string; processStart: () => void; processEnd: () => void; minorPickerStart: () => void; minorPickerProcess: (h: number) => void; minorPickerDraggerEl: React.RefObject<HTMLSpanElement>; } declare const MinorPicker: React.FC<Props>; export default MinorPicker;