Skip to content

Commit

Permalink
FIO-9239: added missing tagpad icons mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
roma-formio committed Oct 23, 2024
1 parent 25cb801 commit 8d83e2e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/templates/bootstrap5/iconClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
};

0 comments on commit 8d83e2e

Please sign in to comment.