From 8d83e2e9e2db189370c5371bd730804b066a7007 Mon Sep 17 00:00:00 2001 From: Roman Letsuk Date: Wed, 23 Oct 2024 13:42:01 +0300 Subject: [PATCH] FIO-9239: added missing tagpad icons mapping --- src/templates/bootstrap5/iconClass.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/templates/bootstrap5/iconClass.ts b/src/templates/bootstrap5/iconClass.ts index cf361d5e..1d72ca30 100644 --- a/src/templates/bootstrap5/iconClass.ts +++ b/src/templates/bootstrap5/iconClass.ts @@ -139,6 +139,30 @@ export default (iconset, name, spinning) => { case 'times-circle': biName = 'x-circle-fill'; break; + case 'pencil': + biName = 'pencil-fill'; + break; + case 'minus': + biName = 'dash'; + break; + case 'circle': + biName = 'circle-fill'; + break; + case 'search-plus': + biName = 'zoom-in'; + break; + case 'search-minus': + biName = 'zoom-out'; + break; + case 'hand-paper-o': + biName = 'hand-index'; + break; + case 'undo': + biName = 'arrow-counterclockwise'; + break; + case 'repeat': + biName = 'arrow-clockwise'; + break; } return spinning ? 'spinner-border spinner-border-sm' : `fa fa-${name} bi bi-${biName}`; };