From 10f1ddcbb7fab704d937a860ed56bf6b038fd42d Mon Sep 17 00:00:00 2001 From: Adam Kudrna Date: Mon, 25 Sep 2023 15:42:22 +0200 Subject: [PATCH] Hide example icons in the docs from AT because their purpose is just decorative --- src/docs/_assets/js/ruiIcon.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/docs/_assets/js/ruiIcon.js b/src/docs/_assets/js/ruiIcon.js index 0dd6044c..86d52a2c 100644 --- a/src/docs/_assets/js/ruiIcon.js +++ b/src/docs/_assets/js/ruiIcon.js @@ -1,34 +1,34 @@ const getSvg = (icon) => { if (icon === 'code') { - return ''; + return ''; } if (icon === 'down') { - return ''; + return ''; } if (icon === 'loading') { - return ''; + return ''; } if (icon === 'pencil') { - return ''; + return ''; } if (icon === 'star') { - return ''; + return ''; } if (icon === 'success') { - return ''; + return ''; } if (icon === 'up') { - return ''; + return ''; } if (icon === 'warning-sign') { - return ''; + return ''; } return '';