Source

components/AlertBar/alertBarTypes.js

  1. /**
  2. * AlertBar component type options.
  3. * Treat this file as an enum.
  4. * @module alertBarTypes
  5. * @category AlertBar
  6. * @author Dan Levy <danlevy124@gmail.com>
  7. */
  8. /**
  9. * Use success CSS styles
  10. * @type {string}
  11. */
  12. export const SUCCESS = "SUCCESS";
  13. /**
  14. * Use warning CSS styles
  15. * @type {string}
  16. */
  17. export const WARNING = "WARNING";
  18. /**
  19. * Use error CSS styles
  20. * @type {string}
  21. */
  22. export const ERROR = "ERROR";
  23. /**
  24. * Use info CSS styles
  25. * @type {string}
  26. */
  27. export const INFO = "INFO";