12345678910111213141516 |
- import * as React from 'react';
- var SliderContext = /*#__PURE__*/React.createContext({
- min: 0,
- max: 0,
- direction: 'ltr',
- step: 1,
- includedStart: 0,
- includedEnd: 0,
- tabIndex: 0,
- keyboard: true,
- styles: {},
- classNames: {}
- });
- export default SliderContext;
- /** @private NOT PROMISE AVAILABLE. DO NOT USE IN PRODUCTION. */
- export var UnstableContext = /*#__PURE__*/React.createContext({});
|