gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
1,276 lines • 244 kB
JavaScript
export * from "./iconTypes";
// Icons to import
import * as SVGIcons from "./svgs";
// Renders an icon by type
export const Icons = (iconType, height, width, className) => {
// See which icon is selected
switch (iconType) {
// 0-circle-fill.svg
case 1:
return SVGIcons._0CircleFill(height, width, className);
// 0-circle.svg
case 2:
return SVGIcons._0Circle(height, width, className);
// 0-square-fill.svg
case 3:
return SVGIcons._0SquareFill(height, width, className);
// 0-square.svg
case 4:
return SVGIcons._0Square(height, width, className);
// 1-circle-fill.svg
case 5:
return SVGIcons._1CircleFill(height, width, className);
// 1-circle.svg
case 6:
return SVGIcons._1Circle(height, width, className);
// 1-square-fill.svg
case 7:
return SVGIcons._1SquareFill(height, width, className);
// 1-square.svg
case 8:
return SVGIcons._1Square(height, width, className);
// 123.svg
case 9:
return SVGIcons._123(height, width, className);
// 2-circle-fill.svg
case 10:
return SVGIcons._2CircleFill(height, width, className);
// 2-circle.svg
case 11:
return SVGIcons._2Circle(height, width, className);
// 2-square-fill.svg
case 12:
return SVGIcons._2SquareFill(height, width, className);
// 2-square.svg
case 13:
return SVGIcons._2Square(height, width, className);
// 3-circle-fill.svg
case 14:
return SVGIcons._3CircleFill(height, width, className);
// 3-circle.svg
case 15:
return SVGIcons._3Circle(height, width, className);
// 3-square-fill.svg
case 16:
return SVGIcons._3SquareFill(height, width, className);
// 3-square.svg
case 17:
return SVGIcons._3Square(height, width, className);
// 4-circle-fill.svg
case 18:
return SVGIcons._4CircleFill(height, width, className);
// 4-circle.svg
case 19:
return SVGIcons._4Circle(height, width, className);
// 4-square-fill.svg
case 20:
return SVGIcons._4SquareFill(height, width, className);
// 4-square.svg
case 21:
return SVGIcons._4Square(height, width, className);
// 5-circle-fill.svg
case 22:
return SVGIcons._5CircleFill(height, width, className);
// 5-circle.svg
case 23:
return SVGIcons._5Circle(height, width, className);
// 5-square-fill.svg
case 24:
return SVGIcons._5SquareFill(height, width, className);
// 5-square.svg
case 25:
return SVGIcons._5Square(height, width, className);
// 6-circle-fill.svg
case 26:
return SVGIcons._6CircleFill(height, width, className);
// 6-circle.svg
case 27:
return SVGIcons._6Circle(height, width, className);
// 6-square-fill.svg
case 28:
return SVGIcons._6SquareFill(height, width, className);
// 6-square.svg
case 29:
return SVGIcons._6Square(height, width, className);
// 7-circle-fill.svg
case 30:
return SVGIcons._7CircleFill(height, width, className);
// 7-circle.svg
case 31:
return SVGIcons._7Circle(height, width, className);
// 7-square-fill.svg
case 32:
return SVGIcons._7SquareFill(height, width, className);
// 7-square.svg
case 33:
return SVGIcons._7Square(height, width, className);
// 8-circle-fill.svg
case 34:
return SVGIcons._8CircleFill(height, width, className);
// 8-circle.svg
case 35:
return SVGIcons._8Circle(height, width, className);
// 8-square-fill.svg
case 36:
return SVGIcons._8SquareFill(height, width, className);
// 8-square.svg
case 37:
return SVGIcons._8Square(height, width, className);
// 9-circle-fill.svg
case 38:
return SVGIcons._9CircleFill(height, width, className);
// 9-circle.svg
case 39:
return SVGIcons._9Circle(height, width, className);
// 9-square-fill.svg
case 40:
return SVGIcons._9SquareFill(height, width, className);
// 9-square.svg
case 41:
return SVGIcons._9Square(height, width, className);
// activity.svg
case 42:
return SVGIcons.activity(height, width, className);
// airplane-engines-fill.svg
case 43:
return SVGIcons.airplaneEnginesFill(height, width, className);
// airplane-engines.svg
case 44:
return SVGIcons.airplaneEngines(height, width, className);
// airplane-fill.svg
case 45:
return SVGIcons.airplaneFill(height, width, className);
// airplane.svg
case 46:
return SVGIcons.airplane(height, width, className);
// alarm-fill.svg
case 47:
return SVGIcons.alarmFill(height, width, className);
// alarm.svg
case 48:
return SVGIcons.alarm(height, width, className);
// alexa.svg
case 49:
return SVGIcons.alexa(height, width, className);
// align-bottom.svg
case 50:
return SVGIcons.alignBottom(height, width, className);
// align-center.svg
case 51:
return SVGIcons.alignCenter(height, width, className);
// align-end.svg
case 52:
return SVGIcons.alignEnd(height, width, className);
// align-middle.svg
case 53:
return SVGIcons.alignMiddle(height, width, className);
// align-start.svg
case 54:
return SVGIcons.alignStart(height, width, className);
// align-top.svg
case 55:
return SVGIcons.alignTop(height, width, className);
// alipay.svg
case 56:
return SVGIcons.alipay(height, width, className);
// alphabet-uppercase.svg
case 57:
return SVGIcons.alphabetUppercase(height, width, className);
// alphabet.svg
case 58:
return SVGIcons.alphabet(height, width, className);
// alt.svg
case 59:
return SVGIcons.alt(height, width, className);
// amazon.svg
case 60:
return SVGIcons.amazon(height, width, className);
// amd.svg
case 61:
return SVGIcons.amd(height, width, className);
// android.svg
case 62:
return SVGIcons.android(height, width, className);
// android2.svg
case 63:
return SVGIcons.android2(height, width, className);
// anthropic.svg
case 64:
return SVGIcons.anthropic(height, width, className);
// app-indicator.svg
case 65:
return SVGIcons.appIndicator(height, width, className);
// app.svg
case 66:
return SVGIcons.app(height, width, className);
// apple-music.svg
case 67:
return SVGIcons.appleMusic(height, width, className);
// apple.svg
case 68:
return SVGIcons.apple(height, width, className);
// archive-fill.svg
case 69:
return SVGIcons.archiveFill(height, width, className);
// archive.svg
case 70:
return SVGIcons.archive(height, width, className);
// arrow-90deg-down.svg
case 71:
return SVGIcons.arrow90degDown(height, width, className);
// arrow-90deg-left.svg
case 72:
return SVGIcons.arrow90degLeft(height, width, className);
// arrow-90deg-right.svg
case 73:
return SVGIcons.arrow90degRight(height, width, className);
// arrow-90deg-up.svg
case 74:
return SVGIcons.arrow90degUp(height, width, className);
// arrow-bar-down.svg
case 75:
return SVGIcons.arrowBarDown(height, width, className);
// arrow-bar-left.svg
case 76:
return SVGIcons.arrowBarLeft(height, width, className);
// arrow-bar-right.svg
case 77:
return SVGIcons.arrowBarRight(height, width, className);
// arrow-bar-up.svg
case 78:
return SVGIcons.arrowBarUp(height, width, className);
// arrow-clockwise.svg
case 79:
return SVGIcons.arrowClockwise(height, width, className);
// arrow-counterclockwise.svg
case 80:
return SVGIcons.arrowCounterclockwise(height, width, className);
// arrow-down-circle-fill.svg
case 81:
return SVGIcons.arrowDownCircleFill(height, width, className);
// arrow-down-circle.svg
case 82:
return SVGIcons.arrowDownCircle(height, width, className);
// arrow-down-left-circle-fill.svg
case 83:
return SVGIcons.arrowDownLeftCircleFill(height, width, className);
// arrow-down-left-circle.svg
case 84:
return SVGIcons.arrowDownLeftCircle(height, width, className);
// arrow-down-left-square-fill.svg
case 85:
return SVGIcons.arrowDownLeftSquareFill(height, width, className);
// arrow-down-left-square.svg
case 86:
return SVGIcons.arrowDownLeftSquare(height, width, className);
// arrow-down-left.svg
case 87:
return SVGIcons.arrowDownLeft(height, width, className);
// arrow-down-right-circle-fill.svg
case 88:
return SVGIcons.arrowDownRightCircleFill(height, width, className);
// arrow-down-right-circle.svg
case 89:
return SVGIcons.arrowDownRightCircle(height, width, className);
// arrow-down-right-square-fill.svg
case 90:
return SVGIcons.arrowDownRightSquareFill(height, width, className);
// arrow-down-right-square.svg
case 91:
return SVGIcons.arrowDownRightSquare(height, width, className);
// arrow-down-right.svg
case 92:
return SVGIcons.arrowDownRight(height, width, className);
// arrow-down-short.svg
case 93:
return SVGIcons.arrowDownShort(height, width, className);
// arrow-down-square-fill.svg
case 94:
return SVGIcons.arrowDownSquareFill(height, width, className);
// arrow-down-square.svg
case 95:
return SVGIcons.arrowDownSquare(height, width, className);
// arrow-down-up.svg
case 96:
return SVGIcons.arrowDownUp(height, width, className);
// arrow-down.svg
case 97:
return SVGIcons.arrowDown(height, width, className);
// arrow-left-circle-fill.svg
case 98:
return SVGIcons.arrowLeftCircleFill(height, width, className);
// arrow-left-circle.svg
case 99:
return SVGIcons.arrowLeftCircle(height, width, className);
// arrow-left-right.svg
case 100:
return SVGIcons.arrowLeftRight(height, width, className);
// arrow-left-short.svg
case 101:
return SVGIcons.arrowLeftShort(height, width, className);
// arrow-left-square-fill.svg
case 102:
return SVGIcons.arrowLeftSquareFill(height, width, className);
// arrow-left-square.svg
case 103:
return SVGIcons.arrowLeftSquare(height, width, className);
// arrow-left.svg
case 104:
return SVGIcons.arrowLeft(height, width, className);
// arrow-repeat.svg
case 105:
return SVGIcons.arrowRepeat(height, width, className);
// arrow-return-left.svg
case 106:
return SVGIcons.arrowReturnLeft(height, width, className);
// arrow-return-right.svg
case 107:
return SVGIcons.arrowReturnRight(height, width, className);
// arrow-right-circle-fill.svg
case 108:
return SVGIcons.arrowRightCircleFill(height, width, className);
// arrow-right-circle.svg
case 109:
return SVGIcons.arrowRightCircle(height, width, className);
// arrow-right-short.svg
case 110:
return SVGIcons.arrowRightShort(height, width, className);
// arrow-right-square-fill.svg
case 111:
return SVGIcons.arrowRightSquareFill(height, width, className);
// arrow-right-square.svg
case 112:
return SVGIcons.arrowRightSquare(height, width, className);
// arrow-right.svg
case 113:
return SVGIcons.arrowRight(height, width, className);
// arrow-through-heart-fill.svg
case 114:
return SVGIcons.arrowThroughHeartFill(height, width, className);
// arrow-through-heart.svg
case 115:
return SVGIcons.arrowThroughHeart(height, width, className);
// arrow-up-circle-fill.svg
case 116:
return SVGIcons.arrowUpCircleFill(height, width, className);
// arrow-up-circle.svg
case 117:
return SVGIcons.arrowUpCircle(height, width, className);
// arrow-up-left-circle-fill.svg
case 118:
return SVGIcons.arrowUpLeftCircleFill(height, width, className);
// arrow-up-left-circle.svg
case 119:
return SVGIcons.arrowUpLeftCircle(height, width, className);
// arrow-up-left-square-fill.svg
case 120:
return SVGIcons.arrowUpLeftSquareFill(height, width, className);
// arrow-up-left-square.svg
case 121:
return SVGIcons.arrowUpLeftSquare(height, width, className);
// arrow-up-left.svg
case 122:
return SVGIcons.arrowUpLeft(height, width, className);
// arrow-up-right-circle-fill.svg
case 123:
return SVGIcons.arrowUpRightCircleFill(height, width, className);
// arrow-up-right-circle.svg
case 124:
return SVGIcons.arrowUpRightCircle(height, width, className);
// arrow-up-right-square-fill.svg
case 125:
return SVGIcons.arrowUpRightSquareFill(height, width, className);
// arrow-up-right-square.svg
case 126:
return SVGIcons.arrowUpRightSquare(height, width, className);
// arrow-up-right.svg
case 127:
return SVGIcons.arrowUpRight(height, width, className);
// arrow-up-short.svg
case 128:
return SVGIcons.arrowUpShort(height, width, className);
// arrow-up-square-fill.svg
case 129:
return SVGIcons.arrowUpSquareFill(height, width, className);
// arrow-up-square.svg
case 130:
return SVGIcons.arrowUpSquare(height, width, className);
// arrow-up.svg
case 131:
return SVGIcons.arrowUp(height, width, className);
// arrows-angle-contract.svg
case 132:
return SVGIcons.arrowsAngleContract(height, width, className);
// arrows-angle-expand.svg
case 133:
return SVGIcons.arrowsAngleExpand(height, width, className);
// arrows-collapse-vertical.svg
case 134:
return SVGIcons.arrowsCollapseVertical(height, width, className);
// arrows-collapse.svg
case 135:
return SVGIcons.arrowsCollapse(height, width, className);
// arrows-expand-vertical.svg
case 136:
return SVGIcons.arrowsExpandVertical(height, width, className);
// arrows-expand.svg
case 137:
return SVGIcons.arrowsExpand(height, width, className);
// arrows-fullscreen.svg
case 138:
return SVGIcons.arrowsFullscreen(height, width, className);
// arrows-move.svg
case 139:
return SVGIcons.arrowsMove(height, width, className);
// arrows-vertical.svg
case 140:
return SVGIcons.arrowsVertical(height, width, className);
// arrows.svg
case 141:
return SVGIcons.arrows(height, width, className);
// aspect-ratio-fill.svg
case 142:
return SVGIcons.aspectRatioFill(height, width, className);
// aspect-ratio.svg
case 143:
return SVGIcons.aspectRatio(height, width, className);
// asterisk.svg
case 144:
return SVGIcons.asterisk(height, width, className);
// at.svg
case 145:
return SVGIcons.at(height, width, className);
// award-fill.svg
case 146:
return SVGIcons.awardFill(height, width, className);
// award.svg
case 147:
return SVGIcons.award(height, width, className);
// back.svg
case 148:
return SVGIcons.back(height, width, className);
// backpack-fill.svg
case 149:
return SVGIcons.backpackFill(height, width, className);
// backpack.svg
case 150:
return SVGIcons.backpack(height, width, className);
// backpack2-fill.svg
case 151:
return SVGIcons.backpack2Fill(height, width, className);
// backpack2.svg
case 152:
return SVGIcons.backpack2(height, width, className);
// backpack3-fill.svg
case 153:
return SVGIcons.backpack3Fill(height, width, className);
// backpack3.svg
case 154:
return SVGIcons.backpack3(height, width, className);
// backpack4-fill.svg
case 155:
return SVGIcons.backpack4Fill(height, width, className);
// backpack4.svg
case 156:
return SVGIcons.backpack4(height, width, className);
// backspace-fill.svg
case 157:
return SVGIcons.backspaceFill(height, width, className);
// backspace-reverse-fill.svg
case 158:
return SVGIcons.backspaceReverseFill(height, width, className);
// backspace-reverse.svg
case 159:
return SVGIcons.backspaceReverse(height, width, className);
// backspace.svg
case 160:
return SVGIcons.backspace(height, width, className);
// badge-3d-fill.svg
case 161:
return SVGIcons.badge3dFill(height, width, className);
// badge-3d.svg
case 162:
return SVGIcons.badge3d(height, width, className);
// badge-4k-fill.svg
case 163:
return SVGIcons.badge4kFill(height, width, className);
// badge-4k.svg
case 164:
return SVGIcons.badge4k(height, width, className);
// badge-8k-fill.svg
case 165:
return SVGIcons.badge8kFill(height, width, className);
// badge-8k.svg
case 166:
return SVGIcons.badge8k(height, width, className);
// badge-ad-fill.svg
case 167:
return SVGIcons.badgeAdFill(height, width, className);
// badge-ad.svg
case 168:
return SVGIcons.badgeAd(height, width, className);
// badge-ar-fill.svg
case 169:
return SVGIcons.badgeArFill(height, width, className);
// badge-ar.svg
case 170:
return SVGIcons.badgeAr(height, width, className);
// badge-cc-fill.svg
case 171:
return SVGIcons.badgeCcFill(height, width, className);
// badge-cc.svg
case 172:
return SVGIcons.badgeCc(height, width, className);
// badge-hd-fill.svg
case 173:
return SVGIcons.badgeHdFill(height, width, className);
// badge-hd.svg
case 174:
return SVGIcons.badgeHd(height, width, className);
// badge-sd-fill.svg
case 175:
return SVGIcons.badgeSdFill(height, width, className);
// badge-sd.svg
case 176:
return SVGIcons.badgeSd(height, width, className);
// badge-tm-fill.svg
case 177:
return SVGIcons.badgeTmFill(height, width, className);
// badge-tm.svg
case 178:
return SVGIcons.badgeTm(height, width, className);
// badge-vo-fill.svg
case 179:
return SVGIcons.badgeVoFill(height, width, className);
// badge-vo.svg
case 180:
return SVGIcons.badgeVo(height, width, className);
// badge-vr-fill.svg
case 181:
return SVGIcons.badgeVrFill(height, width, className);
// badge-vr.svg
case 182:
return SVGIcons.badgeVr(height, width, className);
// badge-wc-fill.svg
case 183:
return SVGIcons.badgeWcFill(height, width, className);
// badge-wc.svg
case 184:
return SVGIcons.badgeWc(height, width, className);
// bag-check-fill.svg
case 185:
return SVGIcons.bagCheckFill(height, width, className);
// bag-check.svg
case 186:
return SVGIcons.bagCheck(height, width, className);
// bag-dash-fill.svg
case 187:
return SVGIcons.bagDashFill(height, width, className);
// bag-dash.svg
case 188:
return SVGIcons.bagDash(height, width, className);
// bag-fill.svg
case 189:
return SVGIcons.bagFill(height, width, className);
// bag-heart-fill.svg
case 190:
return SVGIcons.bagHeartFill(height, width, className);
// bag-heart.svg
case 191:
return SVGIcons.bagHeart(height, width, className);
// bag-plus-fill.svg
case 192:
return SVGIcons.bagPlusFill(height, width, className);
// bag-plus.svg
case 193:
return SVGIcons.bagPlus(height, width, className);
// bag-x-fill.svg
case 194:
return SVGIcons.bagXFill(height, width, className);
// bag-x.svg
case 195:
return SVGIcons.bagX(height, width, className);
// bag.svg
case 196:
return SVGIcons.bag(height, width, className);
// balloon-fill.svg
case 197:
return SVGIcons.balloonFill(height, width, className);
// balloon-heart-fill.svg
case 198:
return SVGIcons.balloonHeartFill(height, width, className);
// balloon-heart.svg
case 199:
return SVGIcons.balloonHeart(height, width, className);
// balloon.svg
case 200:
return SVGIcons.balloon(height, width, className);
// ban-fill.svg
case 201:
return SVGIcons.banFill(height, width, className);
// ban.svg
case 202:
return SVGIcons.ban(height, width, className);
// bandaid-fill.svg
case 203:
return SVGIcons.bandaidFill(height, width, className);
// bandaid.svg
case 204:
return SVGIcons.bandaid(height, width, className);
// bank.svg
case 205:
return SVGIcons.bank(height, width, className);
// bank2.svg
case 206:
return SVGIcons.bank2(height, width, className);
// bar-chart-fill.svg
case 207:
return SVGIcons.barChartFill(height, width, className);
// bar-chart-line-fill.svg
case 208:
return SVGIcons.barChartLineFill(height, width, className);
// bar-chart-line.svg
case 209:
return SVGIcons.barChartLine(height, width, className);
// bar-chart-steps.svg
case 210:
return SVGIcons.barChartSteps(height, width, className);
// bar-chart.svg
case 211:
return SVGIcons.barChart(height, width, className);
// basket-fill.svg
case 212:
return SVGIcons.basketFill(height, width, className);
// basket.svg
case 213:
return SVGIcons.basket(height, width, className);
// basket2-fill.svg
case 214:
return SVGIcons.basket2Fill(height, width, className);
// basket2.svg
case 215:
return SVGIcons.basket2(height, width, className);
// basket3-fill.svg
case 216:
return SVGIcons.basket3Fill(height, width, className);
// basket3.svg
case 217:
return SVGIcons.basket3(height, width, className);
// battery-charging.svg
case 218:
return SVGIcons.batteryCharging(height, width, className);
// battery-full.svg
case 219:
return SVGIcons.batteryFull(height, width, className);
// battery-half.svg
case 220:
return SVGIcons.batteryHalf(height, width, className);
// battery-low.svg
case 221:
return SVGIcons.batteryLow(height, width, className);
// battery.svg
case 222:
return SVGIcons.battery(height, width, className);
// beaker-fill.svg
case 223:
return SVGIcons.beakerFill(height, width, className);
// beaker.svg
case 224:
return SVGIcons.beaker(height, width, className);
// behance.svg
case 225:
return SVGIcons.behance(height, width, className);
// bell-fill.svg
case 226:
return SVGIcons.bellFill(height, width, className);
// bell-slash-fill.svg
case 227:
return SVGIcons.bellSlashFill(height, width, className);
// bell-slash.svg
case 228:
return SVGIcons.bellSlash(height, width, className);
// bell.svg
case 229:
return SVGIcons.bell(height, width, className);
// bezier.svg
case 230:
return SVGIcons.bezier(height, width, className);
// bezier2.svg
case 231:
return SVGIcons.bezier2(height, width, className);
// bicycle.svg
case 232:
return SVGIcons.bicycle(height, width, className);
// bing.svg
case 233:
return SVGIcons.bing(height, width, className);
// binoculars-fill.svg
case 234:
return SVGIcons.binocularsFill(height, width, className);
// binoculars.svg
case 235:
return SVGIcons.binoculars(height, width, className);
// blockquote-left.svg
case 236:
return SVGIcons.blockquoteLeft(height, width, className);
// blockquote-right.svg
case 237:
return SVGIcons.blockquoteRight(height, width, className);
// bluesky.svg
case 238:
return SVGIcons.bluesky(height, width, className);
// bluetooth.svg
case 239:
return SVGIcons.bluetooth(height, width, className);
// body-text.svg
case 240:
return SVGIcons.bodyText(height, width, className);
// book-fill.svg
case 241:
return SVGIcons.bookFill(height, width, className);
// book-half.svg
case 242:
return SVGIcons.bookHalf(height, width, className);
// book.svg
case 243:
return SVGIcons.book(height, width, className);
// bookmark-check-fill.svg
case 244:
return SVGIcons.bookmarkCheckFill(height, width, className);
// bookmark-check.svg
case 245:
return SVGIcons.bookmarkCheck(height, width, className);
// bookmark-dash-fill.svg
case 246:
return SVGIcons.bookmarkDashFill(height, width, className);
// bookmark-dash.svg
case 247:
return SVGIcons.bookmarkDash(height, width, className);
// bookmark-fill.svg
case 248:
return SVGIcons.bookmarkFill(height, width, className);
// bookmark-heart-fill.svg
case 249:
return SVGIcons.bookmarkHeartFill(height, width, className);
// bookmark-heart.svg
case 250:
return SVGIcons.bookmarkHeart(height, width, className);
// bookmark-plus-fill.svg
case 251:
return SVGIcons.bookmarkPlusFill(height, width, className);
// bookmark-plus.svg
case 252:
return SVGIcons.bookmarkPlus(height, width, className);
// bookmark-star-fill.svg
case 253:
return SVGIcons.bookmarkStarFill(height, width, className);
// bookmark-star.svg
case 254:
return SVGIcons.bookmarkStar(height, width, className);
// bookmark-x-fill.svg
case 255:
return SVGIcons.bookmarkXFill(height, width, className);
// bookmark-x.svg
case 256:
return SVGIcons.bookmarkX(height, width, className);
// bookmark.svg
case 257:
return SVGIcons.bookmark(height, width, className);
// bookmarks-fill.svg
case 258:
return SVGIcons.bookmarksFill(height, width, className);
// bookmarks.svg
case 259:
return SVGIcons.bookmarks(height, width, className);
// bookshelf.svg
case 260:
return SVGIcons.bookshelf(height, width, className);
// boombox-fill.svg
case 261:
return SVGIcons.boomboxFill(height, width, className);
// boombox.svg
case 262:
return SVGIcons.boombox(height, width, className);
// bootstrap-fill.svg
case 263:
return SVGIcons.bootstrapFill(height, width, className);
// bootstrap-reboot.svg
case 264:
return SVGIcons.bootstrapReboot(height, width, className);
// bootstrap.svg
case 265:
return SVGIcons.bootstrap(height, width, className);
// border-all.svg
case 266:
return SVGIcons.borderAll(height, width, className);
// border-bottom.svg
case 267:
return SVGIcons.borderBottom(height, width, className);
// border-center.svg
case 268:
return SVGIcons.borderCenter(height, width, className);
// border-inner.svg
case 269:
return SVGIcons.borderInner(height, width, className);
// border-left.svg
case 270:
return SVGIcons.borderLeft(height, width, className);
// border-middle.svg
case 271:
return SVGIcons.borderMiddle(height, width, className);
// border-outer.svg
case 272:
return SVGIcons.borderOuter(height, width, className);
// border-right.svg
case 273:
return SVGIcons.borderRight(height, width, className);
// border-style.svg
case 274:
return SVGIcons.borderStyle(height, width, className);
// border-top.svg
case 275:
return SVGIcons.borderTop(height, width, className);
// border-width.svg
case 276:
return SVGIcons.borderWidth(height, width, className);
// border.svg
case 277:
return SVGIcons.border(height, width, className);
// bounding-box-circles.svg
case 278:
return SVGIcons.boundingBoxCircles(height, width, className);
// bounding-box.svg
case 279:
return SVGIcons.boundingBox(height, width, className);
// box-arrow-down-left.svg
case 280:
return SVGIcons.boxArrowDownLeft(height, width, className);
// box-arrow-down-right.svg
case 281:
return SVGIcons.boxArrowDownRight(height, width, className);
// box-arrow-down.svg
case 282:
return SVGIcons.boxArrowDown(height, width, className);
// box-arrow-in-down-left.svg
case 283:
return SVGIcons.boxArrowInDownLeft(height, width, className);
// box-arrow-in-down-right.svg
case 284:
return SVGIcons.boxArrowInDownRight(height, width, className);
// box-arrow-in-down.svg
case 285:
return SVGIcons.boxArrowInDown(height, width, className);
// box-arrow-in-left.svg
case 286:
return SVGIcons.boxArrowInLeft(height, width, className);
// box-arrow-in-right.svg
case 287:
return SVGIcons.boxArrowInRight(height, width, className);
// box-arrow-in-up-left.svg
case 288:
return SVGIcons.boxArrowInUpLeft(height, width, className);
// box-arrow-in-up-right.svg
case 289:
return SVGIcons.boxArrowInUpRight(height, width, className);
// box-arrow-in-up.svg
case 290:
return SVGIcons.boxArrowInUp(height, width, className);
// box-arrow-left.svg
case 291:
return SVGIcons.boxArrowLeft(height, width, className);
// box-arrow-right.svg
case 292:
return SVGIcons.boxArrowRight(height, width, className);
// box-arrow-up-left.svg
case 293:
return SVGIcons.boxArrowUpLeft(height, width, className);
// box-arrow-up-right.svg
case 294:
return SVGIcons.boxArrowUpRight(height, width, className);
// box-arrow-up.svg
case 295:
return SVGIcons.boxArrowUp(height, width, className);
// box-fill.svg
case 296:
return SVGIcons.boxFill(height, width, className);
// box-seam-fill.svg
case 297:
return SVGIcons.boxSeamFill(height, width, className);
// box-seam.svg
case 298:
return SVGIcons.boxSeam(height, width, className);
// box.svg
case 299:
return SVGIcons.box(height, width, className);
// box2-fill.svg
case 300:
return SVGIcons.box2Fill(height, width, className);
// box2-heart-fill.svg
case 301:
return SVGIcons.box2HeartFill(height, width, className);
// box2-heart.svg
case 302:
return SVGIcons.box2Heart(height, width, className);
// box2.svg
case 303:
return SVGIcons.box2(height, width, className);
// boxes.svg
case 304:
return SVGIcons.boxes(height, width, className);
// braces-asterisk.svg
case 305:
return SVGIcons.bracesAsterisk(height, width, className);
// braces.svg
case 306:
return SVGIcons.braces(height, width, className);
// bricks.svg
case 307:
return SVGIcons.bricks(height, width, className);
// briefcase-fill.svg
case 308:
return SVGIcons.briefcaseFill(height, width, className);
// briefcase.svg
case 309:
return SVGIcons.briefcase(height, width, className);
// brightness-alt-high-fill.svg
case 310:
return SVGIcons.brightnessAltHighFill(height, width, className);
// brightness-alt-high.svg
case 311:
return SVGIcons.brightnessAltHigh(height, width, className);
// brightness-alt-low-fill.svg
case 312:
return SVGIcons.brightnessAltLowFill(height, width, className);
// brightness-alt-low.svg
case 313:
return SVGIcons.brightnessAltLow(height, width, className);
// brightness-high-fill.svg
case 314:
return SVGIcons.brightnessHighFill(height, width, className);
// brightness-high.svg
case 315:
return SVGIcons.brightnessHigh(height, width, className);
// brightness-low-fill.svg
case 316:
return SVGIcons.brightnessLowFill(height, width, className);
// brightness-low.svg
case 317:
return SVGIcons.brightnessLow(height, width, className);
// brilliance.svg
case 318:
return SVGIcons.brilliance(height, width, className);
// broadcast-pin.svg
case 319:
return SVGIcons.broadcastPin(height, width, className);
// broadcast.svg
case 320:
return SVGIcons.broadcast(height, width, className);
// browser-chrome.svg
case 321:
return SVGIcons.browserChrome(height, width, className);
// browser-edge.svg
case 322:
return SVGIcons.browserEdge(height, width, className);
// browser-firefox.svg
case 323:
return SVGIcons.browserFirefox(height, width, className);
// browser-safari.svg
case 324:
return SVGIcons.browserSafari(height, width, className);
// brush-fill.svg
case 325:
return SVGIcons.brushFill(height, width, className);
// brush.svg
case 326:
return SVGIcons.brush(height, width, className);
// bucket-fill.svg
case 327:
return SVGIcons.bucketFill(height, width, className);
// bucket.svg
case 328:
return SVGIcons.bucket(height, width, className);
// bug-fill.svg
case 329:
return SVGIcons.bugFill(height, width, className);
// bug.svg
case 330:
return SVGIcons.bug(height, width, className);
// building-add.svg
case 331:
return SVGIcons.buildingAdd(height, width, className);
// building-check.svg
case 332:
return SVGIcons.buildingCheck(height, width, className);
// building-dash.svg
case 333:
return SVGIcons.buildingDash(height, width, className);
// building-down.svg
case 334:
return SVGIcons.buildingDown(height, width, className);
// building-exclamation.svg
case 335:
return SVGIcons.buildingExclamation(height, width, className);
// building-fill-add.svg
case 336:
return SVGIcons.buildingFillAdd(height, width, className);
// building-fill-check.svg
case 337:
return SVGIcons.buildingFillCheck(height, width, className);
// building-fill-dash.svg
case 338:
return SVGIcons.buildingFillDash(height, width, className);
// building-fill-down.svg
case 339:
return SVGIcons.buildingFillDown(height, width, className);
// building-fill-exclamation.svg
case 340:
return SVGIcons.buildingFillExclamation(height, width, className);
// building-fill-gear.svg
case 341:
return SVGIcons.buildingFillGear(height, width, className);
// building-fill-lock.svg
case 342:
return SVGIcons.buildingFillLock(height, width, className);
// building-fill-slash.svg
case 343:
return SVGIcons.buildingFillSlash(height, width, className);
// building-fill-up.svg
case 344:
return SVGIcons.buildingFillUp(height, width, className);
// building-fill-x.svg
case 345:
return SVGIcons.buildingFillX(height, width, className);
// building-fill.svg
case 346:
return SVGIcons.buildingFill(height, width, className);
// building-gear.svg
case 347:
return SVGIcons.buildingGear(height, width, className);
// building-lock.svg
case 348:
return SVGIcons.buildingLock(height, width, className);
// building-slash.svg
case 349:
return SVGIcons.buildingSlash(height, width, className);
// building-up.svg
case 350:
return SVGIcons.buildingUp(height, width, className);
// building-x.svg
case 351:
return SVGIcons.buildingX(height, width, className);
// building.svg
case 352:
return SVGIcons.building(height, width, className);
// buildings-fill.svg
case 353:
return SVGIcons.buildingsFill(height, width, className);
// buildings.svg
case 354:
return SVGIcons.buildings(height, width, className);
// bullseye.svg
case 355:
return SVGIcons.bullseye(height, width, className);
// bus-front-fill.svg
case 356:
return SVGIcons.busFrontFill(height, width, className);
// bus-front.svg
case 357:
return SVGIcons.busFront(height, width, className);
// c-circle-fill.svg
case 358:
return SVGIcons.cCircleFill(height, width, className);
// c-circle.svg
case 359:
return SVGIcons.cCircle(height, width, className);
// c-square-fill.svg
case 360:
return SVGIcons.cSquareFill(height, width, className);
// c-square.svg
case 361:
return SVGIcons.cSquare(height, width, className);
// cake-fill.svg
case 362:
return SVGIcons.cakeFill(height, width, className);
// cake.svg
case 363:
return SVGIcons.cake(height, width, className);
// cake2-fill.svg
case 364:
return SVGIcons.cake2Fill(height, width, className);
// cake2.svg
case 365:
return SVGIcons.cake2(height, width, className);
// calculator-fill.svg
case 366:
return SVGIcons.calculatorFill(height, width, className);
// calculator.svg
case 367:
return SVGIcons.calculator(height, width, className);
// calendar-check-fill.svg
case 368:
return SVGIcons.calendarCheckFill(height, width, className);
// calendar-check.svg
case 369:
return SVGIcons.calendarCheck(height, width, className);
// calendar-date-fill.svg
case 370:
return SVGIcons.calendarDateFill(height, width, className);
// calendar-date.svg
case 371:
return SVGIcons.calendarDate(height, width, className);
// calendar-day-fill.svg
case 372:
return SVGIcons.calendarDayFill(height, width, className);
// calendar-day.svg
case 373:
return SVGIcons.calendarDay(height, width, className);
// calendar-event-fill.svg
case 374:
return SVGIcons.calendarEventFill(height, width, className);
// calendar-event.svg
case 375:
return SVGIcons.calendarEvent(height, width, className);
// calendar-fill.svg
case 376:
return SVGIcons.calendarFill(height, width, className);
// calendar-heart-fill.svg
case 377:
return SVGIcons.calendarHeartFill(height, width, className);
// calendar-heart.svg
case 378:
return SVGIcons.calendarHeart(height, width, className);
// calendar-minus-fill.svg
case 379:
return SVGIcons.calendarMinusFill(height, width, className);
// calendar-minus.svg
case 380:
return SVGIcons.calendarMinus(height, width, className);
// calendar-month-fill.svg
case 381:
return SVGIcons.calendarMonthFill(height, width, className);
// calendar-month.svg
case 382:
return SVGIcons.calendarMonth(height, width, className);
// calendar-plus-fill.svg
case 383:
return SVGIcons.calendarPlusFill(height, width, className);
// calendar-plus.svg
case 384:
return SVGIcons.calendarPlus(height, width, className);
// calendar-range-fill.svg
case 385:
return SVGIcons.calendarRangeFill(height, width, className);
// calendar-range.svg
case 386:
return SVGIcons.calendarRange(height, width, className);
// calendar-week-fill.svg
case 387:
return SVGIcons.calendarWeekFill(height, width, className);
// calendar-week.svg
case 388:
return SVGIcons.calendarWeek(height, width, className);
// calendar-x-fill.svg
case 389:
return SVGIcons.calendarXFill(height, width, className);
// calendar-x.svg
case 390:
return SVGIcons.calendarX(height, width, className);
// calendar.svg
case 391:
return SVGIcons.calendar(height, width, className);
// calendar2-check-fill.svg
case 392:
return SVGIcons.calendar2CheckFill(height, width, className);
// calendar2-check.svg
case 393:
return SVGIcons.calendar2Check(height, width, className);
// calendar2-date-fill.svg
case 394:
return SVGIcons.calendar2DateFill(height, width, className);
// calendar2-date.svg
case 395:
return SVGIcons.calendar2Date(height, width, className);
// calendar2-day-fill.svg
case 396:
return SVGIcons.calendar2DayFill(height, width, className);
// calendar2-day.svg
case 397:
return SVGIcons.calendar2Day(height, width, className);
// calendar2-event-fill.svg
case 398:
return SVGIcons.calendar2EventFill(height, width, className);
// calendar2-event.svg
case 399:
return SVGIcons.calendar2Event(height, width, className);
// calendar2-fill.svg
case 400:
return SVGIcons.calendar2Fill(height, width, className);
// calendar2-heart-fill.svg
case 401:
return SVGIcons.calendar2HeartFill(height, width, className);
// calendar2-heart.svg
case 402:
return SVGIcons.calendar2Heart(height, width, className);
// calendar2-minus-fill.svg
case 403:
return SVGIcons.calendar2MinusFill(height, width, className);
// calendar2-minus.svg
case 404:
return SVGIcons.calendar2Minus(height, width, className);
// calendar2-month-fill.svg
case 405:
return SVGIcons.calendar2MonthFill(height, width, className);
// calendar2-month.svg
case 406:
return SVGIcons.calendar2Month(height, width, className);
// calendar2-plus-fill.svg
case 407:
return SVGIcons.calendar2PlusFill(height, width, className);
// calendar2-plus.svg
case 408:
return SVGIcons.calendar2Plus(height, width, className);
// calendar2-range-fill.svg
case 409:
return SVGIcons.calendar2RangeFill(height, width, className);
// calendar2-range.svg
case 410:
return SVGIcons.calendar2Range(height, width, className);
// calendar2-week-fill.svg
case 411:
return SVGIcons.calendar2WeekFill(height, width, className);
// calendar2-week.svg
case 412:
return SVGIcons.calendar2Week(height, width, className);
// calendar2-x-fill.svg
case 413:
return SVGIcons.calendar2XFill(height, width, className);
// calendar2-x.svg
case 414:
return SVGIcons.calendar2X(height, width, className);
// calendar2.svg
case 415:
return SVGIcons.calendar2(height, width, className);
// calendar3-event-fill.svg
case 416:
return SVGIcons.calendar3EventFill(height, width, className);
// calendar3-event.svg
case 417:
return SVGIcons.calendar3Event(height, width, className);
// calendar3-fill.svg
case 418:
return SVGIcons.calendar3Fill(height, width, className);
// calendar3-range-fill.svg
case 419:
return SVGIcons.calendar3RangeFill(height, width, className);
// calendar3-range.svg
case 420:
return SVGIcons.calendar3Range(height, width, className);
// calendar3-week-fill.svg
case 421:
return SVGIcons.calendar3WeekFill(height, width, className);
// calendar3-week.svg
case 422:
return SVGIcons.calendar3Week(height, width, className);
// calendar3.svg
case 423:
return SVGIcons.calendar3(height, widt