123456789101112131415161718192021222324252627 |
- /**
- * Export vector path for an arrow.
- *
- * @author Naotoshi Fujita
- * @copyright Naotoshi Fujita. All rights reserved.
- */
- /**
- * Namespace definition for SVG element.
- *
- * @type {string}
- */
- export const XML_NAME_SPACE = 'http://www.w3.org/2000/svg';
- /**
- * The arrow vector path.
- *
- * @type {number}
- */
- 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';
- /**
- * SVG width and height.
- *
- * @type {number}
- */
- export const SIZE = 20;
|