diff --git a/src/js/ui/button-arrow.js b/src/js/ui/button-arrow.js index 3e140d44..bc1f75cf 100644 --- a/src/js/ui/button-arrow.js +++ b/src/js/ui/button-arrow.js @@ -28,6 +28,8 @@ function initArrowButton(element, pswp, isNextButton) { }); } +const iconPath = 'M29 43l-3 3-16-16 16-16 3 3-13 13 13 13z'; + /** @type {UIElementData} */ export const arrowPrev = { name: 'arrowPrev', @@ -39,8 +41,8 @@ export const arrowPrev = { html: { isCustomSVG: true, size: 60, - inner: '', - outlineID: 'pswp__icn-arrow' + inner: ``, + outlineID: 'pswp__icn-arrow-prev' }, onClick: 'prev', onInit: initArrowButton @@ -57,8 +59,8 @@ export const arrowNext = { html: { isCustomSVG: true, size: 60, - inner: '', - outlineID: 'pswp__icn-arrow' + inner: ``, + outlineID: 'pswp__icn-arrow-next' }, onClick: 'next', onInit: (el, pswp) => {