props.js 641 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. const props = {
  2. direction: {
  3. type: String,
  4. value: 'row',
  5. },
  6. duration: {
  7. type: Number,
  8. value: 2000,
  9. },
  10. externalClasses: {
  11. type: Array,
  12. },
  13. icon: {
  14. type: null,
  15. },
  16. message: {
  17. type: String,
  18. },
  19. overlayProps: {
  20. type: Object,
  21. value: {},
  22. },
  23. placement: {
  24. type: String,
  25. value: 'middle',
  26. },
  27. preventScrollThrough: {
  28. type: Boolean,
  29. value: false,
  30. },
  31. showOverlay: {
  32. type: Boolean,
  33. value: false,
  34. },
  35. theme: {
  36. type: String,
  37. },
  38. };
  39. export default props;