TimeRangeSliderPicker
Installation
import { TimeRangeSliderPicker } from 'uxp/components';Signature
const TimeRangeSliderPicker: React.FunctionComponent<TimeRangeSliderPickerProps>Examples
tsx
<TimeRangeSliderPicker
title="Working Hours"
startTime="09:00"
endTime="17:00"
onChange={(start, end) => {
console.log('Start:', start, 'End:', end);
}}
step={15}
/>Properties
Name
Type
Mandatory
Default Value
Example Value
Related Types
Last updated