props.js 396 B

1234567891011121314151617181920212223
  1. const props = {
  2. arrowIcon: {
  3. type: null,
  4. value: 'caret-down-small',
  5. },
  6. closeOnClickOverlay: {
  7. type: Boolean,
  8. value: true,
  9. },
  10. duration: {
  11. type: null,
  12. value: 200,
  13. },
  14. showOverlay: {
  15. type: Boolean,
  16. value: true,
  17. },
  18. zIndex: {
  19. type: Number,
  20. value: 11600,
  21. },
  22. };
  23. export default props;