context.js 405 B

12345678910111213141516
  1. import * as React from 'react';
  2. var SliderContext = /*#__PURE__*/React.createContext({
  3. min: 0,
  4. max: 0,
  5. direction: 'ltr',
  6. step: 1,
  7. includedStart: 0,
  8. includedEnd: 0,
  9. tabIndex: 0,
  10. keyboard: true,
  11. styles: {},
  12. classNames: {}
  13. });
  14. export default SliderContext;
  15. /** @private NOT PROMISE AVAILABLE. DO NOT USE IN PRODUCTION. */
  16. export var UnstableContext = /*#__PURE__*/React.createContext({});