path.js 504 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Export vector path for an arrow.
  3. *
  4. * @author Naotoshi Fujita
  5. * @copyright Naotoshi Fujita. All rights reserved.
  6. */
  7. /**
  8. * Namespace definition for SVG element.
  9. *
  10. * @type {string}
  11. */
  12. export const XML_NAME_SPACE = 'http://www.w3.org/2000/svg';
  13. /**
  14. * The arrow vector path.
  15. *
  16. * @type {number}
  17. */
  18. export const PATH = 'm7.61 0.807-2.12 2.12 7.11 7.07-7.11 7.1 2.12 2.1 7.09-7.1 2.1-2.1-2.1-2.12-7.09-7.07z';
  19. /**
  20. * SVG width and height.
  21. *
  22. * @type {number}
  23. */
  24. export const SIZE = 20;