props.js 368 B

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