Skip to content

Commit

Permalink
FIO-8426: added eSignature icon classes (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
TanyaGashtold authored Jun 14, 2024
1 parent 091fe67 commit 8a0026e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/templates/bootstrap3/iconClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ export default (iconset, name, spinning) => {
case 'move':
name = 'arrows';
break;
case 'ok-sign':
name = 'check-circle';
break;
case 'remove-sign':
name = 'times-circle';
break;
}
}

Expand Down
6 changes: 6 additions & 0 deletions src/templates/bootstrap4/iconClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ export default (iconset, name, spinning) => {
case 'time':
name = 'clock-o';
break;
case 'ok-sign':
name = 'check-circle';
break;
case 'remove-sign':
name = 'times-circle';
break;
}
}

Expand Down
6 changes: 6 additions & 0 deletions src/templates/bootstrap5/iconClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,12 @@ export default (iconset, name, spinning) => {
case 'folder-open':
biName = 'folder2-open';
break;
case 'check-circle':
biName = 'check-circle-fill';
break;
case 'times-circle':
biName = 'x-circle-fill';
break;
}
return spinning ? 'spinner-border spinner-border-sm' : `fa fa-${name} bi bi-${biName}`;
};

0 comments on commit 8a0026e

Please sign in to comment.