├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── dist ├── icons │ ├── linear │ │ ├── arrows │ │ │ ├── anticlockwise-dashed.js │ │ │ ├── anticlockwise.js │ │ │ ├── button-down.js │ │ │ ├── button-off.js │ │ │ ├── button-on.js │ │ │ ├── button-up.js │ │ │ ├── check.js │ │ │ ├── circle-check.js │ │ │ ├── circle-down.js │ │ │ ├── circle-downleft.js │ │ │ ├── circle-downright.js │ │ │ ├── circle-left.js │ │ │ ├── circle-minus.js │ │ │ ├── circle-plus.js │ │ │ ├── circle-remove.js │ │ │ ├── circle-right.js │ │ │ ├── circle-up.js │ │ │ ├── circle-upleft.js │ │ │ ├── circle-upright.js │ │ │ ├── clockwise-dashed.js │ │ │ ├── clockwise.js │ │ │ ├── compress.js │ │ │ ├── deny.js │ │ │ ├── diagonal-left-to-right.js │ │ │ ├── diagonal-right-to-left.js │ │ │ ├── down-double.js │ │ │ ├── down.js │ │ │ ├── downleft.js │ │ │ ├── downright.js │ │ │ ├── drag-down-dashed.js │ │ │ ├── drag-down.js │ │ │ ├── drag-horiz.js │ │ │ ├── drag-left-dashed.js │ │ │ ├── drag-left.js │ │ │ ├── drag-right-dashed.js │ │ │ ├── drag-right.js │ │ │ ├── drag-up-dashed.js │ │ │ ├── drag-up.js │ │ │ ├── drag-vert.js │ │ │ ├── exclamation.js │ │ │ ├── expand-diagonal.js │ │ │ ├── expand-horizontal.js │ │ │ ├── expand-vertical.js │ │ │ ├── expand.js │ │ │ ├── fit-horizontal.js │ │ │ ├── fit-vertical.js │ │ │ ├── glide-horizontal.js │ │ │ ├── glide-vertical.js │ │ │ ├── glide.js │ │ │ ├── hamburger-list.js │ │ │ ├── hamburger-menu.js │ │ │ ├── horizontal.js │ │ │ ├── info.js │ │ │ ├── keyboard-alt.js │ │ │ ├── keyboard-cmd.js │ │ │ ├── keyboard-delete.js │ │ │ ├── keyboard-down.js │ │ │ ├── keyboard-left.js │ │ │ ├── keyboard-return.js │ │ │ ├── keyboard-right.js │ │ │ ├── keyboard-shift.js │ │ │ ├── keyboard-tab.js │ │ │ ├── keyboard-up.js │ │ │ ├── left-double.js │ │ │ ├── left.js │ │ │ ├── minus.js │ │ │ ├── move-bottom.js │ │ │ ├── move-left.js │ │ │ ├── move-right.js │ │ │ ├── move-top.js │ │ │ ├── move.js │ │ │ ├── plus.js │ │ │ ├── question.js │ │ │ ├── remove.js │ │ │ ├── right-double.js │ │ │ ├── right.js │ │ │ ├── rotate-anti-dashed.js │ │ │ ├── rotate-anti.js │ │ │ ├── rotate-dashed.js │ │ │ ├── rotate.js │ │ │ ├── shrink-diagonal-short.js │ │ │ ├── shrink-diagonal.js │ │ │ ├── shrink-horizontal-short.js │ │ │ ├── shrink-horizontal.js │ │ │ ├── shrink-vertical-short.js │ │ │ ├── shrink-vertical.js │ │ │ ├── shrink.js │ │ │ ├── sign-down.js │ │ │ ├── sign-left.js │ │ │ ├── sign-right.js │ │ │ ├── sign-up.js │ │ │ ├── slide-downleft.js │ │ │ ├── slide-downright.js │ │ │ ├── slide-leftdown.js │ │ │ ├── slide-leftup.js │ │ │ ├── slide-rightdown.js │ │ │ ├── slide-rightup.js │ │ │ ├── slide-upleft.js │ │ │ ├── slide-upright.js │ │ │ ├── slim-down-dashed.js │ │ │ ├── slim-down.js │ │ │ ├── slim-left-dashed.js │ │ │ ├── slim-left.js │ │ │ ├── slim-right-dashed.js │ │ │ ├── slim-right.js │ │ │ ├── slim-up-dashed.js │ │ │ ├── slim-up.js │ │ │ ├── square-check.js │ │ │ ├── square-down.js │ │ │ ├── square-downleft.js │ │ │ ├── square-downright.js │ │ │ ├── square-left.js │ │ │ ├── square-minus.js │ │ │ ├── square-plus.js │ │ │ ├── square-remove.js │ │ │ ├── square-right.js │ │ │ ├── square-up.js │ │ │ ├── square-upleft.js │ │ │ ├── square-upright.js │ │ │ ├── squares.js │ │ │ ├── stretch-diagonal-left-to-right-crossed.js │ │ │ ├── stretch-diagonal-left-to-right.js │ │ │ ├── stretch-diagonal-right-to-left-crossed.js │ │ │ ├── stretch-diagonal-right-to-left.js │ │ │ ├── stretch-horizontal-crossed.js │ │ │ ├── stretch-horizontal.js │ │ │ ├── stretch-vertical-crossed.js │ │ │ ├── stretch-vertical.js │ │ │ ├── switch-horizontal.js │ │ │ ├── switch-vertical.js │ │ │ ├── up-double.js │ │ │ ├── up.js │ │ │ ├── upleft.js │ │ │ ├── upright.js │ │ │ └── vertical.js │ │ ├── basic │ │ │ ├── accelerator.js │ │ │ ├── alarm.js │ │ │ ├── anchor.js │ │ │ ├── anticlockwise.js │ │ │ ├── archive-full.js │ │ │ ├── archive.js │ │ │ ├── ban.js │ │ │ ├── battery-charge.js │ │ │ ├── battery-empty.js │ │ │ ├── battery-full.js │ │ │ ├── battery-half.js │ │ │ ├── bolt.js │ │ │ ├── book-pen.js │ │ │ ├── book-pencil.js │ │ │ ├── book.js │ │ │ ├── bookmark.js │ │ │ ├── calculator.js │ │ │ ├── calendar.js │ │ │ ├── cards-diamonds.js │ │ │ ├── cards-hearts.js │ │ │ ├── case.js │ │ │ ├── chronometer.js │ │ │ ├── clessidre.js │ │ │ ├── clock.js │ │ │ ├── clockwise.js │ │ │ ├── cloud.js │ │ │ ├── clubs.js │ │ │ ├── compass.js │ │ │ ├── cup.js │ │ │ ├── database.js │ │ │ ├── diamonds.js │ │ │ ├── display.js │ │ │ ├── download.js │ │ │ ├── exclamation.js │ │ │ ├── eye-closed.js │ │ │ ├── eye.js │ │ │ ├── female.js │ │ │ ├── flag-flutter.js │ │ │ ├── flag.js │ │ │ ├── floppydisk.js │ │ │ ├── folder-multiple.js │ │ │ ├── folder.js │ │ │ ├── gear.js │ │ │ ├── geolocalize-map.js │ │ │ ├── geolocalize.js │ │ │ ├── globe.js │ │ │ ├── gunsight.js │ │ │ ├── hammer.js │ │ │ ├── headset.js │ │ │ ├── heart-broken.js │ │ │ ├── heart.js │ │ │ ├── helm.js │ │ │ ├── home.js │ │ │ ├── info.js │ │ │ ├── ipod.js │ │ │ ├── joypad.js │ │ │ ├── key.js │ │ │ ├── keyboard.js │ │ │ ├── laptop.js │ │ │ ├── life-buoy.js │ │ │ ├── lightbulb.js │ │ │ ├── link.js │ │ │ ├── lock-open.js │ │ │ ├── lock.js │ │ │ ├── magic-mouse.js │ │ │ ├── magnifier-minus.js │ │ │ ├── magnifier-plus.js │ │ │ ├── magnifier.js │ │ │ ├── mail-multiple.js │ │ │ ├── mail-open-text.js │ │ │ ├── mail-open.js │ │ │ ├── mail.js │ │ │ ├── male.js │ │ │ ├── map.js │ │ │ ├── message-multiple.js │ │ │ ├── message-txt.js │ │ │ ├── message.js │ │ │ ├── mixer.js │ │ │ ├── mouse.js │ │ │ ├── notebook-pen.js │ │ │ ├── notebook-pencil.js │ │ │ ├── notebook.js │ │ │ ├── paperplane.js │ │ │ ├── pencil-ruler-pen.js │ │ │ ├── pencil-ruler.js │ │ │ ├── photo.js │ │ │ ├── picture-multiple.js │ │ │ ├── picture.js │ │ │ ├── pin-circle.js │ │ │ ├── pin.js │ │ │ ├── postcard-multiple.js │ │ │ ├── postcard.js │ │ │ ├── printer.js │ │ │ ├── question.js │ │ │ ├── rss.js │ │ │ ├── server-cloud.js │ │ │ ├── server-download.js │ │ │ ├── server-upload.js │ │ │ ├── server.js │ │ │ ├── settings.js │ │ │ ├── share.js │ │ │ ├── sheet-multiple.js │ │ │ ├── sheet-pen.js │ │ │ ├── sheet-pencil.js │ │ │ ├── sheet-txt.js │ │ │ ├── sheet.js │ │ │ ├── signs.js │ │ │ ├── smartphone.js │ │ │ ├── spades.js │ │ │ ├── spread-bookmark.js │ │ │ ├── spread-text-bookmark.js │ │ │ ├── spread-text.js │ │ │ ├── spread.js │ │ │ ├── star.js │ │ │ ├── tablet.js │ │ │ ├── target.js │ │ │ ├── todo-pen.js │ │ │ ├── todo-pencil.js │ │ │ ├── todo-txt.js │ │ │ ├── todo.js │ │ │ ├── todolist-pen.js │ │ │ ├── todolist-pencil.js │ │ │ ├── trashcan-full.js │ │ │ ├── trashcan-refresh.js │ │ │ ├── trashcan-remove.js │ │ │ ├── trashcan.js │ │ │ ├── upload.js │ │ │ ├── usb.js │ │ │ ├── video.js │ │ │ ├── watch.js │ │ │ ├── webpage-img-txt.js │ │ │ ├── webpage-multiple.js │ │ │ ├── webpage-txt.js │ │ │ ├── webpage.js │ │ │ └── world.js │ │ ├── ecommerce │ │ │ ├── bag-check.js │ │ │ ├── bag-cloud.js │ │ │ ├── bag-download.js │ │ │ ├── bag-minus.js │ │ │ ├── bag-plus.js │ │ │ ├── bag-refresh.js │ │ │ ├── bag-remove.js │ │ │ ├── bag-search.js │ │ │ ├── bag-upload.js │ │ │ ├── bag.js │ │ │ ├── banknote.js │ │ │ ├── banknotes.js │ │ │ ├── basket-check.js │ │ │ ├── basket-cloud.js │ │ │ ├── basket-download.js │ │ │ ├── basket-minus.js │ │ │ ├── basket-plus.js │ │ │ ├── basket-refresh.js │ │ │ ├── basket-remove.js │ │ │ ├── basket-search.js │ │ │ ├── basket-upload.js │ │ │ ├── basket.js │ │ │ ├── bath.js │ │ │ ├── cart-check.js │ │ │ ├── cart-cloud.js │ │ │ ├── cart-content.js │ │ │ ├── cart-download.js │ │ │ ├── cart-minus.js │ │ │ ├── cart-plus.js │ │ │ ├── cart-refresh.js │ │ │ ├── cart-remove.js │ │ │ ├── cart-search.js │ │ │ ├── cart-upload.js │ │ │ ├── cart.js │ │ │ ├── cent.js │ │ │ ├── colon.js │ │ │ ├── creditcard.js │ │ │ ├── diamond.js │ │ │ ├── dollar.js │ │ │ ├── euro.js │ │ │ ├── franc.js │ │ │ ├── gift.js │ │ │ ├── graph-column.js │ │ │ ├── graph-decrease.js │ │ │ ├── graph-increase.js │ │ │ ├── graph-line.js │ │ │ ├── graph-pie.js │ │ │ ├── guarani.js │ │ │ ├── kips.js │ │ │ ├── lira.js │ │ │ ├── megaphone.js │ │ │ ├── money.js │ │ │ ├── naira.js │ │ │ ├── pesos.js │ │ │ ├── pound.js │ │ │ ├── receipt-bath.js │ │ │ ├── receipt-cent.js │ │ │ ├── receipt-dollar.js │ │ │ ├── receipt-euro.js │ │ │ ├── receipt-franc.js │ │ │ ├── receipt-guarani.js │ │ │ ├── receipt-kips.js │ │ │ ├── receipt-lira.js │ │ │ ├── receipt-naira.js │ │ │ ├── receipt-pesos.js │ │ │ ├── receipt-pound.js │ │ │ ├── receipt-rublo.js │ │ │ ├── receipt-rupee.js │ │ │ ├── receipt-tugrik.js │ │ │ ├── receipt-won.js │ │ │ ├── receipt-yen.js │ │ │ ├── receipt.js │ │ │ ├── recept-colon.js │ │ │ ├── rublo.js │ │ │ ├── rupee.js │ │ │ ├── safe.js │ │ │ ├── sale.js │ │ │ ├── sales.js │ │ │ ├── ticket.js │ │ │ ├── tugriks.js │ │ │ ├── wallet.js │ │ │ ├── won.js │ │ │ └── yen.js │ │ ├── elaboration │ │ │ ├── bookmark-checck.js │ │ │ ├── bookmark-minus.js │ │ │ ├── bookmark-plus.js │ │ │ ├── bookmark-remove.js │ │ │ ├── briefcase-check.js │ │ │ ├── briefcase-download.js │ │ │ ├── briefcase-flagged.js │ │ │ ├── briefcase-minus.js │ │ │ ├── briefcase-plus.js │ │ │ ├── briefcase-refresh.js │ │ │ ├── briefcase-remove.js │ │ │ ├── briefcase-search.js │ │ │ ├── briefcase-star.js │ │ │ ├── briefcase-upload.js │ │ │ ├── browser-check.js │ │ │ ├── browser-download.js │ │ │ ├── browser-minus.js │ │ │ ├── browser-plus.js │ │ │ ├── browser-refresh.js │ │ │ ├── browser-remove.js │ │ │ ├── browser-search.js │ │ │ ├── browser-star.js │ │ │ ├── browser-upload.js │ │ │ ├── calendar-check.js │ │ │ ├── calendar-cloud.js │ │ │ ├── calendar-download.js │ │ │ ├── calendar-empty.js │ │ │ ├── calendar-flagged.js │ │ │ ├── calendar-heart.js │ │ │ ├── calendar-minus.js │ │ │ ├── calendar-next.js │ │ │ ├── calendar-noaccess.js │ │ │ ├── calendar-pencil.js │ │ │ ├── calendar-plus.js │ │ │ ├── calendar-previous.js │ │ │ ├── calendar-refresh.js │ │ │ ├── calendar-remove.js │ │ │ ├── calendar-search.js │ │ │ ├── calendar-star.js │ │ │ ├── calendar-upload.js │ │ │ ├── cloud-check.js │ │ │ ├── cloud-download.js │ │ │ ├── cloud-minus.js │ │ │ ├── cloud-noaccess.js │ │ │ ├── cloud-plus.js │ │ │ ├── cloud-refresh.js │ │ │ ├── cloud-remove.js │ │ │ ├── cloud-search.js │ │ │ ├── cloud-upload.js │ │ │ ├── document-check.js │ │ │ ├── document-cloud.js │ │ │ ├── document-download.js │ │ │ ├── document-flagged.js │ │ │ ├── document-graph.js │ │ │ ├── document-heart.js │ │ │ ├── document-minus.js │ │ │ ├── document-next.js │ │ │ ├── document-noaccess.js │ │ │ ├── document-note.js │ │ │ ├── document-pencil.js │ │ │ ├── document-picture.js │ │ │ ├── document-plus.js │ │ │ ├── document-previous.js │ │ │ ├── document-refresh.js │ │ │ ├── document-remove.js │ │ │ ├── document-search.js │ │ │ ├── document-star.js │ │ │ ├── document-upload.js │ │ │ ├── folder-check.js │ │ │ ├── folder-cloud.js │ │ │ ├── folder-document.js │ │ │ ├── folder-download.js │ │ │ ├── folder-flagged.js │ │ │ ├── folder-graph.js │ │ │ ├── folder-heart.js │ │ │ ├── folder-minus.js │ │ │ ├── folder-next.js │ │ │ ├── folder-noaccess.js │ │ │ ├── folder-note.js │ │ │ ├── folder-pencil.js │ │ │ ├── folder-picture.js │ │ │ ├── folder-plus.js │ │ │ ├── folder-previous.js │ │ │ ├── folder-refresh.js │ │ │ ├── folder-remove.js │ │ │ ├── folder-search.js │ │ │ ├── folder-star.js │ │ │ ├── folder-upload.js │ │ │ ├── mail-check.js │ │ │ ├── mail-cloud.js │ │ │ ├── mail-document.js │ │ │ ├── mail-download.js │ │ │ ├── mail-flagged.js │ │ │ ├── mail-heart.js │ │ │ ├── mail-next.js │ │ │ ├── mail-noaccess.js │ │ │ ├── mail-note.js │ │ │ ├── mail-pencil.js │ │ │ ├── mail-picture.js │ │ │ ├── mail-previous.js │ │ │ ├── mail-refresh.js │ │ │ ├── mail-remove.js │ │ │ ├── mail-search.js │ │ │ ├── mail-star.js │ │ │ ├── mail-upload.js │ │ │ ├── message-check.js │ │ │ ├── message-dots.js │ │ │ ├── message-happy.js │ │ │ ├── message-heart.js │ │ │ ├── message-minus.js │ │ │ ├── message-note.js │ │ │ ├── message-plus.js │ │ │ ├── message-refresh.js │ │ │ ├── message-remove.js │ │ │ ├── message-sad.js │ │ │ ├── smartphone-cloud.js │ │ │ ├── smartphone-heart.js │ │ │ ├── smartphone-noaccess.js │ │ │ ├── smartphone-note.js │ │ │ ├── smartphone-pencil.js │ │ │ ├── smartphone-picture.js │ │ │ ├── smartphone-refresh.js │ │ │ ├── smartphone-search.js │ │ │ ├── tablet-cloud.js │ │ │ ├── tablet-heart.js │ │ │ ├── tablet-noaccess.js │ │ │ ├── tablet-note.js │ │ │ ├── tablet-pencil.js │ │ │ ├── tablet-picture.js │ │ │ ├── tablet-refresh.js │ │ │ ├── tablet-search.js │ │ │ ├── todolist-check.js │ │ │ ├── todolist-cloud.js │ │ │ ├── todolist-download.js │ │ │ ├── todolist-flagged.js │ │ │ ├── todolist-minus.js │ │ │ ├── todolist-noaccess.js │ │ │ ├── todolist-pencil.js │ │ │ ├── todolist-plus.js │ │ │ ├── todolist-refresh.js │ │ │ ├── todolist-remove.js │ │ │ ├── todolist-search.js │ │ │ ├── todolist-star.js │ │ │ ├── todolist-upload.js │ │ │ └── todolist.js │ │ ├── music │ │ │ ├── beginning-button.js │ │ │ ├── bell.js │ │ │ ├── cd.js │ │ │ ├── diapason.js │ │ │ ├── eject-button.js │ │ │ ├── end-button.js │ │ │ ├── fastforward-button.js │ │ │ ├── headphones.js │ │ │ ├── ipod.js │ │ │ ├── loudspeaker.js │ │ │ ├── microphone-old.js │ │ │ ├── microphone.js │ │ │ ├── mixer.js │ │ │ ├── mute.js │ │ │ ├── note-multiple.js │ │ │ ├── note-single.js │ │ │ ├── pause-button.js │ │ │ ├── play-button.js │ │ │ ├── playlist.js │ │ │ ├── radio-ghettoblaster.js │ │ │ ├── radio-portable.js │ │ │ ├── record.js │ │ │ ├── recordplayer.js │ │ │ ├── repeat-button.js │ │ │ ├── rewind-button.js │ │ │ ├── shuffle-button.js │ │ │ ├── stop-button.js │ │ │ ├── tape.js │ │ │ ├── volume-down.js │ │ │ └── volume-up.js │ │ └── software │ │ │ ├── add-vectorpoint.js │ │ │ ├── box-oval.js │ │ │ ├── box-polygon.js │ │ │ ├── box-rectangle.js │ │ │ ├── box-roundedrectangle.js │ │ │ ├── character.js │ │ │ ├── crop.js │ │ │ ├── eyedropper.js │ │ │ ├── font-allcaps.js │ │ │ ├── font-baseline-shift.js │ │ │ ├── font-horizontal-scale.js │ │ │ ├── font-kerning.js │ │ │ ├── font-leading.js │ │ │ ├── font-size.js │ │ │ ├── font-smallcapital.js │ │ │ ├── font-smallcaps.js │ │ │ ├── font-strikethrough.js │ │ │ ├── font-tracking.js │ │ │ ├── font-underline.js │ │ │ ├── font-vertical-scale.js │ │ │ ├── horizontal-align-center.js │ │ │ ├── horizontal-align-left.js │ │ │ ├── horizontal-align-right.js │ │ │ ├── horizontal-distribute-center.js │ │ │ ├── horizontal-distribute-left.js │ │ │ ├── horizontal-distribute-right.js │ │ │ ├── indent-firstline.js │ │ │ ├── indent-left.js │ │ │ ├── indent-right.js │ │ │ ├── lasso.js │ │ │ ├── layers-three.js │ │ │ ├── layers-two.js │ │ │ ├── layout-2columns.js │ │ │ ├── layout-3columns.js │ │ │ ├── layout-4boxes.js │ │ │ ├── layout-4columns.js │ │ │ ├── layout-4lines.js │ │ │ ├── layout-8boxes.js │ │ │ ├── layout-header-2columns.js │ │ │ ├── layout-header-3columns.js │ │ │ ├── layout-header-4boxes.js │ │ │ ├── layout-header-4columns.js │ │ │ ├── layout-header-complex.js │ │ │ ├── layout-header-left-sidebar.js │ │ │ ├── layout-header-right-sidebar.js │ │ │ ├── layout-header-sideleft.js │ │ │ ├── layout-header-sideright.js │ │ │ ├── layout-header.js │ │ │ ├── layout-sidebar-left.js │ │ │ ├── layout-sidebar-right.js │ │ │ ├── layout.js │ │ │ ├── magnete.js │ │ │ ├── pages.js │ │ │ ├── paintbrush.js │ │ │ ├── paintbucket.js │ │ │ ├── paintroller.js │ │ │ ├── paragraph-align-left.js │ │ │ ├── paragraph-align-right.js │ │ │ ├── paragraph-center.js │ │ │ ├── paragraph-justify-all.js │ │ │ ├── paragraph-justify-center.js │ │ │ ├── paragraph-justify-left.js │ │ │ ├── paragraph-justify-right.js │ │ │ ├── paragraph-space-after.js │ │ │ ├── paragraph-space-before.js │ │ │ ├── paragraph.js │ │ │ ├── pathfinder-exclude.js │ │ │ ├── pathfinder-intersect.js │ │ │ ├── pathfinder-subtract.js │ │ │ ├── pathfinder-unite.js │ │ │ ├── pen-add.js │ │ │ ├── pen-remove.js │ │ │ ├── pen.js │ │ │ ├── pencil.js │ │ │ ├── polygonallasso.js │ │ │ ├── reflect-horizontal.js │ │ │ ├── reflect-vertical.js │ │ │ ├── remove-vectorpoint.js │ │ │ ├── scale-expand.js │ │ │ ├── scale-reduce.js │ │ │ ├── selection-oval.js │ │ │ ├── selection-polygon.js │ │ │ ├── selection-rectangle.js │ │ │ ├── selection-roundedrectangle.js │ │ │ ├── shape-oval.js │ │ │ ├── shape-polygon.js │ │ │ ├── shape-rectangle.js │ │ │ ├── shape-roundedrectangle.js │ │ │ ├── slice.js │ │ │ ├── transform-bezier.js │ │ │ ├── vector-box.js │ │ │ ├── vector-composite.js │ │ │ ├── vector-line.js │ │ │ ├── vertical-align-bottom.js │ │ │ ├── vertical-align-center.js │ │ │ ├── vertical-align-top.js │ │ │ ├── vertical-distribute-bottom.js │ │ │ ├── vertical-distribute-center.js │ │ │ └── vertical-distribute-top.js │ ├── linearicons │ │ ├── alarm.js │ │ ├── apartment.js │ │ ├── arrow-down-circle.js │ │ ├── arrow-down.js │ │ ├── arrow-left-circle.js │ │ ├── arrow-left.js │ │ ├── arrow-right-circle.js │ │ ├── arrow-right.js │ │ ├── arrow-up-circle.js │ │ ├── arrow-up.js │ │ ├── bicycle.js │ │ ├── bold.js │ │ ├── book.js │ │ ├── bookmark.js │ │ ├── briefcase.js │ │ ├── bubble.js │ │ ├── bug.js │ │ ├── bullhorn.js │ │ ├── bus.js │ │ ├── calendar-full.js │ │ ├── camera-video.js │ │ ├── camera.js │ │ ├── car.js │ │ ├── cart.js │ │ ├── chart-bars.js │ │ ├── checkmark-circle.js │ │ ├── chevron-down-circle.js │ │ ├── chevron-down.js │ │ ├── chevron-left-circle.js │ │ ├── chevron-left.js │ │ ├── chevron-right-circle.js │ │ ├── chevron-right.js │ │ ├── chevron-up-circle.js │ │ ├── chevron-up.js │ │ ├── circle-minus.js │ │ ├── clock.js │ │ ├── cloud-check.js │ │ ├── cloud-download.js │ │ ├── cloud-sync.js │ │ ├── cloud-upload.js │ │ ├── cloud.js │ │ ├── code.js │ │ ├── coffee-cup.js │ │ ├── cog.js │ │ ├── construction.js │ │ ├── crop.js │ │ ├── cross-circle.js │ │ ├── cross.js │ │ ├── database.js │ │ ├── diamond.js │ │ ├── dice.js │ │ ├── dinner.js │ │ ├── direction-ltr.js │ │ ├── direction-rtl.js │ │ ├── download.js │ │ ├── drop.js │ │ ├── earth.js │ │ ├── enter-down.js │ │ ├── enter.js │ │ ├── envelope.js │ │ ├── exit-up.js │ │ ├── exit.js │ │ ├── eye.js │ │ ├── file-add.js │ │ ├── file-empty.js │ │ ├── film-play.js │ │ ├── flag.js │ │ ├── frame-contract.js │ │ ├── frame-expand.js │ │ ├── funnel.js │ │ ├── gift.js │ │ ├── graduation-hat.js │ │ ├── hand.js │ │ ├── heart-pulse.js │ │ ├── heart.js │ │ ├── highlight.js │ │ ├── history.js │ │ ├── home.js │ │ ├── hourglass.js │ │ ├── inbox.js │ │ ├── indent-decrease.js │ │ ├── indent-increase.js │ │ ├── italic.js │ │ ├── keyboard.js │ │ ├── laptop-phone.js │ │ ├── laptop.js │ │ ├── layers.js │ │ ├── leaf.js │ │ ├── license.js │ │ ├── lighter.js │ │ ├── line-spacing.js │ │ ├── linearicons.js │ │ ├── link.js │ │ ├── list.js │ │ ├── location.js │ │ ├── lock.js │ │ ├── magic-wand.js │ │ ├── magnifier.js │ │ ├── map-marker.js │ │ ├── map.js │ │ ├── menu-circle.js │ │ ├── menu.js │ │ ├── mic.js │ │ ├── moon.js │ │ ├── move.js │ │ ├── music-note.js │ │ ├── mustache.js │ │ ├── neutral.js │ │ ├── page-break.js │ │ ├── paperclip.js │ │ ├── paw.js │ │ ├── pencil.js │ │ ├── phone-handset.js │ │ ├── phone.js │ │ ├── picture.js │ │ ├── pie-chart.js │ │ ├── pilcrow.js │ │ ├── plus-circle.js │ │ ├── pointer-down.js │ │ ├── pointer-left.js │ │ ├── pointer-right.js │ │ ├── pointer-up.js │ │ ├── poop.js │ │ ├── power-switch.js │ │ ├── printer.js │ │ ├── pushpin.js │ │ ├── question-circle.js │ │ ├── redo.js │ │ ├── rocket.js │ │ ├── sad.js │ │ ├── screen.js │ │ ├── select.js │ │ ├── shirt.js │ │ ├── smartphone.js │ │ ├── smile.js │ │ ├── sort-alpha-asc.js │ │ ├── sort-amount-asc.js │ │ ├── spell-check.js │ │ ├── star-empty.js │ │ ├── star-half.js │ │ ├── star.js │ │ ├── store.js │ │ ├── strikethrough.js │ │ ├── sun.js │ │ ├── sync.js │ │ ├── tablet.js │ │ ├── tag.js │ │ ├── text-align-center.js │ │ ├── text-align-justify.js │ │ ├── text-align-left.js │ │ ├── text-align-right.js │ │ ├── text-format-remove.js │ │ ├── text-format.js │ │ ├── text-size.js │ │ ├── thumbs-down.js │ │ ├── thumbs-up.js │ │ ├── train.js │ │ ├── trash.js │ │ ├── underline.js │ │ ├── undo.js │ │ ├── unlink.js │ │ ├── upload.js │ │ ├── user.js │ │ ├── users.js │ │ ├── volume-high.js │ │ ├── volume-low.js │ │ ├── volume-medium.js │ │ ├── volume.js │ │ ├── warning.js │ │ └── wheelchair.js │ ├── material │ │ ├── action │ │ │ ├── 3d-rotation.js │ │ │ ├── accessibility.js │ │ │ ├── accessible.js │ │ │ ├── account-balance-wallet.js │ │ │ ├── account-balance.js │ │ │ ├── account-box.js │ │ │ ├── account-circle.js │ │ │ ├── add-shopping-cart.js │ │ │ ├── alarm-add.js │ │ │ ├── alarm-off.js │ │ │ ├── alarm-on.js │ │ │ ├── alarm.js │ │ │ ├── android.js │ │ │ ├── announcement.js │ │ │ ├── aspect-ratio.js │ │ │ ├── assessment.js │ │ │ ├── assignment-ind.js │ │ │ ├── assignment-late.js │ │ │ ├── assignment-return.js │ │ │ ├── assignment-returned.js │ │ │ ├── assignment-turned-in.js │ │ │ ├── assignment.js │ │ │ ├── autorenew.js │ │ │ ├── backup.js │ │ │ ├── book.js │ │ │ ├── bookmark-border.js │ │ │ ├── bookmark.js │ │ │ ├── bug-report.js │ │ │ ├── build.js │ │ │ ├── cached.js │ │ │ ├── camera-enhance.js │ │ │ ├── card-giftcard.js │ │ │ ├── card-membership.js │ │ │ ├── card-travel.js │ │ │ ├── change-history.js │ │ │ ├── check-circle.js │ │ │ ├── chrome-reader-mode.js │ │ │ ├── class.js │ │ │ ├── code.js │ │ │ ├── compare-arrows.js │ │ │ ├── copyright.js │ │ │ ├── credit-card.js │ │ │ ├── dashboard.js │ │ │ ├── date-range.js │ │ │ ├── delete-forever.js │ │ │ ├── delete.js │ │ │ ├── description.js │ │ │ ├── dns.js │ │ │ ├── done-all.js │ │ │ ├── done.js │ │ │ ├── donut-large.js │ │ │ ├── donut-small.js │ │ │ ├── eject.js │ │ │ ├── euro-symbol.js │ │ │ ├── event-seat.js │ │ │ ├── event.js │ │ │ ├── exit-to-app.js │ │ │ ├── explore.js │ │ │ ├── extension.js │ │ │ ├── face.js │ │ │ ├── favorite-border.js │ │ │ ├── favorite.js │ │ │ ├── feedback.js │ │ │ ├── find-in-page.js │ │ │ ├── find-replace.js │ │ │ ├── fingerprint.js │ │ │ ├── flight-land.js │ │ │ ├── flight-takeoff.js │ │ │ ├── flip-to-back.js │ │ │ ├── flip-to-front.js │ │ │ ├── g-translate.js │ │ │ ├── gavel.js │ │ │ ├── get-app.js │ │ │ ├── gif.js │ │ │ ├── grade.js │ │ │ ├── group-work.js │ │ │ ├── help-outline.js │ │ │ ├── help.js │ │ │ ├── highlight-off.js │ │ │ ├── history.js │ │ │ ├── home.js │ │ │ ├── hourglass-empty.js │ │ │ ├── hourglass-full.js │ │ │ ├── http.js │ │ │ ├── https.js │ │ │ ├── important-devices.js │ │ │ ├── info-outline.js │ │ │ ├── info.js │ │ │ ├── input.js │ │ │ ├── invert-colors.js │ │ │ ├── label-outline.js │ │ │ ├── label.js │ │ │ ├── language.js │ │ │ ├── launch.js │ │ │ ├── lightbulb-outline.js │ │ │ ├── line-style.js │ │ │ ├── line-weight.js │ │ │ ├── list.js │ │ │ ├── lock-open.js │ │ │ ├── lock-outline.js │ │ │ ├── lock.js │ │ │ ├── loyalty.js │ │ │ ├── markunread-mailbox.js │ │ │ ├── motorcycle.js │ │ │ ├── note-add.js │ │ │ ├── offline-pin.js │ │ │ ├── opacity.js │ │ │ ├── open-in-browser.js │ │ │ ├── open-in-new.js │ │ │ ├── open-with.js │ │ │ ├── pageview.js │ │ │ ├── pan-tool.js │ │ │ ├── payment.js │ │ │ ├── perm-camera-mic.js │ │ │ ├── perm-contact-calendar.js │ │ │ ├── perm-data-setting.js │ │ │ ├── perm-device-information.js │ │ │ ├── perm-identity.js │ │ │ ├── perm-media.js │ │ │ ├── perm-phone-msg.js │ │ │ ├── perm-scan-wifi.js │ │ │ ├── pets.js │ │ │ ├── picture-in-picture-alt.js │ │ │ ├── picture-in-picture.js │ │ │ ├── play-for-work.js │ │ │ ├── polymer.js │ │ │ ├── power-settings-new.js │ │ │ ├── pregnant-woman.js │ │ │ ├── print.js │ │ │ ├── query-builder.js │ │ │ ├── question-answer.js │ │ │ ├── receipt.js │ │ │ ├── record-voice-over.js │ │ │ ├── redeem.js │ │ │ ├── remove-shopping-cart.js │ │ │ ├── reorder.js │ │ │ ├── report-problem.js │ │ │ ├── restore-page.js │ │ │ ├── restore.js │ │ │ ├── room.js │ │ │ ├── rounded-corner.js │ │ │ ├── rowing.js │ │ │ ├── schedule.js │ │ │ ├── search.js │ │ │ ├── settings-applications.js │ │ │ ├── settings-backup-restore.js │ │ │ ├── settings-bluetooth.js │ │ │ ├── settings-brightness.js │ │ │ ├── settings-cell.js │ │ │ ├── settings-ethernet.js │ │ │ ├── settings-input-antenna.js │ │ │ ├── settings-input-component.js │ │ │ ├── settings-input-composite.js │ │ │ ├── settings-input-hdmi.js │ │ │ ├── settings-input-svideo.js │ │ │ ├── settings-overscan.js │ │ │ ├── settings-phone.js │ │ │ ├── settings-power.js │ │ │ ├── settings-remote.js │ │ │ ├── settings-voice.js │ │ │ ├── settings.js │ │ │ ├── shop-two.js │ │ │ ├── shop.js │ │ │ ├── shopping-basket.js │ │ │ ├── shopping-cart.js │ │ │ ├── speaker-notes-off.js │ │ │ ├── speaker-notes.js │ │ │ ├── spellcheck.js │ │ │ ├── stars.js │ │ │ ├── store.js │ │ │ ├── subject.js │ │ │ ├── supervisor-account.js │ │ │ ├── swap-horiz.js │ │ │ ├── swap-vert.js │ │ │ ├── swap-vertical-circle.js │ │ │ ├── system-update-alt.js │ │ │ ├── tab-unselected.js │ │ │ ├── tab.js │ │ │ ├── theaters.js │ │ │ ├── thumb-down.js │ │ │ ├── thumb-up.js │ │ │ ├── thumbs-up-down.js │ │ │ ├── timeline.js │ │ │ ├── toc.js │ │ │ ├── today.js │ │ │ ├── toll.js │ │ │ ├── touch-app.js │ │ │ ├── track-changes.js │ │ │ ├── translate.js │ │ │ ├── trending-down.js │ │ │ ├── trending-flat.js │ │ │ ├── trending-up.js │ │ │ ├── turned-in-not.js │ │ │ ├── turned-in.js │ │ │ ├── update.js │ │ │ ├── verified-user.js │ │ │ ├── view-agenda.js │ │ │ ├── view-array.js │ │ │ ├── view-carousel.js │ │ │ ├── view-column.js │ │ │ ├── view-day.js │ │ │ ├── view-headline.js │ │ │ ├── view-list.js │ │ │ ├── view-module.js │ │ │ ├── view-quilt.js │ │ │ ├── view-stream.js │ │ │ ├── view-week.js │ │ │ ├── visibility-off.js │ │ │ ├── visibility.js │ │ │ ├── watch-later.js │ │ │ ├── work.js │ │ │ ├── youtube-searched-for.js │ │ │ ├── zoom-in.js │ │ │ └── zoom-out.js │ │ ├── alert │ │ │ ├── add-alert.js │ │ │ ├── error-outline.js │ │ │ ├── error.js │ │ │ └── warning.js │ │ ├── av │ │ │ ├── add-to-queue.js │ │ │ ├── airplay.js │ │ │ ├── album.js │ │ │ ├── art-track.js │ │ │ ├── av-timer.js │ │ │ ├── branding-watermark.js │ │ │ ├── call-to-action.js │ │ │ ├── closed-caption.js │ │ │ ├── equalizer.js │ │ │ ├── explicit.js │ │ │ ├── fast-forward.js │ │ │ ├── fast-rewind.js │ │ │ ├── featured-play-list.js │ │ │ ├── featured-video.js │ │ │ ├── fiber-dvr.js │ │ │ ├── fiber-manual-record.js │ │ │ ├── fiber-new.js │ │ │ ├── fiber-pin.js │ │ │ ├── fiber-smart-record.js │ │ │ ├── forward-10.js │ │ │ ├── forward-30.js │ │ │ ├── forward-5.js │ │ │ ├── games.js │ │ │ ├── hd.js │ │ │ ├── hearing.js │ │ │ ├── high-quality.js │ │ │ ├── library-add.js │ │ │ ├── library-books.js │ │ │ ├── library-music.js │ │ │ ├── loop.js │ │ │ ├── mic-none.js │ │ │ ├── mic-off.js │ │ │ ├── mic.js │ │ │ ├── movie.js │ │ │ ├── music-video.js │ │ │ ├── new-releases.js │ │ │ ├── not-interested.js │ │ │ ├── note.js │ │ │ ├── pause-circle-filled.js │ │ │ ├── pause-circle-outline.js │ │ │ ├── pause.js │ │ │ ├── play-arrow.js │ │ │ ├── play-circle-filled.js │ │ │ ├── play-circle-outline.js │ │ │ ├── playlist-add-check.js │ │ │ ├── playlist-add.js │ │ │ ├── playlist-play.js │ │ │ ├── queue-music.js │ │ │ ├── queue-play-next.js │ │ │ ├── queue.js │ │ │ ├── radio.js │ │ │ ├── recent-actors.js │ │ │ ├── remove-from-queue.js │ │ │ ├── repeat-one.js │ │ │ ├── repeat.js │ │ │ ├── replay-10.js │ │ │ ├── replay-30.js │ │ │ ├── replay-5.js │ │ │ ├── replay.js │ │ │ ├── shuffle.js │ │ │ ├── skip-next.js │ │ │ ├── skip-previous.js │ │ │ ├── slow-motion-video.js │ │ │ ├── snooze.js │ │ │ ├── sort-by-alpha.js │ │ │ ├── stop.js │ │ │ ├── subscriptions.js │ │ │ ├── subtitles.js │ │ │ ├── surround-sound.js │ │ │ ├── video-call.js │ │ │ ├── video-label.js │ │ │ ├── video-library.js │ │ │ ├── videocam-off.js │ │ │ ├── videocam.js │ │ │ ├── volume-down.js │ │ │ ├── volume-mute.js │ │ │ ├── volume-off.js │ │ │ ├── volume-up.js │ │ │ ├── web-asset.js │ │ │ └── web.js │ │ ├── communication │ │ │ ├── business.js │ │ │ ├── call-end.js │ │ │ ├── call-made.js │ │ │ ├── call-merge.js │ │ │ ├── call-missed-outgoing.js │ │ │ ├── call-missed.js │ │ │ ├── call-received.js │ │ │ ├── call-split.js │ │ │ ├── call.js │ │ │ ├── chat-bubble-outline.js │ │ │ ├── chat-bubble.js │ │ │ ├── chat.js │ │ │ ├── clear-all.js │ │ │ ├── comment.js │ │ │ ├── contact-mail.js │ │ │ ├── contact-phone.js │ │ │ ├── contacts.js │ │ │ ├── dialer-sip.js │ │ │ ├── dialpad.js │ │ │ ├── email.js │ │ │ ├── forum.js │ │ │ ├── import-contacts.js │ │ │ ├── import-export.js │ │ │ ├── invert-colors-off.js │ │ │ ├── live-help.js │ │ │ ├── location-off.js │ │ │ ├── location-on.js │ │ │ ├── mail-outline.js │ │ │ ├── message.js │ │ │ ├── no-sim.js │ │ │ ├── phone.js │ │ │ ├── phonelink-erase.js │ │ │ ├── phonelink-lock.js │ │ │ ├── phonelink-ring.js │ │ │ ├── phonelink-setup.js │ │ │ ├── portable-wifi-off.js │ │ │ ├── present-to-all.js │ │ │ ├── ring-volume.js │ │ │ ├── rss-feed.js │ │ │ ├── screen-share.js │ │ │ ├── speaker-phone.js │ │ │ ├── stay-current-landscape.js │ │ │ ├── stay-current-portrait.js │ │ │ ├── stay-primary-landscape.js │ │ │ ├── stay-primary-portrait.js │ │ │ ├── stop-screen-share.js │ │ │ ├── swap-calls.js │ │ │ ├── textsms.js │ │ │ ├── voicemail.js │ │ │ └── vpn-key.js │ │ ├── content │ │ │ ├── add-box.js │ │ │ ├── add-circle-outline.js │ │ │ ├── add-circle.js │ │ │ ├── add.js │ │ │ ├── archive.js │ │ │ ├── backspace.js │ │ │ ├── block.js │ │ │ ├── clear.js │ │ │ ├── content-copy.js │ │ │ ├── content-cut.js │ │ │ ├── content-paste.js │ │ │ ├── create.js │ │ │ ├── delete-sweep.js │ │ │ ├── drafts.js │ │ │ ├── filter-list.js │ │ │ ├── flag.js │ │ │ ├── font-download.js │ │ │ ├── forward.js │ │ │ ├── gesture.js │ │ │ ├── inbox.js │ │ │ ├── link.js │ │ │ ├── low-priority.js │ │ │ ├── mail.js │ │ │ ├── markunread.js │ │ │ ├── move-to-inbox.js │ │ │ ├── next-week.js │ │ │ ├── redo.js │ │ │ ├── remove-circle-outline.js │ │ │ ├── remove-circle.js │ │ │ ├── remove.js │ │ │ ├── reply-all.js │ │ │ ├── reply.js │ │ │ ├── report.js │ │ │ ├── save.js │ │ │ ├── select-all.js │ │ │ ├── send.js │ │ │ ├── sort-by-alpha.js │ │ │ ├── sort.js │ │ │ ├── text-format.js │ │ │ ├── unarchive.js │ │ │ ├── undo.js │ │ │ └── weekend.js │ │ ├── device │ │ │ ├── access-alarm.js │ │ │ ├── access-alarms.js │ │ │ ├── access-time.js │ │ │ ├── add-alarm.js │ │ │ ├── airplanemode-active.js │ │ │ ├── airplanemode-inactive.js │ │ │ ├── battery-20.js │ │ │ ├── battery-30.js │ │ │ ├── battery-50.js │ │ │ ├── battery-60.js │ │ │ ├── battery-80.js │ │ │ ├── battery-90.js │ │ │ ├── battery-alert.js │ │ │ ├── battery-charging-20.js │ │ │ ├── battery-charging-30.js │ │ │ ├── battery-charging-50.js │ │ │ ├── battery-charging-60.js │ │ │ ├── battery-charging-80.js │ │ │ ├── battery-charging-90.js │ │ │ ├── battery-charging-full.js │ │ │ ├── battery-full.js │ │ │ ├── battery-std.js │ │ │ ├── battery-unknown.js │ │ │ ├── bluetooth-connected.js │ │ │ ├── bluetooth-disabled.js │ │ │ ├── bluetooth-searching.js │ │ │ ├── bluetooth.js │ │ │ ├── brightness-auto.js │ │ │ ├── brightness-high.js │ │ │ ├── brightness-low.js │ │ │ ├── brightness-medium.js │ │ │ ├── data-usage.js │ │ │ ├── developer-mode.js │ │ │ ├── devices.js │ │ │ ├── dvr.js │ │ │ ├── gps-fixed.js │ │ │ ├── gps-not-fixed.js │ │ │ ├── gps-off.js │ │ │ ├── graphic-eq.js │ │ │ ├── location-disabled.js │ │ │ ├── location-searching.js │ │ │ ├── network-cell.js │ │ │ ├── network-wifi.js │ │ │ ├── nfc.js │ │ │ ├── screen-lock-landscape.js │ │ │ ├── screen-lock-portrait.js │ │ │ ├── screen-lock-rotation.js │ │ │ ├── screen-rotation.js │ │ │ ├── sd-storage.js │ │ │ ├── settings-system-daydream.js │ │ │ ├── signal-cellular-0-bar.js │ │ │ ├── signal-cellular-1-bar.js │ │ │ ├── signal-cellular-2-bar.js │ │ │ ├── signal-cellular-3-bar.js │ │ │ ├── signal-cellular-4-bar.js │ │ │ ├── signal-cellular-connected-no-internet-0-bar.js │ │ │ ├── signal-cellular-connected-no-internet-1-bar.js │ │ │ ├── signal-cellular-connected-no-internet-2-bar.js │ │ │ ├── signal-cellular-connected-no-internet-3-bar.js │ │ │ ├── signal-cellular-connected-no-internet-4-bar.js │ │ │ ├── signal-cellular-no-sim.js │ │ │ ├── signal-cellular-null.js │ │ │ ├── signal-cellular-off.js │ │ │ ├── signal-wifi-0-bar.js │ │ │ ├── signal-wifi-1-bar-lock.js │ │ │ ├── signal-wifi-1-bar.js │ │ │ ├── signal-wifi-2-bar-lock.js │ │ │ ├── signal-wifi-2-bar.js │ │ │ ├── signal-wifi-3-bar-lock.js │ │ │ ├── signal-wifi-3-bar.js │ │ │ ├── signal-wifi-4-bar-lock.js │ │ │ ├── signal-wifi-4-bar.js │ │ │ ├── signal-wifi-off.js │ │ │ ├── storage.js │ │ │ ├── usb.js │ │ │ ├── wallpaper.js │ │ │ ├── widgets.js │ │ │ ├── wifi-lock.js │ │ │ └── wifi-tethering.js │ │ ├── editor │ │ │ ├── attach-file.js │ │ │ ├── attach-money.js │ │ │ ├── border-all.js │ │ │ ├── border-bottom.js │ │ │ ├── border-clear.js │ │ │ ├── border-color.js │ │ │ ├── border-horizontal.js │ │ │ ├── border-inner.js │ │ │ ├── border-left.js │ │ │ ├── border-outer.js │ │ │ ├── border-right.js │ │ │ ├── border-style.js │ │ │ ├── border-top.js │ │ │ ├── border-vertical.js │ │ │ ├── bubble-chart.js │ │ │ ├── drag-handle.js │ │ │ ├── format-align-center.js │ │ │ ├── format-align-justify.js │ │ │ ├── format-align-left.js │ │ │ ├── format-align-right.js │ │ │ ├── format-bold.js │ │ │ ├── format-clear.js │ │ │ ├── format-color-fill.js │ │ │ ├── format-color-reset.js │ │ │ ├── format-color-text.js │ │ │ ├── format-indent-decrease.js │ │ │ ├── format-indent-increase.js │ │ │ ├── format-italic.js │ │ │ ├── format-line-spacing.js │ │ │ ├── format-list-bulleted.js │ │ │ ├── format-list-numbered.js │ │ │ ├── format-paint.js │ │ │ ├── format-quote.js │ │ │ ├── format-shapes.js │ │ │ ├── format-size.js │ │ │ ├── format-strikethrough.js │ │ │ ├── format-textdirection-l-to-r.js │ │ │ ├── format-textdirection-r-to-l.js │ │ │ ├── format-underlined.js │ │ │ ├── functions.js │ │ │ ├── highlight.js │ │ │ ├── insert-chart.js │ │ │ ├── insert-comment.js │ │ │ ├── insert-drive-file.js │ │ │ ├── insert-emoticon.js │ │ │ ├── insert-invitation.js │ │ │ ├── insert-link.js │ │ │ ├── insert-photo.js │ │ │ ├── linear-scale.js │ │ │ ├── merge-type.js │ │ │ ├── mode-comment.js │ │ │ ├── mode-edit.js │ │ │ ├── monetization-on.js │ │ │ ├── money-off.js │ │ │ ├── multiline-chart.js │ │ │ ├── pie-chart-outlined.js │ │ │ ├── pie-chart.js │ │ │ ├── publish.js │ │ │ ├── short-text.js │ │ │ ├── show-chart.js │ │ │ ├── space-bar.js │ │ │ ├── strikethrough-s.js │ │ │ ├── text-fields.js │ │ │ ├── title.js │ │ │ ├── vertical-align-bottom.js │ │ │ ├── vertical-align-center.js │ │ │ ├── vertical-align-top.js │ │ │ └── wrap-text.js │ │ ├── file │ │ │ ├── attachment.js │ │ │ ├── cloud-circle.js │ │ │ ├── cloud-done.js │ │ │ ├── cloud-download.js │ │ │ ├── cloud-off.js │ │ │ ├── cloud-queue.js │ │ │ ├── cloud-upload.js │ │ │ ├── cloud.js │ │ │ ├── create-new-folder.js │ │ │ ├── file-download.js │ │ │ ├── file-upload.js │ │ │ ├── folder-open.js │ │ │ ├── folder-shared.js │ │ │ └── folder.js │ │ ├── hardware │ │ │ ├── cast-connected.js │ │ │ ├── cast.js │ │ │ ├── computer.js │ │ │ ├── desktop-mac.js │ │ │ ├── desktop-windows.js │ │ │ ├── developer-board.js │ │ │ ├── device-hub.js │ │ │ ├── devices-other.js │ │ │ ├── dock.js │ │ │ ├── gamepad.js │ │ │ ├── headset-mic.js │ │ │ ├── headset.js │ │ │ ├── keyboard-arrow-down.js │ │ │ ├── keyboard-arrow-left.js │ │ │ ├── keyboard-arrow-right.js │ │ │ ├── keyboard-arrow-up.js │ │ │ ├── keyboard-backspace.js │ │ │ ├── keyboard-capslock.js │ │ │ ├── keyboard-hide.js │ │ │ ├── keyboard-return.js │ │ │ ├── keyboard-tab.js │ │ │ ├── keyboard-voice.js │ │ │ ├── keyboard.js │ │ │ ├── laptop-chromebook.js │ │ │ ├── laptop-mac.js │ │ │ ├── laptop-windows.js │ │ │ ├── laptop.js │ │ │ ├── memory.js │ │ │ ├── mouse.js │ │ │ ├── phone-android.js │ │ │ ├── phone-iphone.js │ │ │ ├── phonelink-off.js │ │ │ ├── phonelink.js │ │ │ ├── power-input.js │ │ │ ├── router.js │ │ │ ├── scanner.js │ │ │ ├── security.js │ │ │ ├── sim-card.js │ │ │ ├── smartphone.js │ │ │ ├── speaker-group.js │ │ │ ├── speaker.js │ │ │ ├── tablet-android.js │ │ │ ├── tablet-mac.js │ │ │ ├── tablet.js │ │ │ ├── toys.js │ │ │ ├── tv.js │ │ │ ├── videogame-asset.js │ │ │ └── watch.js │ │ ├── image │ │ │ ├── add-a-photo.js │ │ │ ├── add-to-photos.js │ │ │ ├── adjust.js │ │ │ ├── assistant-photo.js │ │ │ ├── assistant.js │ │ │ ├── audiotrack.js │ │ │ ├── blur-circular.js │ │ │ ├── blur-linear.js │ │ │ ├── blur-off.js │ │ │ ├── blur-on.js │ │ │ ├── brightness-1.js │ │ │ ├── brightness-2.js │ │ │ ├── brightness-3.js │ │ │ ├── brightness-4.js │ │ │ ├── brightness-5.js │ │ │ ├── brightness-6.js │ │ │ ├── brightness-7.js │ │ │ ├── broken-image.js │ │ │ ├── brush.js │ │ │ ├── burst-mode.js │ │ │ ├── camera-alt.js │ │ │ ├── camera-front.js │ │ │ ├── camera-rear.js │ │ │ ├── camera-roll.js │ │ │ ├── camera.js │ │ │ ├── center-focus-strong.js │ │ │ ├── center-focus-weak.js │ │ │ ├── collections-bookmark.js │ │ │ ├── collections.js │ │ │ ├── color-lens.js │ │ │ ├── colorize.js │ │ │ ├── compare.js │ │ │ ├── control-point-duplicate.js │ │ │ ├── control-point.js │ │ │ ├── crop-16-9.js │ │ │ ├── crop-3-2.js │ │ │ ├── crop-5-4.js │ │ │ ├── crop-7-5.js │ │ │ ├── crop-din.js │ │ │ ├── crop-free.js │ │ │ ├── crop-landscape.js │ │ │ ├── crop-original.js │ │ │ ├── crop-portrait.js │ │ │ ├── crop-rotate.js │ │ │ ├── crop-square.js │ │ │ ├── crop.js │ │ │ ├── dehaze.js │ │ │ ├── details.js │ │ │ ├── edit.js │ │ │ ├── exposure-neg-1.js │ │ │ ├── exposure-neg-2.js │ │ │ ├── exposure-plus-1.js │ │ │ ├── exposure-plus-2.js │ │ │ ├── exposure-zero.js │ │ │ ├── exposure.js │ │ │ ├── filter-1.js │ │ │ ├── filter-2.js │ │ │ ├── filter-3.js │ │ │ ├── filter-4.js │ │ │ ├── filter-5.js │ │ │ ├── filter-6.js │ │ │ ├── filter-7.js │ │ │ ├── filter-8.js │ │ │ ├── filter-9-plus.js │ │ │ ├── filter-9.js │ │ │ ├── filter-b-and-w.js │ │ │ ├── filter-center-focus.js │ │ │ ├── filter-drama.js │ │ │ ├── filter-frames.js │ │ │ ├── filter-hdr.js │ │ │ ├── filter-none.js │ │ │ ├── filter-tilt-shift.js │ │ │ ├── filter-vintage.js │ │ │ ├── filter.js │ │ │ ├── flare.js │ │ │ ├── flash-auto.js │ │ │ ├── flash-off.js │ │ │ ├── flash-on.js │ │ │ ├── flip.js │ │ │ ├── gradient.js │ │ │ ├── grain.js │ │ │ ├── grid-off.js │ │ │ ├── grid-on.js │ │ │ ├── hdr-off.js │ │ │ ├── hdr-on.js │ │ │ ├── hdr-strong.js │ │ │ ├── hdr-weak.js │ │ │ ├── healing.js │ │ │ ├── image-aspect-ratio.js │ │ │ ├── image.js │ │ │ ├── iso.js │ │ │ ├── landscape.js │ │ │ ├── leak-add.js │ │ │ ├── leak-remove.js │ │ │ ├── lens.js │ │ │ ├── linked-camera.js │ │ │ ├── looks-1.js │ │ │ ├── looks-2.js │ │ │ ├── looks-3.js │ │ │ ├── looks-4.js │ │ │ ├── looks-5.js │ │ │ ├── looks-6.js │ │ │ ├── looks.js │ │ │ ├── loupe.js │ │ │ ├── monochrome-photos.js │ │ │ ├── movie-creation.js │ │ │ ├── movie-filter.js │ │ │ ├── music-note.js │ │ │ ├── nature-people.js │ │ │ ├── nature.js │ │ │ ├── navigate-before.js │ │ │ ├── navigate-next.js │ │ │ ├── palette.js │ │ │ ├── panorama-fish-eye.js │ │ │ ├── panorama-horizontal.js │ │ │ ├── panorama-vertical.js │ │ │ ├── panorama-wide-angle.js │ │ │ ├── panorama.js │ │ │ ├── photo-album.js │ │ │ ├── photo-camera.js │ │ │ ├── photo-filter.js │ │ │ ├── photo-library.js │ │ │ ├── photo-size-select-actual.js │ │ │ ├── photo-size-select-large.js │ │ │ ├── photo-size-select-small.js │ │ │ ├── photo.js │ │ │ ├── picture-as-pdf.js │ │ │ ├── portrait.js │ │ │ ├── remove-red-eye.js │ │ │ ├── rotate-90-degrees-ccw.js │ │ │ ├── rotate-left.js │ │ │ ├── rotate-right.js │ │ │ ├── slideshow.js │ │ │ ├── straighten.js │ │ │ ├── style.js │ │ │ ├── switch-camera.js │ │ │ ├── switch-video.js │ │ │ ├── tag-faces.js │ │ │ ├── texture.js │ │ │ ├── timelapse.js │ │ │ ├── timer-10.js │ │ │ ├── timer-3.js │ │ │ ├── timer-off.js │ │ │ ├── timer.js │ │ │ ├── tonality.js │ │ │ ├── transform.js │ │ │ ├── tune.js │ │ │ ├── view-comfy.js │ │ │ ├── view-compact.js │ │ │ ├── vignette.js │ │ │ ├── wb-auto.js │ │ │ ├── wb-cloudy.js │ │ │ ├── wb-incandescent.js │ │ │ ├── wb-iridescent.js │ │ │ └── wb-sunny.js │ │ ├── maps │ │ │ ├── add-location.js │ │ │ ├── beenhere.js │ │ │ ├── directions-bike.js │ │ │ ├── directions-boat.js │ │ │ ├── directions-bus.js │ │ │ ├── directions-car.js │ │ │ ├── directions-railway.js │ │ │ ├── directions-run.js │ │ │ ├── directions-subway.js │ │ │ ├── directions-transit.js │ │ │ ├── directions-walk.js │ │ │ ├── directions.js │ │ │ ├── edit-location.js │ │ │ ├── ev-station.js │ │ │ ├── flight.js │ │ │ ├── hotel.js │ │ │ ├── layers-clear.js │ │ │ ├── layers.js │ │ │ ├── local-activity.js │ │ │ ├── local-airport.js │ │ │ ├── local-atm.js │ │ │ ├── local-bar.js │ │ │ ├── local-cafe.js │ │ │ ├── local-car-wash.js │ │ │ ├── local-convenience-store.js │ │ │ ├── local-dining.js │ │ │ ├── local-drink.js │ │ │ ├── local-florist.js │ │ │ ├── local-gas-station.js │ │ │ ├── local-grocery-store.js │ │ │ ├── local-hospital.js │ │ │ ├── local-hotel.js │ │ │ ├── local-laundry-service.js │ │ │ ├── local-library.js │ │ │ ├── local-mall.js │ │ │ ├── local-movies.js │ │ │ ├── local-offer.js │ │ │ ├── local-parking.js │ │ │ ├── local-pharmacy.js │ │ │ ├── local-phone.js │ │ │ ├── local-pizza.js │ │ │ ├── local-play.js │ │ │ ├── local-post-office.js │ │ │ ├── local-printshop.js │ │ │ ├── local-see.js │ │ │ ├── local-shipping.js │ │ │ ├── local-taxi.js │ │ │ ├── map.js │ │ │ ├── my-location.js │ │ │ ├── navigation.js │ │ │ ├── near-me.js │ │ │ ├── person-pin-circle.js │ │ │ ├── person-pin.js │ │ │ ├── pin-drop.js │ │ │ ├── place.js │ │ │ ├── rate-review.js │ │ │ ├── restaurant-menu.js │ │ │ ├── restaurant.js │ │ │ ├── satellite.js │ │ │ ├── store-mall-directory.js │ │ │ ├── streetview.js │ │ │ ├── subway.js │ │ │ ├── terrain.js │ │ │ ├── traffic.js │ │ │ ├── train.js │ │ │ ├── tram.js │ │ │ ├── transfer-within-a-station.js │ │ │ └── zoom-out-map.js │ │ ├── navigation │ │ │ ├── apps.js │ │ │ ├── arrow-back.js │ │ │ ├── arrow-double-back.js │ │ │ ├── arrow-double-downward.js │ │ │ ├── arrow-double-forward.js │ │ │ ├── arrow-double-upward.js │ │ │ ├── arrow-downward.js │ │ │ ├── arrow-drop-down-circle.js │ │ │ ├── arrow-drop-down.js │ │ │ ├── arrow-drop-up.js │ │ │ ├── arrow-forward.js │ │ │ ├── arrow-upward.js │ │ │ ├── cancel.js │ │ │ ├── check.js │ │ │ ├── chevron-left.js │ │ │ ├── chevron-right.js │ │ │ ├── close.js │ │ │ ├── expand-less.js │ │ │ ├── expand-more.js │ │ │ ├── first-page.js │ │ │ ├── fullscreen-exit.js │ │ │ ├── fullscreen.js │ │ │ ├── last-page.js │ │ │ ├── menu.js │ │ │ ├── more-horiz.js │ │ │ ├── more-vert.js │ │ │ ├── refresh.js │ │ │ ├── subdirectory-arrow-left.js │ │ │ ├── subdirectory-arrow-right.js │ │ │ ├── unfold-less.js │ │ │ └── unfold-more.js │ │ ├── notification │ │ │ ├── adb.js │ │ │ ├── airline-seat-flat-angled.js │ │ │ ├── airline-seat-flat.js │ │ │ ├── airline-seat-individual-suite.js │ │ │ ├── airline-seat-legroom-extra.js │ │ │ ├── airline-seat-legroom-normal.js │ │ │ ├── airline-seat-legroom-reduced.js │ │ │ ├── airline-seat-recline-extra.js │ │ │ ├── airline-seat-recline-normal.js │ │ │ ├── bluetooth-audio.js │ │ │ ├── confirmation-number.js │ │ │ ├── disc-full.js │ │ │ ├── do-not-disturb-alt.js │ │ │ ├── do-not-disturb-off.js │ │ │ ├── do-not-disturb-on.js │ │ │ ├── do-not-disturb.js │ │ │ ├── drive-eta.js │ │ │ ├── enhanced-encryption.js │ │ │ ├── event-available.js │ │ │ ├── event-busy.js │ │ │ ├── event-note.js │ │ │ ├── folder-special.js │ │ │ ├── live-tv.js │ │ │ ├── mms.js │ │ │ ├── more.js │ │ │ ├── network-check.js │ │ │ ├── network-locked.js │ │ │ ├── no-encryption.js │ │ │ ├── ondemand-video.js │ │ │ ├── personal-video.js │ │ │ ├── phone-bluetooth-speaker.js │ │ │ ├── phone-forwarded.js │ │ │ ├── phone-in-talk.js │ │ │ ├── phone-locked.js │ │ │ ├── phone-missed.js │ │ │ ├── phone-paused.js │ │ │ ├── power.js │ │ │ ├── priority-high.js │ │ │ ├── rv-hookup.js │ │ │ ├── sd-card.js │ │ │ ├── sim-card-alert.js │ │ │ ├── sms-failed.js │ │ │ ├── sms.js │ │ │ ├── sync-disabled.js │ │ │ ├── sync-problem.js │ │ │ ├── sync.js │ │ │ ├── system-update.js │ │ │ ├── tap-and-play.js │ │ │ ├── time-to-leave.js │ │ │ ├── vibration.js │ │ │ ├── voice-chat.js │ │ │ ├── vpn-lock.js │ │ │ ├── wc.js │ │ │ └── wifi.js │ │ ├── places │ │ │ ├── ac-unit.js │ │ │ ├── airport-shuttle.js │ │ │ ├── beach-access.js │ │ │ ├── breakfast.js │ │ │ ├── business-center.js │ │ │ ├── casino.js │ │ │ ├── child-care.js │ │ │ ├── child-friendly.js │ │ │ ├── fitness-center.js │ │ │ ├── golf-course.js │ │ │ ├── hot-tub.js │ │ │ ├── kitchen.js │ │ │ ├── pool.js │ │ │ ├── rv-hookup.js │ │ │ ├── service.js │ │ │ ├── smoke-free.js │ │ │ ├── smoking-rooms.js │ │ │ └── spa.js │ │ ├── social │ │ │ ├── cake.js │ │ │ ├── domain.js │ │ │ ├── group-add.js │ │ │ ├── group.js │ │ │ ├── location-city.js │ │ │ ├── mood-bad.js │ │ │ ├── mood.js │ │ │ ├── notifications-active.js │ │ │ ├── notifications-none.js │ │ │ ├── notifications-off.js │ │ │ ├── notifications-paused.js │ │ │ ├── notifications.js │ │ │ ├── pages.js │ │ │ ├── party-mode.js │ │ │ ├── people-outline.js │ │ │ ├── people.js │ │ │ ├── person-add.js │ │ │ ├── person-outline.js │ │ │ ├── person.js │ │ │ ├── plus-one.js │ │ │ ├── poll.js │ │ │ ├── public.js │ │ │ ├── school.js │ │ │ ├── sentiment-dissatisfied.js │ │ │ ├── sentiment-neutral.js │ │ │ ├── sentiment-satisfied.js │ │ │ ├── sentiment-very-dissatisfied.js │ │ │ ├── sentiment-very-satisfied.js │ │ │ ├── share.js │ │ │ └── whatshot.js │ │ └── toggle │ │ │ ├── check-box-outline-blank.js │ │ │ ├── check-box.js │ │ │ ├── indeterminate-check-box.js │ │ │ ├── radio-button-checked.js │ │ │ ├── radio-button-unchecked.js │ │ │ ├── star-border.js │ │ │ ├── star-half.js │ │ │ └── star.js │ └── weather │ │ ├── aquarius.js │ │ ├── aries.js │ │ ├── cancer.js │ │ ├── capricorn.js │ │ ├── cloud-drop.js │ │ ├── cloud-lightning.js │ │ ├── cloud-snowflake.js │ │ ├── cloud.js │ │ ├── downpour-fullmoon.js │ │ ├── downpour-halfmoon.js │ │ ├── downpour-sun.js │ │ ├── downpour.js │ │ ├── drizzle-fullmoon.js │ │ ├── drizzle-halfmoon.js │ │ ├── drizzle-sun.js │ │ ├── drizzle.js │ │ ├── drop.js │ │ ├── first-quarter.js │ │ ├── fog-fullmoon.js │ │ ├── fog-halfmoon.js │ │ ├── fog-sun.js │ │ ├── fog.js │ │ ├── fullmoon.js │ │ ├── gemini.js │ │ ├── hail-fullmoon.js │ │ ├── hail-halfmoon.js │ │ ├── hail-sun.js │ │ ├── hail.js │ │ ├── last-quarter.js │ │ ├── leo.js │ │ ├── libra.js │ │ ├── lightning.js │ │ ├── mistyrain-fullmoon.js │ │ ├── mistyrain-halfmoon.js │ │ ├── mistyrain-sun.js │ │ ├── mistyrain.js │ │ ├── moon.js │ │ ├── moondown-full.js │ │ ├── moondown-half.js │ │ ├── moonset-full.js │ │ ├── moonset-half.js │ │ ├── move.js │ │ ├── newmoon.js │ │ ├── pisces.js │ │ ├── rain-fullmoon.js │ │ ├── rain-halfmoon.js │ │ ├── rain-sun.js │ │ ├── rain.js │ │ ├── sagittarius.js │ │ ├── scorpio.js │ │ ├── sleet-and-drizzle-fullmoon.js │ │ ├── sleet-and-drizzle-halfmoon.js │ │ ├── sleet-and-drizzle-sun.js │ │ ├── sleet-and-drizzle.js │ │ ├── sleet-fullmoon.js │ │ ├── sleet-halfmoon.js │ │ ├── sleet-sun.js │ │ ├── sleet.js │ │ ├── snow-fullmoon.js │ │ ├── snow-halfmoon.js │ │ ├── snow-sun.js │ │ ├── snow.js │ │ ├── snowflake.js │ │ ├── star.js │ │ ├── storm-fullmoon.js │ │ ├── storm-halfmoon.js │ │ ├── storm-sun.js │ │ ├── storm.js │ │ ├── sun.js │ │ ├── sundown.js │ │ ├── sunset.js │ │ ├── taurus.js │ │ ├── tempest-fullmoon.js │ │ ├── tempest-halfmoon.js │ │ ├── tempest-sun.js │ │ ├── tempest.js │ │ ├── variable-fullmoon.js │ │ ├── variable-halfmoon.js │ │ ├── variable-sun.js │ │ ├── virgo.js │ │ ├── waning-cresent.js │ │ ├── waning-gibbous.js │ │ ├── waxing-cresent.js │ │ ├── waxing-gibbous.js │ │ ├── wind-e.js │ │ ├── wind-fullmoon.js │ │ ├── wind-halfmoon.js │ │ ├── wind-n.js │ │ ├── wind-ne.js │ │ ├── wind-nw.js │ │ ├── wind-s.js │ │ ├── wind-se.js │ │ ├── wind-sun.js │ │ ├── wind-sw.js │ │ ├── wind-w.js │ │ ├── wind.js │ │ └── windgust.js ├── jscharting.d.ts ├── jscharting.js ├── modules │ ├── accessibility.js │ ├── datagrid.js │ ├── debug.js │ ├── maps.js │ ├── toolbar.js │ └── types.js ├── polyfill │ ├── fetch.js │ └── promise.js └── resources │ ├── datagrid.css │ └── maps │ ├── africa.js │ ├── americas.js │ ├── asia.js │ ├── countries │ ├── ad.js │ ├── ad_c.js │ ├── ad_s.js │ ├── ae.js │ ├── ae_c.js │ ├── ae_s.js │ ├── af.js │ ├── af_c.js │ ├── af_s.js │ ├── ag.js │ ├── ag_c.js │ ├── ag_s.js │ ├── ai.js │ ├── ai_c.js │ ├── ai_s.js │ ├── al.js │ ├── al_c.js │ ├── al_s.js │ ├── am.js │ ├── am_c.js │ ├── am_s.js │ ├── ao.js │ ├── ao_c.js │ ├── ao_s.js │ ├── ar.js │ ├── ar_c.js │ ├── ar_s.js │ ├── at.js │ ├── at_c.js │ ├── at_s.js │ ├── au.js │ ├── au_c.js │ ├── au_s.js │ ├── aw.js │ ├── aw_c.js │ ├── aw_s.js │ ├── ax.js │ ├── ax_c.js │ ├── ax_s.js │ ├── az.js │ ├── az_c.js │ ├── az_s.js │ ├── ba.js │ ├── ba_c.js │ ├── ba_s.js │ ├── bb.js │ ├── bb_c.js │ ├── bb_s.js │ ├── bd.js │ ├── bd_c.js │ ├── bd_s.js │ ├── be.js │ ├── be_c.js │ ├── be_s.js │ ├── bf.js │ ├── bf_c.js │ ├── bf_s.js │ ├── bg.js │ ├── bg_c.js │ ├── bg_s.js │ ├── bh.js │ ├── bh_c.js │ ├── bh_s.js │ ├── bi.js │ ├── bi_c.js │ ├── bi_s.js │ ├── bj.js │ ├── bj_c.js │ ├── bj_s.js │ ├── bl_s.js │ ├── bm.js │ ├── bm_c.js │ ├── bm_s.js │ ├── bn.js │ ├── bn_c.js │ ├── bn_s.js │ ├── bo.js │ ├── bo_c.js │ ├── bo_s.js │ ├── bq_s.js │ ├── br.js │ ├── br_c.js │ ├── br_s.js │ ├── bs.js │ ├── bs_c.js │ ├── bs_s.js │ ├── bt.js │ ├── bt_c.js │ ├── bt_s.js │ ├── bw.js │ ├── bw_c.js │ ├── bw_s.js │ ├── by.js │ ├── by_c.js │ ├── by_s.js │ ├── bz.js │ ├── bz_c.js │ ├── bz_s.js │ ├── ca.js │ ├── ca_c.js │ ├── ca_s.js │ ├── cd.js │ ├── cd_c.js │ ├── cd_s.js │ ├── cf.js │ ├── cf_c.js │ ├── cf_s.js │ ├── cg.js │ ├── cg_c.js │ ├── cg_s.js │ ├── ch.js │ ├── ch_c.js │ ├── ch_s.js │ ├── ci.js │ ├── ci_c.js │ ├── ci_s.js │ ├── cl.js │ ├── cl_c.js │ ├── cl_s.js │ ├── cm.js │ ├── cm_c.js │ ├── cm_s.js │ ├── cn.js │ ├── cn_c.js │ ├── cn_s.js │ ├── co.js │ ├── co_c.js │ ├── co_s.js │ ├── cr.js │ ├── cr_c.js │ ├── cr_s.js │ ├── cu.js │ ├── cu_c.js │ ├── cu_s.js │ ├── cv.js │ ├── cv_c.js │ ├── cv_s.js │ ├── cw.js │ ├── cw_c.js │ ├── cw_s.js │ ├── cy.js │ ├── cy_c.js │ ├── cy_s.js │ ├── cz.js │ ├── cz_c.js │ ├── cz_s.js │ ├── de.js │ ├── de_c.js │ ├── de_s.js │ ├── dj.js │ ├── dj_c.js │ ├── dj_s.js │ ├── dk.js │ ├── dk_c.js │ ├── dk_s.js │ ├── dm.js │ ├── dm_c.js │ ├── dm_s.js │ ├── do.js │ ├── do_c.js │ ├── do_s.js │ ├── dz.js │ ├── dz_c.js │ ├── dz_s.js │ ├── ec.js │ ├── ec_c.js │ ├── ec_s.js │ ├── ee.js │ ├── ee_c.js │ ├── ee_s.js │ ├── eg.js │ ├── eg_c.js │ ├── eg_s.js │ ├── eh.js │ ├── eh_c.js │ ├── eh_s.js │ ├── er.js │ ├── er_c.js │ ├── er_s.js │ ├── es.js │ ├── es_c.js │ ├── es_s.js │ ├── et.js │ ├── et_c.js │ ├── et_s.js │ ├── fi.js │ ├── fi_c.js │ ├── fi_s.js │ ├── fj.js │ ├── fj_c.js │ ├── fj_s.js │ ├── fr.js │ ├── fr_c.js │ ├── fr_s.js │ ├── ga.js │ ├── ga_c.js │ ├── ga_s.js │ ├── gb.js │ ├── gb_c.js │ ├── gb_s.js │ ├── gd.js │ ├── gd_c.js │ ├── gd_s.js │ ├── ge.js │ ├── ge_c.js │ ├── ge_s.js │ ├── gf.js │ ├── gf_c.js │ ├── gf_s.js │ ├── gh.js │ ├── gh_c.js │ ├── gh_s.js │ ├── gl.js │ ├── gl_c.js │ ├── gl_s.js │ ├── gm.js │ ├── gm_c.js │ ├── gm_s.js │ ├── gn.js │ ├── gn_c.js │ ├── gn_s.js │ ├── gp.js │ ├── gp_c.js │ ├── gp_s.js │ ├── gq.js │ ├── gq_c.js │ ├── gq_s.js │ ├── gr.js │ ├── gr_c.js │ ├── gr_s.js │ ├── gt.js │ ├── gt_c.js │ ├── gt_s.js │ ├── gu.js │ ├── gu_c.js │ ├── gu_s.js │ ├── gw.js │ ├── gw_c.js │ ├── gw_s.js │ ├── gy.js │ ├── gy_c.js │ ├── gy_s.js │ ├── gz.js │ ├── gz_c.js │ ├── gz_s.js │ ├── hk.js │ ├── hk_c.js │ ├── hk_s.js │ ├── hm.js │ ├── hm_c.js │ ├── hm_s.js │ ├── hn.js │ ├── hn_c.js │ ├── hn_s.js │ ├── hr.js │ ├── hr_c.js │ ├── hr_s.js │ ├── ht.js │ ├── ht_c.js │ ├── ht_s.js │ ├── hu.js │ ├── hu_c.js │ ├── hu_s.js │ ├── id.js │ ├── id_c.js │ ├── id_s.js │ ├── ie.js │ ├── ie_c.js │ ├── ie_s.js │ ├── il.js │ ├── il_c.js │ ├── il_s.js │ ├── im.js │ ├── im_c.js │ ├── im_s.js │ ├── in.js │ ├── in_c.js │ ├── in_s.js │ ├── iq.js │ ├── iq_c.js │ ├── iq_s.js │ ├── ir.js │ ├── ir_c.js │ ├── ir_s.js │ ├── is.js │ ├── is_c.js │ ├── is_s.js │ ├── it.js │ ├── it_c.js │ ├── it_s.js │ ├── je.js │ ├── je_c.js │ ├── je_s.js │ ├── jm.js │ ├── jm_c.js │ ├── jm_s.js │ ├── jo.js │ ├── jo_c.js │ ├── jo_s.js │ ├── jp.js │ ├── jp_c.js │ ├── jp_s.js │ ├── ke.js │ ├── ke_c.js │ ├── ke_s.js │ ├── kg.js │ ├── kg_c.js │ ├── kg_s.js │ ├── kh.js │ ├── kh_c.js │ ├── kh_s.js │ ├── km.js │ ├── km_c.js │ ├── km_s.js │ ├── kn.js │ ├── kn_c.js │ ├── kn_s.js │ ├── kp.js │ ├── kp_c.js │ ├── kp_s.js │ ├── kr.js │ ├── kr_c.js │ ├── kr_s.js │ ├── kw.js │ ├── kw_c.js │ ├── kw_s.js │ ├── ky.js │ ├── ky_c.js │ ├── ky_s.js │ ├── kz.js │ ├── kz_c.js │ ├── kz_s.js │ ├── la.js │ ├── la_c.js │ ├── la_s.js │ ├── lb.js │ ├── lb_c.js │ ├── lb_s.js │ ├── lc.js │ ├── lc_c.js │ ├── lc_s.js │ ├── li.js │ ├── li_c.js │ ├── li_s.js │ ├── lk.js │ ├── lk_c.js │ ├── lk_s.js │ ├── lr.js │ ├── lr_c.js │ ├── lr_s.js │ ├── ls.js │ ├── ls_c.js │ ├── ls_s.js │ ├── lt.js │ ├── lt_c.js │ ├── lt_s.js │ ├── lu.js │ ├── lu_c.js │ ├── lu_s.js │ ├── lv.js │ ├── lv_c.js │ ├── lv_s.js │ ├── ly.js │ ├── ly_c.js │ ├── ly_s.js │ ├── ma.js │ ├── ma_c.js │ ├── ma_s.js │ ├── mc.js │ ├── mc_c.js │ ├── mc_s.js │ ├── md.js │ ├── md_c.js │ ├── md_s.js │ ├── me.js │ ├── me_c.js │ ├── me_s.js │ ├── mf.js │ ├── mf_c.js │ ├── mf_s.js │ ├── mg.js │ ├── mg_c.js │ ├── mg_s.js │ ├── mk.js │ ├── mk_c.js │ ├── mk_s.js │ ├── ml.js │ ├── ml_c.js │ ├── ml_s.js │ ├── mm.js │ ├── mm_c.js │ ├── mm_s.js │ ├── mn.js │ ├── mn_c.js │ ├── mn_s.js │ ├── mo.js │ ├── mo_c.js │ ├── mo_s.js │ ├── mq.js │ ├── mq_c.js │ ├── mq_s.js │ ├── mr.js │ ├── mr_c.js │ ├── mr_s.js │ ├── ms.js │ ├── ms_c.js │ ├── ms_s.js │ ├── mt.js │ ├── mt_c.js │ ├── mt_s.js │ ├── mw.js │ ├── mw_c.js │ ├── mw_s.js │ ├── mx.js │ ├── mx_c.js │ ├── mx_s.js │ ├── my.js │ ├── my_c.js │ ├── my_s.js │ ├── mz.js │ ├── mz_c.js │ ├── mz_s.js │ ├── na.js │ ├── na_c.js │ ├── na_s.js │ ├── nc.js │ ├── nc_c.js │ ├── nc_s.js │ ├── ne.js │ ├── ne_c.js │ ├── ne_s.js │ ├── nf_s.js │ ├── ng.js │ ├── ng_c.js │ ├── ng_s.js │ ├── ni.js │ ├── ni_c.js │ ├── ni_s.js │ ├── nl.js │ ├── nl_c.js │ ├── nl_s.js │ ├── no.js │ ├── no_c.js │ ├── no_s.js │ ├── np.js │ ├── np_c.js │ ├── np_s.js │ ├── nr.js │ ├── nr_c.js │ ├── nr_s.js │ ├── nu.js │ ├── nu_c.js │ ├── nu_s.js │ ├── nz.js │ ├── nz_c.js │ ├── nz_s.js │ ├── om.js │ ├── om_c.js │ ├── om_s.js │ ├── pa.js │ ├── pa_c.js │ ├── pa_s.js │ ├── pe.js │ ├── pe_c.js │ ├── pe_s.js │ ├── pg.js │ ├── pg_c.js │ ├── pg_s.js │ ├── ph.js │ ├── ph_c.js │ ├── ph_s.js │ ├── pk.js │ ├── pk_c.js │ ├── pk_s.js │ ├── pl.js │ ├── pl_c.js │ ├── pl_s.js │ ├── pm.js │ ├── pm_c.js │ ├── pm_s.js │ ├── pr.js │ ├── pr_c.js │ ├── pr_s.js │ ├── ps.js │ ├── ps_c.js │ ├── ps_s.js │ ├── pt.js │ ├── pt_c.js │ ├── pt_s.js │ ├── py.js │ ├── py_c.js │ ├── py_s.js │ ├── qa.js │ ├── qa_c.js │ ├── qa_s.js │ ├── qo.js │ ├── qo_c.js │ ├── qo_s.js │ ├── re.js │ ├── re_c.js │ ├── re_s.js │ ├── ro.js │ ├── ro_c.js │ ├── ro_s.js │ ├── rs.js │ ├── rs_c.js │ ├── rs_s.js │ ├── ru.js │ ├── ru_c.js │ ├── ru_s.js │ ├── rw.js │ ├── rw_c.js │ ├── rw_s.js │ ├── sa.js │ ├── sa_c.js │ ├── sa_s.js │ ├── sb.js │ ├── sb_c.js │ ├── sb_s.js │ ├── sd.js │ ├── sd_c.js │ ├── sd_s.js │ ├── se.js │ ├── se_c.js │ ├── se_s.js │ ├── sg.js │ ├── sg_c.js │ ├── sg_s.js │ ├── si.js │ ├── si_c.js │ ├── si_s.js │ ├── sk.js │ ├── sk_c.js │ ├── sk_s.js │ ├── sl.js │ ├── sl_c.js │ ├── sl_s.js │ ├── sm.js │ ├── sm_c.js │ ├── sm_s.js │ ├── sn.js │ ├── sn_c.js │ ├── sn_s.js │ ├── so.js │ ├── so_c.js │ ├── so_s.js │ ├── sq.js │ ├── sq_c.js │ ├── sq_s.js │ ├── sr.js │ ├── sr_c.js │ ├── sr_s.js │ ├── ss.js │ ├── ss_c.js │ ├── ss_s.js │ ├── st.js │ ├── st_c.js │ ├── st_s.js │ ├── sv.js │ ├── sv_c.js │ ├── sv_s.js │ ├── sx.js │ ├── sx_c.js │ ├── sx_s.js │ ├── sy.js │ ├── sy_c.js │ ├── sy_s.js │ ├── sz.js │ ├── sz_c.js │ ├── sz_s.js │ ├── tc.js │ ├── tc_c.js │ ├── tc_s.js │ ├── td.js │ ├── td_c.js │ ├── td_s.js │ ├── tg.js │ ├── tg_c.js │ ├── tg_s.js │ ├── th.js │ ├── th_c.js │ ├── th_s.js │ ├── tj.js │ ├── tj_c.js │ ├── tj_s.js │ ├── tm.js │ ├── tm_c.js │ ├── tm_s.js │ ├── tn.js │ ├── tn_c.js │ ├── tn_s.js │ ├── to.js │ ├── to_c.js │ ├── to_s.js │ ├── tp.js │ ├── tp_c.js │ ├── tp_s.js │ ├── tr.js │ ├── tr_c.js │ ├── tr_s.js │ ├── tt.js │ ├── tt_c.js │ ├── tt_s.js │ ├── tw.js │ ├── tw_c.js │ ├── tw_s.js │ ├── tz.js │ ├── tz_c.js │ ├── tz_s.js │ ├── ua.js │ ├── ua_c.js │ ├── ua_s.js │ ├── ug.js │ ├── ug_c.js │ ├── ug_s.js │ ├── us.js │ ├── us_c.js │ ├── us_s.js │ ├── uy.js │ ├── uy_c.js │ ├── uy_s.js │ ├── uz.js │ ├── uz_c.js │ ├── uz_s.js │ ├── va_s.js │ ├── vc.js │ ├── vc_c.js │ ├── vc_s.js │ ├── ve.js │ ├── ve_c.js │ ├── ve_s.js │ ├── vg.js │ ├── vg_c.js │ ├── vg_s.js │ ├── vi.js │ ├── vi_c.js │ ├── vi_s.js │ ├── vn.js │ ├── vn_c.js │ ├── vn_s.js │ ├── vu.js │ ├── vu_c.js │ ├── vu_s.js │ ├── ws.js │ ├── ws_c.js │ ├── ws_s.js │ ├── xk.js │ ├── xk_c.js │ ├── xk_s.js │ ├── ye.js │ ├── ye_c.js │ ├── ye_s.js │ ├── yt.js │ ├── yt_c.js │ ├── yt_s.js │ ├── za.js │ ├── za_c.js │ ├── za_s.js │ ├── zm.js │ ├── zm_c.js │ ├── zm_s.js │ ├── zw.js │ ├── zw_c.js │ └── zw_s.js │ ├── europe.js │ ├── oceania.js │ └── world.js ├── package-lock.json ├── package.json └── tests ├── chart.test.js ├── formats.test.js ├── grid.test.js ├── label.test.js └── nest.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | node_modules 3 | 4 | # local env files 5 | .env.local 6 | .env.*.local 7 | 8 | # Log files 9 | npm-debug.log* 10 | yarn-debug.log* 11 | yarn-error.log* 12 | 13 | # Editor directories and files 14 | .idea 15 | .vscode 16 | *.suo 17 | *.ntvs* 18 | *.njsproj 19 | *.sln 20 | *.sw? 21 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | JSCharting offers both free and commercial licenses. To obtain a license (including free licenses), please visit https://jscharting.com/store/ -------------------------------------------------------------------------------- /dist/icons/linear/arrows/button-off.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/button-off": "M47 15H17C7.6 15 0 22.6 0 32s7.6 17 17 17h30c9.4 0 17-7.6 17-17s-7.6-17-17-17zM17 45C9.8 45 4 39.2 4 32s5.8-13 13-13 13 5.8 13 13-5.8 13-13 13z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/button-on.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/button-on": "M47 15H17C7.6 15 0 22.6 0 32s7.6 17 17 17h30c9.4 0 17-7.6 17-17s-7.6-17-17-17zm0 30c-7.2 0-13-5.8-13-13s5.8-13 13-13 13 5.8 13 13-5.8 13-13 13z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/button-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/button-up": "M32 0c-9.4 0-17 7.6-17 17v30c0 9.4 7.6 17 17 17s17-7.6 17-17V17c0-9.4-7.6-17-17-17zm0 30c-7.2 0-13-5.8-13-13S24.8 4 32 4s13 5.8 13 13-5.8 13-13 13z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/check": "M24.1 46.5L11.6 33.9l2.1-2.3L25 42.9l23.3-23.2 2.1 2.2-24.5 24.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/diagonal-left-to-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/diagonal-left-to-right": "M1.3 64L0 62.7V51.2h3V59L59 3h-7.8V0h11.5L64 1.3v11.5h-3V5L5 61h7.8v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/diagonal-right-to-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/diagonal-right-to-left": "M51.2 64v-3H59L3 5v7.8H0V1.3L1.3 0h11.5v3H5l56 56v-7.8h3v11.5L62.7 64z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/down-double.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/down-double": "M31.9 45.9L15.6 29.6l-2.1 2.3L31 49.5h1.9l17.4-17.6-2.1-2.2-16.3 16.2zm1-11.4l17.4-17.6-2.1-2.2-16.3 16.2-16.3-16.3-2.1 2.3L31 34.5h1.9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/down": "M31.1 42.5L13.6 24.9l2.1-2.3L32 38.9l16.3-16.3 2.1 2.3-17.5 17.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/downleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/downleft": "M22.8 42.5l-1.3-1.3V16.5h3v23h23v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/downright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/downright": "M16.5 42.5v-3h23v-23h3v24.7l-1.3 1.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/drag-horiz.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/drag-horiz": "M38.4 64V0h3v64h-3zm-7.9 0V0h3v64h-3zm-7.9 0V0h3v64h-3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/drag-vert.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/drag-vert": "M0 41.4v-3h64v3H0zm0-7.9v-3h64v3H0zm0-7.9v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/hamburger-list.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/hamburger-list": "M15.8 45.3v-3H64v3H15.8zM0 45.3v-3h6.9v3H0zm15.8-11.8v-3H64v3H15.8zM0 33.5v-3h6.9v3H0zm15.8-11.8v-3H64v3H15.8zM0 21.7v-3h6.9v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/hamburger-menu.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/hamburger-menu": "M11.5 46.5v-3h41v3h-41zm0-12v-3h41v3h-41zm0-12v-3h41v3h-41z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/horizontal.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/horizontal": "M0 32.9v-1.8l7.5-7.4 2.2 2.1L5 30.5h54l-4.7-4.7 2.2-2.1 7.5 7.4v1.8l-7.5 7.4-2.3-2.1 4.8-4.7H5l4.7 4.7-2.2 2.1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-alt.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-alt": "M63 0H1L0 1v62l1 1h62l1-1V1l-1-1zm-4.5 43.5H29.9l-1.1-.6-11.6-17.4H5.5v-3h12.6l1.1.6 11.6 17.4h27.7v3zm0-18h-29v-3h29v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-down": "M32 39.4l8.1-11.9H23.9L32 39.4zM63 0H1L0 1v62l1 1h62l1-1V1l-1-1zM33.1 43.5h-2.2L19.6 26.8l1.1-2.3h22.6l1.1 2.3-11.3 16.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-left": "M63 0H1L0 1v62l1 1h62l1-1V1l-1-1zM39.5 43.3l-2.3 1.1-16.7-11.3v-2.2l16.7-11.3 2.3 1.1v22.6zm-3-3.2V23.9L24.6 32l11.9 8.1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-return.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-return": "M63 0H1L0 1v62l1 1h62l1-1V1l-1-1zm-6.5 38.5H12.6l6.8 6.8-2.3 2.1-9.6-9.5v-1.8l9.6-9.5 2.3 2.1-6.8 6.8h40.9v-16h-10v-3h13v22z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-right": "M27.5 23.9v16.2L39.4 32l-11.9-8.1zM63 0H1L0 1v62l1 1h62l1-1V1l-1-1zM43.5 33.1L26.8 44.4l-2.3-1.1V20.7l2.3-1.1 16.7 11.3v2.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-tab.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-tab": "M63 0H1L0 1v62l1 1h62l1-1V1l-1-1zM47.5 32.9l-7.6 7.5-2.3-2.1 4.8-4.8H11.5v-3h30.9l-4.7-4.8 2.2-2.1 7.6 7.5v1.8zm4 8.6h-3v-19h3v19z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/keyboard-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/keyboard-up": "M23.9 38.5h16.2L32 26.6l-8.1 11.9zM63 0H1L0 1v62l1 1h62l1-1V1l-1-1zM43.3 41.5H20.7l-1.1-2.3 11.3-16.7h2.2l11.3 16.7-1.1 2.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/left-double.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/left-double": "M34.4 15.6l-2.3-2.1L14.5 31v1.9l17.6 17.4 2.2-2.1L18 31.9l16.4-16.3zm14.9 0l-2.2-2.1L29.5 31v1.9l17.6 17.4 2.2-2.1L33 31.9l16.3-16.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/left": "M18.5 32.9v-1.8l17.6-17.5 2.2 2.1L22.1 32l16.2 16.3-2.2 2.1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/minus": "M13.5 29.5h37v3h-37z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/move-bottom.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/move-bottom": "M0 59.6v-3h64v3H0zm31.1-7.9l-7.4-7.5 2.1-2.3 4.7 4.7V4.4h3v42.2l4.7-4.7 2.1 2.2-7.4 7.5h-1.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/move-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/move-left": "M4.4 64V0h3v64h-3zm7.9-31.1v-1.8l7.5-7.4 2.3 2.1-4.7 4.7h42.2v3H17.4l4.7 4.7-2.3 2.1-7.5-7.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/move-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/move-right": "M56.6 64V0h3v64h-3zM41.9 38.2l4.7-4.7H4.4v-3h42.2L42 25.8l2.2-2.1 7.5 7.4v1.8l-7.5 7.4-2.3-2.1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/move-top.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/move-top": "M30.5 59.6V17.3L25.8 22l-2.1-2.2 7.4-7.5h1.8l7.4 7.5-2.1 2.3-4.7-4.7v42.2h-3zM0 7.4v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/plus": "M30.5 50.5v-17h-17v-3h17v-17h3v17h17v3h-17v17z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/remove.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/remove": "M17.6 44.3L29.9 32 17.5 19.8l2.1-2.2L32 29.9l12.2-12.4 2.2 2.2L34.1 32l12.4 12.2-2.2 2.2L32 34.1 19.8 46.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/right-double.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/right-double": "M31.9 13.6l-2.3 2.1L45.9 32 29.6 48.3l2.3 2.1 17.6-17.5v-1.8L31.9 13.6zm2.6 17.5L16.9 13.6l-2.2 2.1L30.9 32 14.6 48.3l2.3 2.1 17.6-17.5v-1.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/right": "M25.6 48.3L41.9 32 25.7 15.7l2.2-2.1 17.6 17.5v1.8L27.9 50.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/shrink-diagonal.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/shrink-diagonal": "M0 61.9l25.5-25.5h-7.8v-3h11.6l1.3 1.3v11.6h-3v-7.8L2.1 64 0 61.9zm34.8-31.4l-1.3-1.3V17.7h3v7.8L61.9 0 64 2.1 38.5 27.6h7.8v3H34.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/sign-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/sign-down": "M14 45.4l18 19.1 18-19.1V0H14v45.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/sign-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/sign-left": "M18.6 14L-.5 32l19.1 18H64V14H18.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/sign-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/sign-right": "M0 14v36h45.4l19.1-18-19.1-18H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/sign-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/sign-up": "M32-.5L14 18.6V64h36V18.6L32-.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-downleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-downleft": "M61 46.7V29H5l6.7 6.7-2.2 2.1L0 28.4v-1.8l9.5-9.3 2.2 2L5 26h59v20.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-downright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-downright": "M0 46.7V26h59l-6.7-6.7 2.2-2 9.5 9.3v1.8l-9.5 9.4-2.2-2.1L59 29H3v17.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-leftdown.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-leftdown": "M35.6 64l-9.4-9.5 2.1-2.2L35 59V3H17.3V0H38v59l6.7-6.7 2 2.2-9.3 9.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-leftup.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-leftup": "M17.3 64v-3H35V5l-6.7 6.7-2.1-2.2L35.6 0h1.8l9.3 9.5-2 2.2L38 5v59z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-rightdown.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-rightdown": "M26.6 64l-9.3-9.5 2-2.2L26 59V0h20.7v3H29v56l6.7-6.7 2.1 2.2-9.4 9.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-rightup.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-rightup": "M26 64V5l-6.7 6.7-2-2.2L26.6 0h1.8l9.4 9.5-2.1 2.2L29 5v56h17.7v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-upleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-upleft": "M0 37.4v-1.8l9.5-9.4 2.2 2.1L5 35h56V17.3h3V38H5l6.7 6.7-2.2 2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slide-upright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slide-upright": "M52.3 44.7L59 38H0V17.3h3V35h56l-6.7-6.7 2.2-2.1 9.5 9.4v1.8l-9.5 9.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slim-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slim-down": "M31.1 64l-9.3-9.5 2-2.2 6.7 6.7V0h3v59l6.7-6.7 2 2.2-9.3 9.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slim-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slim-left": "M0 32.9v-1.8l9.5-9.3 2.2 2L5 30.5h59v3H5l6.7 6.7-2.2 2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slim-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slim-right": "M52.3 40.2l6.7-6.7H0v-3h59l-6.7-6.7 2.2-2 9.5 9.3v1.8l-9.5 9.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/slim-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/slim-up": "M30.5 64V5l-6.7 6.7-2-2.2L31.1 0h1.8l9.3 9.5-2 2.2L33.5 5v59z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-check": "M0 0v64h64V0H0zm25.9 46.5h-1.8L11.6 33.9l2.1-2.3L25 42.9l23.3-23.2 2.1 2.2-24.5 24.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-down": "M0 0v64h64V0H0zm32.9 42.5h-1.8L13.6 24.9l2.1-2.3L32 38.9l16.3-16.2 2.1 2.2-17.5 17.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-downleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-downleft": "M0 0v64h64V0H0zm47.5 42.5H22.8l-1.3-1.3V16.5h3v23h23v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-downright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-downright": "M0 0v64h64V0H0zm42.5 41.2l-1.3 1.3H16.5v-3h23v-23h3v24.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-left": "M0 0v64h64V0H0zm36.1 50.4L18.5 32.9v-1.8l17.6-17.5 2.2 2.1L22.1 32l16.3 16.3-2.3 2.1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-minus": "M0 0v64h64V0H0zm50.5 32.5h-37v-3h37v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-plus": "M0 0v64h64V0H0zm50.5 33.5h-17v17h-3v-17h-17v-3h17v-17h3v17h17v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-remove.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-remove": "M0 0v64h64V0H0zm44.3 44.5L32 32.2 19.8 44.6l-2.1-2.1 12.2-12.3-12.4-12.3 2.1-2.1L32 28l12.2-12.3 2.1 2.1-12.2 12.3 12.3 12.2-2.1 2.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-right": "M0 0v64h64V0H0zm45.5 32.9L27.9 50.4l-2.3-2.1L41.9 32 25.6 15.7l2.3-2.1 17.6 17.5v1.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-up": "M0 0v64h64V0H0zm48.3 41.4L32 25.1 15.7 41.3l-2.1-2.2 17.5-17.6h1.8l17.5 17.6-2.1 2.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-upleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-upleft": "M0 0v64h64V0H0zm47.5 24.5h-23v23h-3V22.8l1.3-1.3h24.7v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/square-upright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/square-upright": "M0 0v64h64V0H0zm42.5 47.5h-3v-23h-23v-3h24.7l1.3 1.3v24.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/squares.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/squares": "M29 0H0v29h29V0zm6 29h29V0H35v29zm-6 6H0v29h29V35zm6 29h29V35H35v29z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/up-double.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/up-double": "M32 18l16.3 16.3 2.1-2.2-17.5-17.6h-1.8L13.6 32.1l2.1 2.2L32 18zm-.9 11.5L13.6 47.1l2.1 2.2L32 33l16.3 16.3 2.1-2.2-17.5-17.6h-1.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/up": "M13.6 39.1l17.5-17.6h1.8l17.5 17.6-2.1 2.2L32 25.1 15.7 41.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/upleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/upleft": "M21.5 47.5V22.8l1.3-1.3h24.7v3h-23v23z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/upright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/upright": "M39.5 47.5v-23h-23v-3h24.7l1.3 1.3v24.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/arrows/vertical.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/arrows/vertical": "M31.1 64l-7.4-7.5 2.1-2.3 4.7 4.8V5l-4.7 4.7-2.1-2.2L31.1 0h1.8l7.4 7.5-2.1 2.3L33.5 5v54l4.7-4.7 2.1 2.2-7.4 7.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/archive.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/archive": "M3.9 64V39.4h.2l6-39.4H54l5.9 39.4h.2V64H3.9zm18.7-24.6v1.5c0 5.2 4.2 9.4 9.4 9.4s9.4-4.2 9.4-9.4v-1.5h15.5L51.4 3H12.6L7.1 39.4h15.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/battery-empty.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/battery-empty": "M60.1 25.6v-5.9H0v26.6h60.1v-5.9H64V25.6h-3.9zm-3 17.8H3V22.7h54.1v20.7zm3.9-6h-1v-8.9h1v8.9zM14.8 24H4v18h15.3l-4.5-18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/battery-full.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/battery-full": "M60.1 25.6v-5.9H0v26.6h60.1v-5.9H64V25.6h-3.9zm-3 17.8H3V22.7h54.1v20.7zm3.9-6h-1v-8.9h1v8.9zM56 24H4v18h52V24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/battery-half.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/battery-half": "M60.1 25.6v-5.9H0v26.6h60.1v-5.9H64V25.6h-3.9zm-3 17.8H3V22.7h54.1v20.7zm3.9-6h-1v-8.9h1v8.9zM29.8 24H4v18h30.3l-4.5-18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/bolt.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/bolt": "M37.8 0L14.4 36.5l.9 1.6h12.9l-6.8 25.1 1.8.9 26.4-36.5-.8-1.6h-13L39.7.8c-.1-.1-1.9-.8-1.9-.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/book-pen.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/book-pen": "M53.2 53V8.9h-1v8.8h-3V5.9h4V2H64v51l-5.4 10.9zM0 0v64h48.2V0H0zm7.9 61H3V3h4.9v58zm34.6-38.5h-29v-3h29v3zm0-6h-29v-3h29v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/book-pencil.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/book-pencil": "M53.2 0v54l5.4 10.8L64 54V0H53.2zM61 9.9h-4.9V3H61v6.9zM0 0v64h48.2V0H0zm7.9 61.1H3V3h4.9v58.1zm34.6-38.6h-29v-3h29v3zm0-6h-29v-3h29v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/book.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/book": "M5.9 0v64h48.2V0H5.9zm7.9 61h-5V3h4.9v58zm34.7-38.5h-29v-3h29v3zm0-6h-29v-3h29v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/bookmark.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/bookmark": "M17 64.4l15-15 15 15V0H17v64.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/cloud.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/cloud": "M56 33c-.5-11.1-10.1-20-21.9-20-10.4 0-19.6 6.8-21.9 16h-.9C5.1 29 0 33.9 0 40c0 6.2 4.8 11 11 11h44c5 0 9-4 9-9 0-4.7-3.5-8.5-8-9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/diamonds.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/diamonds": "M33 64.7L57.2 32 33-.7 8.8 32 33 64.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/display.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/display": "M21.7 64.1v-3h8.9v-8.9H0V8.9h64v43.3H33.5v8.9h8.9v3H21.7zM61 41.4V11.9H3v29.5h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/download.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/download": "M33.5 54V25.6h-3V54l-5.7-5.7-2 2.3 8.3 8.5h1.8l8.4-8.5-2.1-2.2-5.7 5.6zM0 4.9v38.4h24.6v-2.9H3V7.9h58v32.5H39.4v2.9H64V4.9H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/flag-flutter.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/flag-flutter": "M5.9 64V0h3v4.9h24.6v4.9H59l-6.6 13.3L59 36.4H24.6v-4.9H8.9V64h-3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/flag.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/flag": "M10.8 64V0h3v4.9h41.3l-6.6 13.3 6.6 13.3H13.8V64h-3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/folder-multiple.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/folder-multiple": "M20 14H0v41h57V21H27.1L20 14zm14.1-1L27 6H7v6h13.9l.5.6L28 19h31v28h5V13H34.1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/folder.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/folder": "M22.4 9H0v46h64V17H30.4l-8-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/home.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/home": "M-.4 34H10v30h14V48h14v16h14V34h12.4L32 1.6-.4 34z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/laptop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/laptop": "M34.5 14.5h-5v3h5v-3zM0 45v8h64v-8H0zm57.5-34.5h-51v33h51v-33zm-3 30h-45v-27h45v27z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/magic-mouse.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/magic-mouse": "M32 0c-9.4 0-17 7.6-17 17v30c0 9.4 7.6 17 17 17s17-7.6 17-17V17c0-9.4-7.6-17-17-17zm1.5 18.5h-3v-9h3v9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/mail-multiple.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/mail-multiple": "M52.3 16.7H1.7l25.4 14.6 25.2-14.6zM0 19.1v32.1h54.2V19L27.1 34.7 0 19.1zM8.9 7.8v6.9h47.3v27.6H64V7.8H8.9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/mail-open.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/mail-open": "M0 64V25.1L9.8 21V0h44.3v21l9.8 4.1V64H0zm32-20.5l19.2-12V3H12.8v28.5l19.2 12zm22.2-13.9l5.2-3.2-5.2-2.2v5.4zm-44.4 0v-5.4l-5.2 2.2 5.2 3.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/mail.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/mail": "M32 34.7L0 14v37.2h64V14L32 34.7zm30-22.9H2l30 19.4 30-19.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/map.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/map": "M22.4 4.8l19.2 7.7v46.8l-19.2-7.7V4.8zM0 12.5l20.3-7.7v46.8L0 59.3V12.5zm64 39l-20.3 7.7V12.5L64 4.7v46.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/message-multiple.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/message-multiple": "M0 50h13v11.7L26.4 50H56V10H0v40zM8 2v6h50v34h6V2H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/message-txt.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/message-txt": "M0 4v44h17v13.2L32.4 48H64V4H0zm54.5 33.5h-45v-3h45v3zm0-10h-45v-3h45v3zm0-10h-45v-3h45v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/message.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/message": "M0 48h17v13.2L32.4 48H64V4H0v44z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/paperplane.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/paperplane": "M61.6.3L0 29.1v2.4l20.3 10.1zM22.4 43.7L32.5 64h2.4L63.7 2.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/pin.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/pin": "M30.5 64V37.4h-17l1.4-8.4 8.8-3.9L25.5 10l-4.8-3.9V0h22.6v6.1L38.5 10l1.8 15.1 8.8 3.9 1.4 8.4h-17V64h-3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/postcard.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/postcard": "M55.5 20.5h-5v7h5v-7zM0 12v43h64V12H0zm5.5 13.5h25v3h-25v-3zm27 9h-27v-3h27v3zm2-12h-29v-3h29v3zm6 27h-3v-32h3v32zm18-19h-11v-13h11v13z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/sheet-multiple.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/sheet-multiple": "M6.9 20.6V64h41.4V7.9H19.6L6.9 20.6zm11.8-.9h-6.8l6.8-6.8v6.8zM28.4 0l-5.8 5.9h27.6v50.2h6.9V0H28.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/sheet.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/sheet": "M7.9 64V14.6L22.5 0h33.6v64H7.9zm13.8-50.2V5L13 13.7h8.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/signs.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/signs": "M23.6 64v-3h6.9V41.2H8.7L0 33.8l8.7-7.4h21.8v-1h-9.9V10.5h9.9v-4h3v4h21.8l8.7 7.4-8.7 7.4H33.5v1h9.9v14.9h-9.9V61h6.9v3H23.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/spread-bookmark.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/spread-bookmark": "M64 54.5l-30.9 4v-49l9.6-1.2v20.2l5.3-2.7 5.3 2.7V6.9L64 5.5v49zM44.8 8l6.4-.8V25L48 23.3l-3.2 1.6V8zM0 5.5l30.9 4v49L0 54.5v-49z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/spread.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/spread": "M0 5.5l30.9 4v49L0 54.5v-49zm64 49l-30.9 4v-49l30.9-4v49z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/star.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/star": "M32-2l-8.7 25H-.9l19.7 15.4L10 64.7l22-16.5 22 16.5-8.8-26.4L64.9 23H40.7L32-2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/todo.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/todo": "M8.9 64V6.9h13.4l.7-3h3.6V0h10.8v3.9H41l.7 3h13.4V64H8.9zM40 11.8l-1.2-4.9h-4.3V3h-4.9v3.9h-4.3L24 11.8h16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/trashcan.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/trashcan": "M40.4 7.9V0H23.6v7.9H9.8v3h3V64h38.4V10.8h3v-3H40.4zM26.6 3h10.8v4.9H26.6V3zm1 51.2h-3V19.7h3v34.5zm11.8 0h-3V19.7h3v34.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/upload.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/upload": "M32.9 24.6h-1.8l-8.4 8.5 2.1 2.2 5.7-5.7v28.5h3V29.6l5.7 5.8 2.1-2.3-8.4-8.5zM0 4.9v38.4h24.6v-2.9H3V7.9h58v32.5H39.4v2.9H64V4.9H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/basic/webpage.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/basic/webpage": "M0 5.9v52.2h64V5.9H0zm21.7 3.9h4.9v3h-4.9v-3zm-7.9 0h4.9v3h-4.9v-3zm-7.9 0h4.9v3H5.9v-3zM61 55.1H3V16.7h58v38.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/bag.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/bag": "M43.3 16.7v-5.4C43.3 5.1 38.2 0 32 0S20.7 5.1 20.6 11.3v5.4H8.9V64h46.3V16.7H43.3zm-19.7-5.3C23.6 6.8 27.4 3 32 3s8.4 3.7 8.4 8.3v5.4H23.6v-5.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/basket-minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/basket-minus": "M50.4 23.8L42.9 4.9 40.2 6l7.1 17.8H16.7L23.8 6l-2.7-1.2-7.6 19H0l11.6 35.8h40.8L64 23.8H50.4zm-8.9 20.7h-19v-3h19v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/basket-plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/basket-plus": "M50.4 23.8l-7.6-19-2.7 1.1 7.2 17.9H16.7L23.8 6l-2.7-1.1-7.5 18.9H0l11.6 35.8h40.8L64 23.8H50.4zm-8.9 20.7h-8v8h-3v-8h-8v-3h8v-8h3v8h8v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/basket.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/basket": "M50.4 23.5L42.9 4.6l-2.7 1.1 7.1 17.8H16.7l7.1-17.8-2.7-1.1-7.5 18.9H0l11.6 35.9h40.8L64 23.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/creditcard.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/creditcard": "M41.3 45.3H11.8v3h29.5v-3zm-30.5 0H5.9v3h4.9v-3zM0 9.8v44.3h64V9.8H0zm61 41.4H3V26.6h58v24.6zm0-35.4H3v-3h58v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/graph-column.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/graph-column": "M23 64H9V28h14v36zm32 0H41V38h14v26zm-16 0H25V0h14v64z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/megaphone.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/megaphone": "M35 17h9v24h-9zM60.7 4L46 15.3v27.4L60.7 54H64V4zM6.6 16L0 22.6v12.8L6.6 42h11l-7 18h8.1l10-18H33V16H6.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/ecommerce/sale.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/ecommerce/sale": "M25.4 0H0v25.4l39 39L64.4 39l-39-39zM17 24c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/bookmark-checck.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/bookmark-checck": "M17 0v64l15-15 15 15V0H17zm12.9 30.5h-1.8l-7.5-7.6 2.1-2.3 6.3 6.3 12.3-12.3 2.1 2.3-13.5 13.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/bookmark-minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/bookmark-minus": "M17 0v64l15-15 15 15V0H17zm24.5 23.5h-19v-3h19v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/bookmark-plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/bookmark-plus": "M17 0v64l15-15 15 15V0H17zm24.5 23.5h-8v8h-3v-8h-8v-3h8v-8h3v8h8v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/calendar-empty.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/calendar-empty": "M0 59.1V8.9h10.8v-4h8.9v3.9h24.6V4.9h8.9v3.9H64V59H0zm61-3V19.7H3v36.4h58zM50.2 12.8V7.9h-3v4.9h3zm-33.5 0V7.9h-3v4.9h3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/document-check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/document-check": "M22.5 0L7.9 14.7V64h48.2V0H22.5zm-.8 5v8.7H13L21.7 5zm9.2 39.5h-1.8l-7.5-7.6 2.1-2.3 6.3 6.3 12.3-12.3 2.1 2.2-13.5 13.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/document-flagged.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/document-flagged": "M22.4-.5L7.5 14.4v50.1h49v-65H22.4zm-.9 14h-8.9l8.9-8.9v8.9zm23.2 20H28.5v11h-3v-24h3v2h16.2L41.3 28l3.4 5.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/document-graph.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/document-graph": "M22.5 0L7.9 14.7V64h48.2V0H22.5zm-.8 5v8.7H13L21.7 5zm22.8 41.5h-25v-3h2v-8h7v-10h7v7h7v11h2v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/document-minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/document-minus": "M22.5 0L7.9 14.7V64h48.2V0H22.5zm-.8 13.8H13L21.7 5v8.8zm19.8 23.7h-19v-3h19v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/document-pencil.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/document-pencil": "M22.5 0L7.9 14.7V64h48.2V0H22.5zm-.8 5v8.7H13L21.7 5zm6 41.4L20 47.9l1.5-7.7L38 23.9l6.1 6.1-16.4 16.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/document-plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/document-plus": "M22.5 0L7.9 14.7V64h48.2V0H22.5zm-.8 13.8H13L21.7 5v8.8zm19.8 23.7h-8v8h-3v-8h-8v-3h8v-8h3v8h8v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-check": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm.3 27.8h-1.8l-7.5-7.6 2.1-2.2 6.3 6.2 12.3-12.3 2.1 2.2-13.5 13.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-download.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-download": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm2.3 29.8h-1.8l-8.5-8.6 2.1-2.3 5.8 5.8V24.5h3v16.9l5.8-5.7 2.1 2.2-8.5 8.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-flagged.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-flagged": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm14.1 18.8H28.5v11h-3v-24h3v2h16.2L41.3 30l3.4 5.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-graph.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-graph": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm13.9 29.8h-25v-3h2v-8h7v-10h7v7h7v11h2v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-minus": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm10.9 20.8h-19v-3h19v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-next.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-next": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm12.9 20.2l-8.6 8.5-2.3-2.1 5.8-5.8H21.5v-3h16.9l-5.7-5.8 2.2-2.1 8.6 8.5v1.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-pencil.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-pencil": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm-2.9 29.7L20 47.9l1.5-7.7L38 23.9l6.1 6.1-16.4 16.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-plus": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm10.9 20.8h-8v8h-3v-8h-8v-3h8v-8h3v8h8v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-previous.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-previous": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm11.9 20.8H25.6l5.7 5.8-2.2 2.1-8.6-8.5v-1.8l8.6-8.5 2.2 2.1-5.7 5.8h16.9v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/folder-upload.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/folder-upload": "M30.6 16.7l-7.9-7.9H0v46.3h64V16.7H30.6zm8.7 18.7l-5.8-5.8v16.9h-3V29.6l-5.8 5.8-2.1-2.3 8.5-8.6h1.8l8.5 8.6-2.1 2.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/message-check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/message-check": "M0 4v44.3h16.7v13.5l15.8-13.5H64V4H0zm30.9 30.5h-1.8l-7.5-7.6 2.1-2.3 6.3 6.3 12.3-12.3 2.1 2.2-13.5 13.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/message-dots.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/message-dots": "M0 4v44.3h16.7v13.5l15.8-13.5H64V4H0zm25.5 23.5h-7v-3h7v3zm10 0h-7v-3h7v3zm10 0h-7v-3h7v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/message-minus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/message-minus": "M0 4v44.3h16.7v13.5l15.8-13.5H64V4H0zm41.5 23.5h-19v-3h19v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/elaboration/message-plus.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/elaboration/message-plus": "M0 4v44.3h16.7v13.5l15.8-13.5H64V4H0zm41.5 23.5h-8v8h-3v-8h-8v-3h8v-8h3v8h8v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/music/mixer.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/music/mixer": "M0 0v64h64V0H0zm22.5 15.5h-5v39h-3v-39h-5v-3h5v-3h3v3h5v3zm16 18h-5v21h-3v-21h-5v-3h5v-21h3v21h5v3zm16 18h-5v3h-3v-3h-5v-3h5v-39h3v39h5v3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/music/mute.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/music/mute": "M16.2 44.8H4V19.2h12.3L35.4 0v64L16.2 44.8zM50.1 34l-7.9 7.9-2-2 7.9-7.9-7.9-7.9 2-2 7.9 7.9 7.9-7.9 2 2-7.9 7.9 7.9 7.9-2 2-7.9-7.9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/music/note-single.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/music/note-single": "M22.2 64c-5.1 0-9.3-4.2-9.3-9.3s4.2-9.3 9.3-9.3c2.4 0 4.6.9 6.3 2.5V6.7L51 0v16.7l-19.5 5.9v32.1c0 5.1-4.2 9.3-9.3 9.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/box-rectangle.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/box-rectangle": "M0 53.2V10.8h64v42.3H0zm57.5-3L32 33.8 6.5 50.2h51zM3 49l26.3-17L3 15v34zm58 0V15L34.7 32 61 49zM32 30.2l25.5-16.5h-51L32 30.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/character.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/character": "M50.2 64V0h3v64h-3zM36.7 39.4H18.4l-4.9 13.8-2.8-1L26 8.9h3.1l15.3 43.5-2.8 1-4.9-14zm-1-3l-8.1-23-8.1 23h16.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/crop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/crop": "M51.2 64v-9.8H9.8V12.8H0v-3h9.8V0h3v9.8h39.3L61.9 0 64 2.1l-9.8 9.8v39.3H64v3h-9.8V64h-3zm0-12.8V14.9L14.9 51.2h36.3zm-38.4-2.1l36.3-36.3H12.8v36.3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/horizontal-align-center.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/horizontal-align-center": "M30.5 64V52.2H4.9V33.5h25.6v-3H10.8V11.8h19.7V0h3v11.8h19.7v18.7H33.5v3h25.6v18.7H33.5V64z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/horizontal-align-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/horizontal-align-left": "M0 64V0h3v64H0zm5.9-11.8V33.5H60v18.7H5.9zm0-21.7V11.8h42.3v18.7H5.9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/horizontal-align-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/horizontal-align-right": "M61.1 64V0h3v64h-3zM4 52.2V33.5h54.2v18.7H4zm11.8-21.7V11.8h42.3v18.7H15.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/horizontal-distribute-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/horizontal-distribute-left": "M33.5 64V0h3v10.8h15.8v42.3H36.4V64h-2.9zm-21.7 0V0h3v4.9h15.8v54.2H14.8V64h-3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/horizontal-distribute-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/horizontal-distribute-right": "M49.2 64V53.2H33.5V10.8h15.8V0h3v64h-3.1zm-21.6 0v-4.9H11.8V4.9h15.8V0h3v64h-3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-2columns.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-2columns": "M0 64V0h64v64H0zm61-3V3H33.5v58H61zm-30.5 0V3H3v58h27.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-3columns.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-3columns": "M0 64V0h64v64H0zm61-3V3H44.3v58H61zm-19.6 0V3H22.6v58h18.8zm-21.7 0V3H3v58h16.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-4boxes.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-4boxes": "M0 64V0h64v64H0zm61-3V33.5H33.5V61H61zm-30.5 0V33.5H3V61h27.5zM61 30.5V3H33.5v27.6H61zm-30.5 0V3H3v27.6h27.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-4columns.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-4columns": "M0 64V0h64v64H0zm61-3V3H48.2v58H61zm-15.7 0V3H33.5v58h11.8zm-14.8 0V3H17.7v58h12.8zm-15.7 0V3H3v58h11.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-4lines.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-4lines": "M0 64V0h64v64H0zm61-3V48.2H3V61h58zm0-15.7V33.5H3v11.8h58zm0-14.8V17.7H3v12.8h58zm0-15.7V3H3v11.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-2columns.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-2columns": "M0 64V0h64v64H0zm61-3V16.7H33.5V61H61zm-30.5 0V16.7H3V61h27.5zM61 13.8V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-3columns.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-3columns": "M0 64V0h64v64H0zm61-3V16.7H44.3V61H61zm-19.6 0V16.7H22.6V61h18.8zm-21.7 0V16.7H3V61h16.7zM61 13.8V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-complex.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-complex": "M0 64V0h64v64H0zm61-3V16.7H48.2V61H61zm-15.7 0V16.7H33.5V61h11.8zm-14.8 0V16.7H3V61h27.5zM61 13.8V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-left-sidebar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-left-sidebar": "M0 64V0h64v64H0zm61-3V39.4H23.6V61H61zm-40.3 0V16.7H3V61h17.7zM61 36.4V16.7H23.6v19.7H61zm0-22.6V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-right-sidebar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-right-sidebar": "M0 64V0h64v64H0zm61-3V16.7H43.3V61H61zm-20.6 0V39.4H3V61h37.4zm0-24.6V16.7H3v19.7h37.4zM61 13.8V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-sideleft.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-sideleft": "M0 64V0h64v64H0zm61-3V16.7H23.6V61H61zm-40.3 0V16.7H3V61h17.7zM61 13.8V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header-sideright.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header-sideright": "M0 64V0h64v64H0zm61-3V16.7H43.3V61H61zm-20.6 0V16.7H3V61h37.4zM61 13.8V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-header.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-header": "M0 64V0h64v64H0zm61-3V16.7H3V61h58zm0-47.2V3H3v10.8h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-sidebar-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-sidebar-left": "M0 64V0h64v64H0zm61-3V3H22.6v58H61zm-41.3 0V3H3v58h16.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout-sidebar-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout-sidebar-right": "M0 64V0h64v64H0zm61-3V3H44.3v58H61zm-19.6 0V3H3v58h38.4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/layout.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/layout": "M0 64V0h64v64H0zm61-3V3H3v58h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/pages.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/pages": "M30.5 5.9h3v52.2h-3zm-3 47.9v-44H10.7L0 20.6v33.6h27.5v-.4zM9.8 19.7H5l4.8-4.8v4.8zm43.5-9.9H36.5v44.3H64V20.6L53.3 9.8zm.9 9.9v-4.8l4.8 4.8h-4.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paintroller.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paintroller": "M26.6 64V40.4h3.9V22.6h28.6V10.8h-3v8.9H5.9v-8.9H2v-3h3.9V0h50.2v7.9H62v17.7H33.5v14.8h3.9V64H26.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph-align-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph-align-left": "M0 58.1v-3h54.2v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h50.2v3H0zm0-9.8v-3h64v3H0zm0-9.9v-3h46.3v3H0zm0-9.8v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph-center.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph-center": "M4.9 58.1v-3h54.2v3H4.9zM0 48.2v-3h64v3H0zm6.9-9.8v-3h50.2v3H6.9zM0 28.6v-3h64v3H0zm8.9-9.9v-3h46.3v3H8.9zM0 8.9v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph-justify-all.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph-justify-all": "M0 58.1v-3h64v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph-justify-center.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph-justify-center": "M9.8 58.1v-3h44.3v3H9.8zM0 48.2v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph-justify-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph-justify-left": "M0 58.1v-3h44.3v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph-justify-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph-justify-right": "M19.7 58.1v-3H64v3H19.7zM0 48.2v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.8v-3h64v3H0zm0-9.9v-3h64v3H0zm0-9.8v-3h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/paragraph.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/paragraph": "M49.2 64V3h-6.9v61h-3V34.5H29c-.2 0-17.2-.2-17.2-17.2S28.9 0 29 0h23.1v64h-2.9zM29 3c-.6 0-14.3.2-14.3 14.3S28.5 31.5 29 31.5h10.3V3H29z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/shape-polygon.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/shape-polygon": "M16 60.2L0 32 16 3.8h32L64 32 48 60.2H16zm30.3-3L60.6 32 46.3 6.8H17.7L3.4 32l14.3 25.2h28.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/shape-rectangle.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/shape-rectangle": "M0 53.2V10.8h64v42.3H0zm61-3V13.8H3v36.4h58z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/slice.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/slice": "M1.1 61.2l35.3-14.1.5-.5L45 31.5l-.2-1.3-7.1-7.2h-1.4L0 59.4l1.1 1.8zm46.8-32.5L64 10.5V9l-6.1-6.2h-1.4L39 20.2v1.4l7.2 7.1h1.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/vector-line.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/vector-line": "M0 64V51.2h10.7l40.5-40.5V0H64v12.8H53.3L12.8 53.3V64H0zm9.8-3v-6.9H3V61h6.8zM61 9.8V3h-6.9v6.9H61z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/vertical-align-bottom.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/vertical-align-bottom": "M0 64v-3h64v3H0zm33.5-5.9V15.8h18.7v42.3H33.5zm-21.7 0V4h18.7v54.2H11.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/vertical-align-center.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/vertical-align-center": "M11.8 59.1V33.5H0v-3h11.8V4.9h18.7v25.6h3V10.8h18.7v19.7H64v3H52.2v19.7H33.5V33.5h-3v25.6H11.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/vertical-align-top.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/vertical-align-top": "M11.8 60V5.9h18.7V60H11.8zm21.7-11.8V5.9h18.7v42.3H33.5zM0 2.9V0h64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/vertical-distribute-bottom.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/vertical-distribute-bottom": "M0 52.2v-3h4.9V33.5h54.2v15.8H64v3H0zm0-21.7v-3h10.8V11.8h42.3v15.8H64v3H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linear/software/vertical-distribute-top.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linear/software/vertical-distribute-top": "M4.9 52.2V36.4H0v-3h64v3h-4.9v15.8H4.9zm5.9-21.7V14.8H0v-3h64v3H53.2v15.8H10.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/arrow-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/arrow-down": "M9.854 19.354l6-6a.5.5 0 0 0-.707-.707l-5.146 5.146V1.5a.5.5 0 0 0-1 0v16.293l-5.146-5.146a.5.5 0 0 0-.707.708l6 6a.5.5 0 0 0 .707 0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/arrow-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/arrow-left": "M.646 10.146l6-6a.5.5 0 0 1 .707.707L2.207 9.999H18.5a.5.5 0 0 1 0 1H2.207l5.146 5.146a.5.5 0 0 1-.708.707l-6-6a.5.5 0 0 1 0-.707z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/arrow-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/arrow-right": "M19.354 10.146l-6-6a.5.5 0 0 0-.707.707l5.146 5.146H1.5a.5.5 0 0 0 0 1h16.293l-5.146 5.146a.5.5 0 0 0 .708.707l6-6a.5.5 0 0 0 0-.707z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/arrow-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/arrow-up": "M9.146.646l-6 6a.5.5 0 0 0 .707.707l5.146-5.146V18.5a.5.5 0 0 0 1 0V2.207l5.146 5.146a.5.5 0 0 0 .707-.708l-6-6a.5.5 0 0 0-.707 0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/bookmark.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/bookmark": "M15.5 20c-.1 0-.3-.1-.4-.2l-5.6-6.6-5.6 6.6c-.2.2-.5.2-.7.1-.1-.1-.2-.3-.2-.4v-18c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5v18c0 .3-.2.5-.5.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/chevron-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/chevron-down": "M0 6a.5.5 0 0 1 .853-.354l8.646 8.646 8.646-8.646a.5.5 0 0 1 .707.707l-9 9a.5.5 0 0 1-.707 0l-9-9a.498.498 0 0 1-.146-.354z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/chevron-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/chevron-left": "M14 20a.5.5 0 0 0 .354-.853l-8.646-8.646 8.646-8.646a.5.5 0 0 0-.707-.707l-9 9a.5.5 0 0 0 0 .707l9 9a.498.498 0 0 0 .354.146z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/chevron-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/chevron-right": "M5 20a.5.5 0 0 1-.354-.853l8.646-8.646-8.646-8.646a.5.5 0 0 1 .707-.707l9 9a.5.5 0 0 1 0 .707l-9 9a.498.498 0 0 1-.354.146z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/chevron-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/chevron-up": "M0 15a.5.5 0 0 0 .853.354l8.646-8.646 8.646 8.646a.5.5 0 0 0 .707-.707l-9-9a.5.5 0 0 0-.707 0l-9 9a.498.498 0 0 0-.146.354z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/cloud.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/cloud": "M16 16H6c-3.3 0-6-2.7-6-6s2.7-6 6-6c1.6 0 3.1.6 4.3 1.8C10.7 4.7 11.8 4 13 4c1.7 0 3 1.4 3 3 0 .3-.1.7-.2 1 2.2-.1 4.1 1.6 4.2 3.8v.2c0 2.2-1.8 4-4 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/italic.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/italic": "M15.5 2h-8a.5.5 0 0 0 0 1h3.39l-2.8 14H4.5a.5.5 0 0 0 0 1h8a.5.5 0 0 0 0-1H9.11l2.8-14h3.59a.5.5 0 0 0 0-1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/location.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/location": "M8.5 20c-.3 0-.5-.2-.5-.5V12H.5c-.3 0-.5-.2-.5-.5 0-.2.1-.3.2-.4l19-11c.2-.1.5-.1.7.2.1.2.1.3 0 .5l-11 19c-.1.1-.2.2-.4.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/menu.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/menu": "M17.5 6h-15a.5.5 0 0 1 0-1h15a.5.5 0 0 1 0 1zm0 5h-15a.5.5 0 0 1 0-1h15a.5.5 0 0 1 0 1zm0 5h-15a.5.5 0 0 1 0-1h15a.5.5 0 0 1 0 1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/pilcrow.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/pilcrow": "M15.5 2H7C4.794 2 3 3.794 3 6s1.794 4 4 4h1v7.5a.5.5 0 0 0 1 0V3h3v14.5a.5.5 0 0 0 1 0V3h2.5a.5.5 0 0 0 0-1zM8 9H7C5.346 9 4 7.654 4 6s1.346-3 3-3h1v6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/tablet.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/tablet": "M5 3h10v12H5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/linearicons/volume.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "linearicons/volume": "M8.1 3.2c-.2 0-.5.1-.7.3L3.3 7H1.5C.7 7 0 7.7 0 8.5v4c0 .8.7 1.5 1.5 1.5h1.8l4.1 3.5c.2.2.5.3.7.3.3 0 .5-.1.7-.4.1-.1.2-.4.2-.7V4.2c0-.7-.4-1-.9-1z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/accessibility.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/accessibility": "M24 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm18 14H30v26h-4V32h-4v12h-4V18H6v-4h36v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/account-balance.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/account-balance": "M8 20v14h6V20H8zm12 0v14h6V20h-6zM4 44h38v-6H4v6zm28-24v14h6V20h-6zM23 2L4 12v4h38v-4L23 2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/announcement.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/announcement": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM26 22h-4V10h4v12zm0 8h-4v-4h4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/assessment.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/assessment": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM18 34h-4V20h4v14zm8 0h-4V14h4v20zm8 0h-4v-8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/book.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/book": "M36 4H12C9.79 4 8 5.79 8 8v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM12 8h10v16l-5-3-5 3V8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/bookmark-border.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/bookmark-border": "M34 6H14c-2.21 0-3.98 1.79-3.98 4L10 42l14-6 14 6V10c0-2.21-1.79-4-4-4zm0 30l-10-4.35L14 36V10h20v26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/bookmark.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/bookmark": "M34 6H14c-2.21 0-3.98 1.79-3.98 4L10 42l14-6 14 6V10c0-2.21-1.79-4-4-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/change-history.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/change-history": "M24 15.55L36.78 36H11.22L24 15.55M24 8L4 40h40L24 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/class.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/class": "M36 4H12C9.79 4 8 5.79 8 8v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM12 8h10v16l-5-3-5 3V8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/code.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/code": "M18.8 33.2L9.7 24l9.2-9.2L16 12 4 24l12 12 2.8-2.8zm10.4 0l9.2-9.2-9.2-9.2L32 12l12 12-12 12-2.8-2.8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/compare-arrows.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/compare-arrows": "M18.02 28H4v4h14.02v6L26 30l-7.98-8v6zm11.96-2v-6H44v-4H29.98v-6L22 18l7.98 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/credit-card.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/credit-card": "M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 28H8V24h32v12zm0-20H8v-4h32v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/dashboard.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/dashboard": "M6 26h16V6H6v20zm0 16h16V30H6v12zm20 0h16V22H26v20zm0-36v12h16V6H26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/delete.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/delete": "M12 38c0 2.21 1.79 4 4 4h16c2.21 0 4-1.79 4-4V14H12v24zM38 8h-7l-2-2H19l-2 2h-7v4h28V8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/description.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/description": "M28 4H12C9.79 4 8.02 5.79 8.02 8L8 40c0 2.21 1.77 4 3.98 4H36c2.21 0 4-1.79 4-4V16L28 4zm4 32H16v-4h16v4zm0-8H16v-4h16v4zm-6-10V7l11 11H26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/done.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/done": "M18 32.34L9.66 24l-2.83 2.83L18 38l24-24-2.83-2.83z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/eject.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/eject": "M10 34h28v4H10v-4zm14-24L10.7 30h26.7L24 10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/event-seat.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/event-seat": "M8 36v6h6v-6h20v6h6V30H8zm30-16h6v6h-6zM4 20h6v6H4zm30 6H14V10c0-2.21 1.79-4 4-4h12c2.21 0 4 1.79 4 4v16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/feedback.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/feedback": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM26 28h-4v-4h4v4zm0-8h-4v-8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/get-app.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/get-app": "M38 18h-8V6H18v12h-8l14 14 14-14zM10 36v4h28v-4H10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/gif.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/gif": "M23 18h3v12h-3V18zm-5 0h-6c-1.2 0-2 1-2 2v8c0 1 .8 2 2 2h6c1.2 0 2-1 2-2v-4h-3v3h-4v-6h7v-1c0-1-.8-2-2-2zm20 3v-3h-9v12h3v-4h4v-3h-4v-2h6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/grade.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/grade": "M24 34.54L36.36 42l-3.27-14.06L44 18.49l-14.38-1.24L24 4l-5.62 13.25L4 18.49l10.91 9.45L11.64 42z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/home.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/home": "M20 40V28h8v12h10V24h6L24 6 4 24h6v16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/hourglass-empty.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/hourglass-empty": "M12 5v10l9 9-9 9v10h24V33l-9-9 9-9V5H12zm20 29v5H16v-5l8-8 8 8zm-8-12l-8-8V9h16v5l-8 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/hourglass-full.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/hourglass-full": "M32 4H12v11h.02l-.02.02L20.98 24 12 32.98l.02.02H12v11h24V33h-.02l.02-.02L27.02 24 36 15.02l-.02-.02H36V4h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/http.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/http": "M9 22H5v-4H2v12h3v-5h4v5h3V18H9v4zm5-1h3v9h3v-9h3v-3h-9v3zm11 0h3v9h3v-9h3v-3h-9v3zm18-3h-7v12h3v-4h4c1.7 0 3-1.3 3-3v-2c0-1.7-1.3-3-3-3zm0 5h-4v-2h4v2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/info.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/info": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm2 30h-4V22h4v12zm0-16h-4v-4h4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/label.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/label": "M35.27 11.69A4.015 4.015 0 0 0 32 10l-22 .02c-2.21 0-4 1.77-4 3.98v20c0 2.21 1.79 3.98 4 3.98L32 38c1.35 0 2.54-.67 3.27-1.69L44 24l-8.73-12.31z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/launch.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/launch": "M38 38H10V10h14V6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V24h-4v14zM28 6v4h7.17L15.51 29.66l2.83 2.83L38 12.83V20h4V6H28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/line-weight.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/line-weight": "M6 34h36v-4H6v4zm0 6h36v-2H6v2zm0-14h36v-6H6v6zM6 8v8h36V8H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/list.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/list": "M6 26h4v-4H6v4zm0 8h4v-4H6v4zm0-16h4v-4H6v4zm8 8h28v-4H14v4zm0 8h28v-4H14v4zm0-20v4h28v-4H14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/markunread-mailbox.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/markunread-mailbox": "M40 12H20v12h-4V8h12V0H12v12H8c-2.2 0-4 1.8-4 4v24c0 2.2 1.8 4 4 4h32c2.2 0 4-1.8 4-4V16c0-2.2-1.8-4-4-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/note-add.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/note-add": "M28 4H12C9.79 4 8.02 5.79 8.02 8L8 40c0 2.21 1.77 4 3.98 4H36c2.21 0 4-1.79 4-4V16L28 4zm4 28h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4zm-6-14V7l11 11H26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/offline-pin.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/offline-pin": "M24 4C13 4 4 13 4 24s9 20 20 20 20-9 20-20S35 4 24 4zm10 32H14v-4h20v4zm-13.4-8L14 21.4l2.8-2.8 3.8 3.8 10.6-10.6 2.8 2.8L20.6 28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/open-with.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/open-with": "M20 18h8v-6h6L24 2 14 12h6v6zm-2 2h-6v-6L2 24l10 10v-6h6v-8zm28 4L36 14v6h-6v8h6v6l10-10zm-18 6h-8v6h-6l10 10 10-10h-6v-6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/payment.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/payment": "M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 28H8V24h32v12zm0-20H8v-4h32v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/perm-scan-wifi.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/perm-scan-wifi": "M24 6C13.91 6 6.29 9.7 0 14.47L24 44l24-29.5C41.71 9.74 34.09 6 24 6zm2 26h-4V20h4v12zm-4-16v-4h4v4h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/play-for-work.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/play-for-work": "M22 10v11.17h-7l9 9 9-9h-7V10h-4zM12 28c0 6.62 5.38 12 12 12s12-5.38 12-12h-4c0 4.42-3.58 8-8 8s-8-3.58-8-8h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/polymer.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/polymer": "M38 8h-8L14.21 33.26 9 24l9-16h-8L1 24l9 16h8l15.79-25.26L39 24l-9 16h8l9-16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/pregnant-woman.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/pregnant-woman": "M18 8c0-2.22 1.78-4 4-4s4 1.78 4 4-1.78 4-4 4-4-1.78-4-4zm14 18a6.56 6.56 0 0 0-4-6c0-3.31-2.69-6-6-6s-6 2.69-6 6v14h4v10h6V34h6v-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/question-answer.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/question-answer": "M42 12h-4v18H12v4c0 1.1.9 2 2 2h22l8 8V14c0-1.1-.9-2-2-2zm-8 12V6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v28l8-8h20c1.1 0 2-.9 2-2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/reorder.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/reorder": "M6 30h36v-4H6v4zm0 8h36v-4H6v4zm0-16h36v-4H6v4zm0-12v4h36v-4H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/report-problem.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/report-problem": "M2 42h44L24 4 2 42zm24-6h-4v-4h4v4zm0-8h-4v-8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/room.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/room": "M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/settings-input-hdmi.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/settings-input-hdmi": "M36 14V8c0-2.21-1.79-4-4-4H16c-2.21 0-4 1.79-4 4v6h-2v12l6 12v6h16v-6l6-12V14h-2zM16 8h16v6h-4v-4h-2v4h-4v-4h-2v4h-4V8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/shop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/shop": "M32 12V8c0-2.21-1.79-4-4-4h-8c-2.21 0-4 1.79-4 4v4H4v26c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12H32zM20 8h8v4h-8V8zm-2 28V18l15 8-15 10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/store.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/store": "M40 8H8v4h32V8zm2 20v-4l-2-10H8L6 24v4h2v12h20V28h8v12h4V28h2zm-18 8H12v-8h12v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/subject.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/subject": "M28 34H8v4h20v-4zm12-16H8v4h32v-4zM8 30h32v-4H8v4zm0-20v4h32v-4H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/swap-horiz.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/swap-horiz": "M13.98 22L6 30l7.98 8v-6H28v-4H13.98v-6zM42 18l-7.98-8v6H20v4h14.02v6L42 18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/swap-vert.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/swap-vert": "M32 34.02V20h-4v14.02h-6L30 42l8-7.98h-6zM18 6l-8 7.98h6V28h4V13.98h6L18 6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/tab.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/tab": "M42 6H6c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm0 32H6V10h20v8h16v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/toc.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/toc": "M6 18h28v-4H6v4zm0 8h28v-4H6v4zm0 8h28v-4H6v4zm32 0h4v-4h-4v4zm0-20v4h4v-4h-4zm0 12h4v-4h-4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/trending-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/trending-down": "M32 36l4.59-4.59-9.76-9.75-8 8L4 14.83 6.83 12l12 12 8-8 12.58 12.59L44 24v12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/trending-flat.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/trending-flat": "M44 24l-8-8v6H6v4h30v6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/trending-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/trending-up": "M32 12l4.59 4.59-9.76 9.75-8-8L4 33.17 6.83 36l12-12 8 8 12.58-12.59L44 24V12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/turned-in-not.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/turned-in-not": "M34 6H14c-2.21 0-3.98 1.79-3.98 4L10 42l14-6 14 6V10c0-2.21-1.79-4-4-4zm0 30l-10-4.35L14 36V10h20v26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/turned-in.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/turned-in": "M34 6H14c-2.21 0-3.98 1.79-3.98 4L10 42l14-6 14 6V10c0-2.21-1.79-4-4-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/verified-user.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/verified-user": "M24 2L6 10v12c0 11.11 7.67 21.47 18 24 10.33-2.53 18-12.89 18-24V10L24 2zm-4 32l-8-8 2.83-2.83L20 28.34l13.17-13.17L36 18 20 34z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-array.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-array": "M8 36h6V10H8v26zm28-26v26h6V10h-6zM16 36h18V10H16v26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-carousel.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-carousel": "M14 38h20V8H14v30zM4 34h8V12H4v22zm32-22v22h8V12h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-column.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-column": "M20 36h10V10H20v26zM8 36h10V10H8v26zm24-26v26h10V10H32z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-day.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-day": "M4 42h38v-6H4v6zm36-26H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h34c1.1 0 2-.9 2-2V18c0-1.1-.9-2-2-2zM4 6v6h38V6H4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-headline.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-headline": "M8 30h34v-4H8v4zm0 8h34v-4H8v4zm0-16h34v-4H8v4zm0-12v4h34v-4H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-list.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-list": "M8 28h8v-8H8v8zm0 10h8v-8H8v8zm0-20h8v-8H8v8zm10 10h24v-8H18v8zm0 10h24v-8H18v8zm0-28v8h24v-8H18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-module.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-module": "M8 22h10V10H8v12zm0 14h10V24H8v12zm12 0h10V24H20v12zm12 0h10V24H32v12zM20 22h10V10H20v12zm12-12v12h10V10H32z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-quilt.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-quilt": "M20 36h10V24H20v12zM8 36h10V10H8v26zm24 0h10V24H32v12zM20 10v12h22V10H20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/view-stream.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/view-stream": "M8 36h34V24H8v12zm0-26v12h34V10H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/action/watch-later.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/action/watch-later": "M23.98 4C12.94 4 4 12.96 4 24s8.94 20 19.98 20C35.04 44 44 35.04 44 24S35.04 4 23.98 4zm8.52 28.3L22 26V14h3v10.5l9 5.34-1.5 2.46z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/alert/error.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/alert/error": "M24 4C12.96 4 4 12.95 4 24s8.96 20 20 20 20-8.95 20-20S35.04 4 24 4zm2 30h-4v-4h4v4zm0-8h-4V14h4v12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/alert/warning.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/alert/warning": "M2 42h44L24 4 2 42zm24-6h-4v-4h4v4zm0-8h-4v-8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/airplay.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/airplay": "M42 6H6c-2.2 0-4 1.8-4 4v24c0 2.2 1.8 4 4 4h8v-4H6V10h36v24h-8v4h8c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zM12 44h24L24 32z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/branding-watermark.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/branding-watermark": "M42 6H6c-2.2 0-4 1.8-4 4v28c0 2.2 1.8 4 4 4h36c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zm0 32H24V26h18v12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/call-to-action.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/call-to-action": "M42 6H6c-2.2 0-4 1.8-4 4v28c0 2.2 1.8 4 4 4h36c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zm0 32H6v-6h36v6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/equalizer.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/equalizer": "M20 40h8V8h-8v32zM8 40h8V24H8v16zm24-22v22h8V18h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/explicit.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/explicit": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm-8 12h-8v4h8v4h-8v4h8v4H18V14h12v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/fast-forward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/fast-forward": "M8 36l17-12L8 12v24zm18-24v24l17-12-17-12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/fast-rewind.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/fast-rewind": "M22 36V12L5 24l17 12zm1-12l17 12V12L23 24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/featured-play-list.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/featured-play-list": "M42 6H6c-2.2 0-4 1.8-4 4v28c0 2.2 1.8 4 4 4h36c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zM24 22H6v-4h18v4zm0-8H6v-4h18v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/featured-video.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/featured-video": "M42 6H6c-2.2 0-4 1.8-4 4v28c0 2.2 1.8 4 4 4h36c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zM24 24H6V10h18v14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/fiber-manual-record.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/fiber-manual-record": "M8 24a16 16 0 1 0 32 0a16 16 0 1 0 -32 0" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/games.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/games": "M30 15V4H18v11l6 6 6-6zm-15 3H4v12h11l6-6-6-6zm3 15v11h12V33l-6-6-6 6zm15-15l-6 6 6 6h11V18H33z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/movie.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/movie": "M36 8l4 8h-6l-4-8h-4l4 8h-6l-4-8h-4l4 8h-6l-4-8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V8h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/note.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/note": "M44 20L32 8H8c-2.2 0-4 1.8-4 4v24.02C4 38.22 5.8 40 8 40l32-.02c2.2 0 4-1.78 4-3.98V20zm-14-9l11 11H30V11z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/pause-circle-filled.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/pause-circle-filled": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm-2 28h-4V16h4v16zm8 0h-4V16h4v16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/pause.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/pause": "M12 38h8V10h-8v28zm16-28v28h8V10h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/play-arrow.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/play-arrow": "M16 10v28l22-14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/play-circle-filled.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/play-circle-filled": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm-4 29V15l12 9-12 9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/playlist-add-check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/playlist-add-check": "M28 20H4v4h24v-4zm0-8H4v4h24v-4zM4 32h16v-4H4v4zm39-9l3 3-13.99 14L23 31l3-3 6.01 6L43 23z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/playlist-add.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/playlist-add": "M28 20H4v4h24v-4zm0-8H4v4h24v-4zm8 16v-8h-4v8h-8v4h8v8h4v-8h8v-4h-8zM4 32h16v-4H4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/playlist-play.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/playlist-play": "M10 20h24v4H10v-4zm0-8h24v4H10v-4zm0 16h16v4H10v-4zm20 0v12l10-6-10-6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/queue-music.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/queue-music": "M30 12H6v4h24v-4zm0 8H6v4h24v-4zM6 32h16v-4H6v4zm28-20v16.37c-.63-.23-1.29-.37-2-.37-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6V16h6v-4H34z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/repeat-one.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/repeat-one": "M14 14h20v6l8-8-8-8v6H10v12h4v-8zm20 20H14v-6l-8 8 8 8v-6h24V26h-4v8zm-8-4V18h-2l-4 2v2h3v8h3z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/repeat.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/repeat": "M14 14h20v6l8-8-8-8v6H10v12h4v-8zm20 20H14v-6l-8 8 8 8v-6h24V26h-4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/replay.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/replay": "M24 10V2L14 12l10 10v-8c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12H8c0 8.84 7.16 16 16 16s16-7.16 16-16-7.16-16-16-16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/skip-next.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/skip-next": "M12 36l17-12-17-12v24zm20-24v24h4V12h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/skip-previous.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/skip-previous": "M12 12h4v24h-4zm7 12l17 12V12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/stop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/stop": "M12 12h24v24H12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/video-call.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/video-call": "M34 21v-7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v20c0 1.1.9 2 2 2h24c1.1 0 2-.9 2-2v-7l8 8V13l-8 8zm-6 5h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/video-label.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/video-label": "M42 6H6c-2.2 0-4 1.8-4 4v28c0 2.2 1.8 4 4 4h36c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zm0 26H6V10h36v22z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/videocam.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/videocam": "M34 21v-7c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v20c0 1.1.9 2 2 2h24c1.1 0 2-.9 2-2v-7l8 8V13l-8 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/volume-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/volume-down": "M37 24c0-3.53-2.04-6.58-5-8.05v16.11c2.96-1.48 5-4.53 5-8.06zm-27-6v12h8l10 10V8L18 18h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/volume-mute.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/volume-mute": "M14 18v12h8l10 10V8L22 18h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/web-asset.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/web-asset": "M38 8H10c-2.22 0-4 1.8-4 4v24c0 2.2 1.78 4 4 4h28c2.2 0 4-1.8 4-4V12c0-2.2-1.78-4-4-4zm0 28H10V16h28v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/av/web.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/av/web": "M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zM30 36H8v-8h22v8zm0-10H8v-8h22v8zm10 10h-8V18h8v18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/call-made.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/call-made": "M18 10v4h13.17L8 37.17 10.83 40 34 16.83V30h4V10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/call-merge.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/call-merge": "M34 40.83L36.83 38 30 31.17 27.17 34 34 40.83zM15 16h7v11.17L11.17 38 14 40.83l12-12V16h7l-9-9-9 9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/call-missed-outgoing.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/call-missed-outgoing": "M6 16.82l18 18 14-14V30h4V14H26v4h9.18L24 29.18 8.82 14 6 16.82z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/call-missed.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/call-missed": "M39.17 14L24 29.17 12.83 18H22v-4H6v16h4v-9.17l14 14 18-18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/call-received.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/call-received": "M40 10.83L37.17 8 14 31.17V18h-4v20h20v-4H16.83z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/call-split.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/call-split": "M28 8l4.59 4.59-5.76 5.75 2.83 2.83 5.75-5.76L40 20V8zm-8 0H8v12l4.59-4.59L22 24.83V40h4V23.17L15.41 12.59z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/chat-bubble-outline.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/chat-bubble-outline": "M40 4H8C5.79 4 4 5.79 4 8v36l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm0 28H12l-4 4V8h32v24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/chat-bubble.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/chat-bubble": "M40 4H8C5.79 4 4 5.79 4 8v36l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/chat.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/chat": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM12 18h24v4H12v-4zm16 10H12v-4h16v4zm8-12H12v-4h24v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/clear-all.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/clear-all": "M10 26h28v-4H10v4zm-4 8h28v-4H6v4zm8-20v4h28v-4H14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/email.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/email": "M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 8L24 26 8 16v-4l16 10 16-10v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/forum.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/forum": "M42 12h-4v18H12v4c0 1.1.9 2 2 2h22l8 8V14c0-1.1-.9-2-2-2zm-8 12V6c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v28l8-8h20c1.1 0 2-.9 2-2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/import-export.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/import-export": "M18 6l-8 7.98h6V28h4V13.98h6L18 6zm14 28.02V20h-4v14.02h-6L30 42l8-7.98h-6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/message.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/message": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm-4 24H12v-4h24v4zm0-6H12v-4h24v4zm0-6H12v-4h24v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/communication/textsms.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/communication/textsms": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM18 22h-4v-4h4v4zm8 0h-4v-4h4v4zm8 0h-4v-4h4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/add-box.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/add-box": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm-4 20h-8v8h-4v-8h-8v-4h8v-8h4v8h8v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/add-circle.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/add-circle": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm10 22h-8v8h-4v-8h-8v-4h8v-8h4v8h8v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/add.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/add": "M38 26H26v12h-4V26H10v-4h12V10h4v12h12v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/clear.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/clear": "M38 12.83L35.17 10 24 21.17 12.83 10 10 12.83 21.17 24 10 35.17 12.83 38 24 26.83 35.17 38 38 35.17 26.83 24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/create.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/create": "M6 34.5V42h7.5l22.13-22.13-7.5-7.5L6 34.5zm35.41-20.41c.78-.78.78-2.05 0-2.83l-4.67-4.67c-.78-.78-2.05-.78-2.83 0l-3.66 3.66 7.5 7.5 3.66-3.66z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/delete-sweep.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/delete-sweep": "M30 32h8v4h-8zm0-16h14v4H30zm0 8h12v4H30zM6 36c0 2.2 1.8 4 4 4h12c2.2 0 4-1.8 4-4V16H6v20zm22-26h-6l-2-2h-8l-2 2H4v4h24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/filter-list.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/filter-list": "M20 36h8v-4h-8v4zM6 12v4h36v-4H6zm6 14h24v-4H12v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/flag.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/flag": "M28.8 12L28 8H10v34h4V28h11.2l.8 4h14V12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/forward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/forward": "M24 16V8l16 16-16 16v-8H8V16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/mail.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/mail": "M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 8L24 26 8 16v-4l16 10 16-10v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/markunread.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/markunread": "M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 8L24 26 8 16v-4l16 10 16-10v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/redo.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/redo": "M36.79 21.2C33.11 17.97 28.29 16 23 16c-9.3 0-17.17 6.06-19.92 14.44L7.81 32c2.1-6.39 8.1-11 15.19-11 3.91 0 7.46 1.44 10.23 3.77L26 32h18V14l-7.21 7.2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/remove-circle.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/remove-circle": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm10 22H14v-4h20v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/remove.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/remove": "M38 26H10v-4h28v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/reply-all.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/reply-all": "M14 16v-6L0 24l14 14v-6l-8-8 8-8zm12 2v-8L12 24l14 14v-8.2c10 0 17 3.2 22 10.2-2-10-8-20-22-22z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/reply.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/reply": "M20 18v-8L6 24l14 14v-8.2c10 0 17 3.2 22 10.2-2-10-8-20-22-22z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/send.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/send": "M4.02 42L46 24 4.02 6 4 20l30 4-30 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/sort.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/sort": "M6 36h12v-4H6v4zm0-24v4h36v-4H6zm0 14h24v-4H6v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/text-format.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/text-format": "M10 34v4h28v-4H10zm9-8.4h10l1.8 4.4H35L25.5 8h-3L13 30h4.2l1.8-4.4zm5-13.64L27.74 22h-7.48L24 11.96z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/content/undo.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/content/undo": "M25 16c-5.29 0-10.11 1.97-13.8 5.2L4 14v18h18l-7.23-7.23C17.54 22.44 21.09 21 25 21c7.09 0 13.09 4.61 15.19 11l4.73-1.56C42.17 22.06 34.3 16 25 16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/airplanemode-active.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/airplanemode-active": "M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-20.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-20": "M14 34v7.33A2.67 2.67 0 0 0 16.67 44h14.67a2.67 2.67 0 0 0 2.67-2.67V34H14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-30.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-30": "M34 10.67C34 9.19 32.81 8 31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V30h20V10.67z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-50.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-50": "M34 10.67C34 9.19 32.81 8 31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V26h20V10.67z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-60.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-60": "M34 10.67C34 9.19 32.81 8 31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V22h20V10.67z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-80.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-80": "M34 10.67C34 9.19 32.81 8 31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V18h20v-7.33z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-90.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-90": "M34 10.67C34 9.19 32.81 8 31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V16h20v-5.33z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-charging-20.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-charging-20": "M22 40v-6h-8v7.33A2.67 2.67 0 0 0 16.67 44h14.67a2.67 2.67 0 0 0 2.67-2.67V34h-8.8L22 40z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-charging-30.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-charging-30": "M31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V29h4l8-15v11h4l-2.13 4H34V10.67C34 9.19 32.81 8 31.33 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-charging-50.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-charging-50": "M28.93 27L22 40V29h-4l1.07-2H14v14.33A2.67 2.67 0 0 0 16.67 44h14.67a2.67 2.67 0 0 0 2.67-2.67V27h-5.08z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-charging-60.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-charging-60": "M31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V22h7.73L26 14v8h8V10.67C34 9.19 32.81 8 31.33 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-charging-80.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-charging-80": "M31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V18h9.87L26 14v4h8v-7.33C34 9.19 32.81 8 31.33 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/battery-charging-90.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/battery-charging-90": "M31.33 8H28V4h-8v4h-3.33C15.19 8 14 9.19 14 10.67V16h10.93L26 14v2h8v-5.33C34 9.19 32.81 8 31.33 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/devices.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/devices": "M8 12h36V8H8c-2.21 0-4 1.79-4 4v22H0v6h28v-6H8V12zm38 4H34c-1.1 0-2 .9-2 2v20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V18c0-1.1-.9-2-2-2zm-2 18h-8V20h8v14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/graphic-eq.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/graphic-eq": "M14 36h4V12h-4v24zm8 8h4V4h-4v40zM6 28h4v-8H6v8zm24 8h4V12h-4v24zm8-16v8h4v-8h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/network-cell.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/network-cell": "M4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/network-wifi.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/network-wifi": "M24.02 42.98L47.28 14c-.9-.68-9.85-8-23.28-8S1.62 13.32.72 14l23.26 28.98.02.02.02-.02z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/sd-storage.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/sd-storage": "M36 4H20L8.04 16 8 40c0 2.2 1.8 4 4 4h24c2.2 0 4-1.8 4-4V8c0-2.2-1.8-4-4-4zM24 16h-4V8h4v8zm6 0h-4V8h4v8zm6 0h-4V8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-0-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-0-bar": "M4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-1-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-1-bar": "M4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-2-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-2-bar": "M4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-3-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-3-bar": "M4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-4-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-4-bar": "M4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-connected-no-internet-0-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-connected-no-internet-0-bar": "M44 16V4L4 44h32V16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-connected-no-internet-1-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-connected-no-internet-1-bar": "M44 16V4L4 44h32V16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-connected-no-internet-2-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-connected-no-internet-2-bar": "M44 16V4L4 44h32V16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-connected-no-internet-3-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-connected-no-internet-3-bar": "M44 16V4L4 44h32V16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-connected-no-internet-4-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-connected-no-internet-4-bar": "M40 36h4V20h-4v16zm0 8h4v-4h-4v4zM4 44h32V16h8V4L4 44z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-null.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-null": "M40 13.66V40H13.66L40 13.66M44 4L4 44h40V4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-cellular-off.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-cellular-off": "M42 2L24.82 19.18 42 36.36V2zM9.55 9L7 11.54l12.73 12.73L2 42h35.45l4 4L44 43.45 9.55 9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-0-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-0-bar": "M24.02 42.98L47.28 14c-.9-.68-9.85-8-23.28-8C10.57 6 1.62 13.32.72 14l23.26 28.98.02.02.02-.02z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-1-bar-lock.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-1-bar-lock": "M41 19c.7 0 1.4.1 2.1.2l4.2-5.2c-.9-.7-9.8-8-23.3-8S1.6 13.3.7 14L24 43l7-8.7V29c0-5.5 4.5-10 10-10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-1-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-1-bar": "M24.02 42.98L47.28 14c-.9-.68-9.85-8-23.28-8S1.62 13.32.72 14l23.26 28.98.02.02.02-.02z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-2-bar-lock.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-2-bar-lock": "M41 19c.7 0 1.4.1 2.1.2l4.2-5.2c-.9-.7-9.9-8-23.3-8S1.6 13.3.7 14L24 43l7-8.7V29c0-5.5 4.5-10 10-10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-2-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-2-bar": "M24.02 42.98L47.28 14c-.9-.68-9.85-8-23.28-8S1.62 13.32.72 14l23.26 28.98.02.02.02-.02z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-3-bar-lock.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-3-bar-lock": "M41 19c.7 0 1.4.1 2.1.2l4.2-5.2c-.9-.7-9.8-8-23.3-8S1.6 13.3.7 14L24 43l7-8.7V29c0-5.5 4.5-10 10-10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-3-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-3-bar": "M24.02 42.98L47.28 14c-.9-.68-9.85-8-23.28-8S1.62 13.32.72 14l23.26 28.98.02.02.02-.02z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/signal-wifi-4-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/signal-wifi-4-bar": "M24.02 42.98L47.28 14c-.9-.68-9.85-8-23.28-8S1.62 13.32.72 14l23.26 28.98.02.02.02-.02z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/storage.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/storage": "M4 40h40v-8H4v8zm4-6h4v4H8v-4zM4 8v8h40V8H4zm8 6H8v-4h4v4zM4 28h40v-8H4v8zm4-6h4v4H8v-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/device/widgets.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/device/widgets": "M26 26v16h16V26H26zM6 42h16V26H6v16zM6 6v16h16V6H6zm27.31-2.63L22 14.69 33.31 26l11.31-11.31L33.31 3.37z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/border-all.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/border-all": "M6 6v36h36V6H6zm16 32H10V26h12v12zm0-16H10V10h12v12zm16 16H26V26h12v12zm0-16H26V10h12v12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/border-color.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/border-color": "M35.5 14L28 6.5l-20 20V34h7.5l20-20zm5.91-5.91c.78-.78.78-2.05 0-2.83L36.74.59c-.78-.78-2.05-.78-2.83 0L30 4.5l7.5 7.5 3.91-3.91z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/border-outer.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/border-outer": "M26 14h-4v4h4v-4zm0 8h-4v4h4v-4zm8 0h-4v4h4v-4zM6 6v36h36V6H6zm32 32H10V10h28v28zm-12-8h-4v4h4v-4zm-8-8h-4v4h4v-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/border-style.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/border-style": "M30 42h4v-4h-4v4zm8 0h4v-4h-4v4zm-24 0h4v-4h-4v4zm8 0h4v-4h-4v4zm16-8h4v-4h-4v4zm0-8h4v-4h-4v4zM6 6v36h4V10h32V6H6zm32 12h4v-4h-4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/drag-handle.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/drag-handle": "M40 18H8v4h32v-4zM8 30h32v-4H8v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-align-center.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-align-center": "M14 30v4h20v-4H14zM6 42h36v-4H6v4zm0-16h36v-4H6v4zm8-12v4h20v-4H14zM6 6v4h36V6H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-align-justify.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-align-justify": "M6 42h36v-4H6v4zm0-8h36v-4H6v4zm0-8h36v-4H6v4zm0-8h36v-4H6v4zM6 6v4h36V6H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-align-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-align-left": "M30 30H6v4h24v-4zm0-16H6v4h24v-4zM6 26h36v-4H6v4zm0 16h36v-4H6v4zM6 6v4h36V6H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-align-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-align-right": "M6 42h36v-4H6v4zm12-8h24v-4H18v4zM6 26h36v-4H6v4zm12-8h24v-4H18v4zM6 6v4h36V6H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-color-text.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-color-text": "M0 40h48v8H0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-indent-decrease.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-indent-decrease": "M22 34h20v-4H22v4zM6 24l8 8V16l-8 8zm0 18h36v-4H6v4zM6 6v4h36V6H6zm16 12h20v-4H22v4zm0 8h20v-4H22v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-indent-increase.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-indent-increase": "M6 42h36v-4H6v4zm0-26v16l8-8-8-8zm16 18h20v-4H22v4zM6 6v4h36V6H6zm16 12h20v-4H22v4zm0 8h20v-4H22v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-italic.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-italic": "M20 8v6h4.43l-6.86 16H12v6h16v-6h-4.43l6.86-16H36V8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-line-spacing.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-line-spacing": "M12 14h5l-7-7-7 7h5v20H3l7 7 7-7h-5V14zm8-4v4h24v-4H20zm0 28h24v-4H20v4zm0-12h24v-4H20v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-paint.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-paint": "M36 8V6c0-1.1-.9-2-2-2H10c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h24c1.1 0 2-.9 2-2v-2h2v8H18v22c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2V24h16V8h-6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-quote.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-quote": "M12 34h6l4-8V14H10v12h6zm16 0h6l4-8V14H26v12h6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-size.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-size": "M18 8v6h10v24h6V14h10V8H18zM6 24h6v14h6V24h6v-6H6v6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-strikethrough.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-strikethrough": "M20 38h8v-6h-8v6zM10 8v6h10v6h8v-6h10V8H10zM6 28h36v-4H6v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-textdirection-l-to-r.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-textdirection-l-to-r": "M18 20v10h4V8h4v22h4V8h4V4H18c-4.42 0-8 3.58-8 8s3.58 8 8 8zm24 16l-8-8v6H10v4h24v6l8-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-textdirection-r-to-l.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-textdirection-r-to-l": "M20 20v10h4V8h4v22h4V8h4V4H20c-4.42 0-8 3.58-8 8s3.58 8 8 8zm-4 14v-6l-8 8 8 8v-6h24v-4H16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/format-underlined.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/format-underlined": "M24 34c6.63 0 12-5.37 12-12V6h-5v16c0 3.87-3.13 7-7 7s-7-3.13-7-7V6h-5v16c0 6.63 5.37 12 12 12zm-14 4v4h28v-4H10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/functions.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/functions": "M36 8H12v4l13 12-13 12v4h24v-6H22l10-10-10-10h14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/highlight.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/highlight": "M12 28l6 6v10h12V34l6-6V18H12zM22 4h4v6h-4zM7 11.75l2.828-2.828 4.243 4.243-2.82 2.828zm26.923 1.422l4.242-4.242 2.83 2.828L36.75 16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/insert-comment.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/insert-comment": "M40 4H8C5.79 4 4 5.79 4 8v24c0 2.21 1.79 4 4 4h28l8 8V8c0-2.21-1.79-4-4-4zm-4 24H12v-4h24v4zm0-6H12v-4h24v4zm0-6H12v-4h24v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/insert-drive-file.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/insert-drive-file": "M12 4C9.79 4 8.02 5.79 8.02 8L8 40c0 2.21 1.77 4 3.98 4H36c2.21 0 4-1.79 4-4V16L28 4H12zm14 14V7l11 11H26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/insert-photo.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/insert-photo": "M42 38V10c0-2.21-1.79-4-4-4H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4zM17 27l5 6.01L29 24l9 12H10l7-9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/merge-type.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/merge-type": "M34 40.83L36.83 38 30 31.17 27.17 34 34 40.83zM15 16h7v11.17L11.17 38 14 40.83l12-12V16h7l-9-9-9 9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/mode-comment.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/mode-comment": "M43.98 8c0-2.21-1.77-4-3.98-4H8C5.79 4 4 5.79 4 8v24c0 2.21 1.79 4 4 4h28l8 8-.02-36z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/mode-edit.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/mode-edit": "M6 34.5V42h7.5l22.13-22.13-7.5-7.5L6 34.5zm35.41-20.41c.78-.78.78-2.05 0-2.83l-4.67-4.67c-.78-.78-2.05-.78-2.83 0l-3.66 3.66 7.5 7.5 3.66-3.66z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/pie-chart.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/pie-chart": "M22 4v40C11.86 42.99 4 34.42 4 24S11.86 5 22 4zm4.06 0v17.99H44C43.06 12.49 35.53 4.94 26.06 4zm0 22.01V44c9.47-.94 17-8.49 17.94-17.99H26.06z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/publish.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/publish": "M10 8v4h28V8H10zm0 20h8v12h12V28h8L24 14 10 28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/short-text.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/short-text": "M8 18h32v4H8zm0 8h20v4H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/show-chart.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/show-chart": "M7 36.99l12-12.03 8 8 17-19.12-2.82-2.83L27 26.96l-8-8L4 33.99z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/space-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/space-bar": "M36 18v8H12v-8H8v12h32V18z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/text-fields.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/text-fields": "M5 8v6h10v24h6V14h10V8H5zm38 10H25v6h6v14h6V24h6v-6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/title.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/title": "M10 8v6h11v24h6V14h11V8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/vertical-align-bottom.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/vertical-align-bottom": "M32 26h-6V6h-4v20h-6l8 8 8-8zM8 38v4h32v-4H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/vertical-align-center.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/vertical-align-center": "M16 38h6v8h4v-8h6l-8-8-8 8zm16-28h-6V2h-4v8h-6l8 8 8-8zM8 22v4h32v-4H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/vertical-align-top.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/vertical-align-top": "M16 22h6v20h4V22h6l-8-8-8 8zM8 6v4h32V6H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/editor/wrap-text.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/editor/wrap-text": "M8 38h12v-4H8v4zm32-28H8v4h32v-4zm-6 12H8v4h26.5c2.21 0 4 1.79 4 4s-1.79 4-4 4H30v-4l-6 6 6 6v-4h4c4.41 0 8-3.59 8-8s-3.59-8-8-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/file/file-download.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/file/file-download": "M38 18h-8V6H18v12h-8l14 14 14-14zM10 36v4h28v-4H10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/file/file-upload.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/file/file-upload": "M18 32h12V20h8L24 6 10 20h8zm-8 4h28v4H10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/file/folder-open.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/file/folder-open": "M40 12H24l-4-4H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V16c0-2.21-1.79-4-4-4zm0 24H8V16h32v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/file/folder.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/file/folder": "M20 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V16c0-2.21-1.79-4-4-4H24l-4-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/computer.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/computer": "M40 36c2.21 0 3.98-1.79 3.98-4L44 12c0-2.21-1.79-4-4-4H8c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4H0v4h48v-4h-8zM8 12h32v20H8V12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/desktop-mac.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/desktop-mac": "M42 4H6C3.79 4 2 5.79 2 8v24c0 2.21 1.79 4 4 4h14l-4 6v2h16v-2l-4-6h14c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm0 24H6V8h36v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/desktop-windows.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/desktop-windows": "M42 4H6C3.79 4 2 5.79 2 8v24c0 2.21 1.79 4 4 4h14v4h-4v4h16v-4h-4v-4h14c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm0 28H6V8h36v24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/device-hub.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/device-hub": "M34 32l-8-8v-6.4c2.3-.8 4-3 4-5.6 0-3.3-2.7-6-6-6s-6 2.7-6 6c0 2.6 1.7 4.8 4 5.6V24l-8 8H6v10h10v-6.1l8-8.4 8 8.4V42h10V32h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/dock.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/dock": "M16 46h16v-4H16v4zM32 2.02L16 2c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h16c2.21 0 4-1.79 4-4V6c0-2.21-1.79-3.98-4-3.98zM32 30H16V10h16v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/gamepad.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/gamepad": "M30 15V4H18v11l6 6 6-6zm-15 3H4v12h11l6-6-6-6zm3 15v11h12V33l-6-6-6 6zm15-15l-6 6 6 6h11V18H33z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-arrow-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-arrow-down": "M14.83 16.42L24 25.59l9.17-9.17L36 19.25l-12 12-12-12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-arrow-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-arrow-left": "M30.83 32.67l-9.17-9.17 9.17-9.17L28 11.5l-12 12 12 12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-arrow-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-arrow-right": "M17.17 32.92l9.17-9.17-9.17-9.17L20 11.75l12 12-12 12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-arrow-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-arrow-up": "M14.83 30.83L24 21.66l9.17 9.17L36 28 24 16 12 28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-backspace.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-backspace": "M42 22H13.66l7.17-7.17L18 12 6 24l12 12 2.83-2.83L13.66 26H42z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-capslock.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-capslock": "M24 16.83L33.17 26 36 23.17l-12-12-12 12L14.83 26 24 16.83zM12 36h24v-4H12v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-return.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-return": "M38 14v8H11.66l7.17-7.17L16 12 4 24l12 12 2.83-2.83L11.66 26H42V14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/keyboard-tab.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/keyboard-tab": "M23.17 14.83L30.34 22H2v4h28.34l-7.17 7.17L26 36l12-12-12-12-2.83 2.83zM40 12v24h4V12h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/laptop-chromebook.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/laptop-chromebook": "M44 36V6H4v30H0v4h48v-4h-4zm-16 0h-8v-2h8v2zm12-6H8V10h32v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/laptop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/laptop": "M40 36c2.2 0 4-1.8 4-4V12c0-2.2-1.8-4-4-4H8c-2.2 0-4 1.8-4 4v20c0 2.2 1.8 4 4 4H0v4h48v-4h-8zM8 12h32v20H8V12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/mouse.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/mouse": "M26 2.14V18h14c0-8.16-6.11-14.88-14-15.86zM8 30c0 8.84 7.16 16 16 16s16-7.16 16-16v-8H8v8zM22 2.14C14.11 3.12 8 9.84 8 18h14V2.14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/phone-android.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/phone-android": "M32 2H16c-3.31 0-6 2.69-6 6v32c0 3.31 2.69 6 6 6h16c3.31 0 6-2.69 6-6V8c0-3.31-2.69-6-6-6zm-4 40h-8v-2h8v2zm6.5-6h-21V8h21v28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/power-input.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/power-input": "M5 18v4h38v-4H5zm0 12h10v-4H5v4zm14 0h10v-4H19v4zm14 0h10v-4H33v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/security.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/security": "M24 2L6 10v12c0 11.11 7.67 21.47 18 24 10.33-2.53 18-12.89 18-24V10L24 2zm0 21.98h14c-1.06 8.24-6.55 15.58-14 17.87V24H10V12.6l14-6.22v17.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/smartphone.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/smartphone": "M34 2.02L14 2c-2.21 0-4 1.79-4 4v36c0 2.21 1.79 4 4 4h20c2.21 0 4-1.79 4-4V6c0-2.21-1.79-3.98-4-3.98zM34 38H14V10h20v28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/tablet-android.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/tablet-android": "M36 0H12C8.68 0 6 2.68 6 6v36c0 3.32 2.68 6 6 6h24c3.32 0 6-2.68 6-6V6c0-3.32-2.68-6-6-6zm-8 44h-8v-2h8v2zm10.5-6h-29V6h29v32z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/tablet.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/tablet": "M42 8H6c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h36c2.21 0 3.98-1.79 3.98-4L46 12c0-2.21-1.79-4-4-4zm-4 28H10V12h28v24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/hardware/tv.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/hardware/tv": "M42 6H6c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h10v4h16v-4h10c2.21 0 3.98-1.79 3.98-4L46 10c0-2.21-1.79-4-4-4zm0 28H6V10h36v24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/assistant-photo.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/assistant-photo": "M28.8 12L28 8H10v34h4V28h11.2l.8 4h14V12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/audiotrack.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/audiotrack": "M24 6v18.55c-.94-.33-1.94-.55-3-.55a9 9 0 0 0 0 18c4.63 0 8.4-3.51 8.9-8h.1V12h8V6H24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/brightness-1.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/brightness-1": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/brightness-2.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/brightness-2": "M20 4c-3.65 0-7.06.99-10 2.7 5.97 3.46 10 9.9 10 17.3s-4.03 13.84-10 17.3c2.94 1.71 6.35 2.7 10 2.7 11.05 0 20-8.95 20-20S31.05 4 20 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/brightness-3.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/brightness-3": "M18 4c-2.09 0-4.11.32-6 .92C20.11 7.47 26 15.05 26 24c0 8.95-5.89 16.53-14 19.08 1.89.59 3.91.92 6 .92 11.05 0 20-8.95 20-20S29.05 4 18 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-16-9.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-16-9": "M38 12H10c-2.21 0-4 1.79-4 4v16c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V16c0-2.21-1.79-4-4-4zm0 20H10V16h28v16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-3-2.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-3-2": "M38 8H10c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 28H10V12h28v24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-5-4.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-5-4": "M38 10H10c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V14c0-2.21-1.79-4-4-4zm0 24H10V14h28v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-7-5.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-7-5": "M38 14H10c-2.21 0-4 1.79-4 4v12c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V18c0-2.21-1.79-4-4-4zm0 16H10V18h28v12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-din.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-din": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm0 32H10V10h28v28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-landscape.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-landscape": "M38 10H10c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V14c0-2.21-1.79-4-4-4zm0 24H10V14h28v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-portrait.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-portrait": "M34 6H14c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h20c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm0 32H14V10h20v28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop-square.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop-square": "M36 8H12c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 28H12V12h24v24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/crop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/crop": "M34 30h4V14c0-2.21-1.79-4-4-4H18v4h16v16zm-20 4V2h-4v8H2v4h8v20c0 2.21 1.79 4 4 4h20v8h4v-8h8v-4H14z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/dehaze.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/dehaze": "M4 31v4h40v-4H4zm0-10v4h40v-4H4zm0-10v4h40v-4H4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/details.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/details": "M6 8l18 32L42 8H6zm6.75 4h22.5L24 32 12.75 12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/edit.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/edit": "M6 34.5V42h7.5l22.13-22.13-7.5-7.5L6 34.5zm35.41-20.41c.78-.78.78-2.05 0-2.83l-4.67-4.67c-.78-.78-2.05-.78-2.83 0l-3.66 3.66 7.5 7.5 3.66-3.66z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/exposure-neg-1.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/exposure-neg-1": "M8 22v4h16v-4H8zm30 14h-4V14.75l-6 2.05v-3.4l9.4-3.4h.6v26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/exposure-plus-1.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/exposure-plus-1": "M20 14h-4v8H8v4h8v8h4v-8h8v-4h-8v-8zm20 22h-4V14.75l-6 2.05v-3.4l9.4-3.4h.6v26z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/filter-b-and-w.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/filter-b-and-w": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm0 32L24 22v16H10l14-16V10h14v28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/filter-hdr.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/filter-hdr": "M28 12l-7.5 10 5.7 7.6L23 32c-3.38-4.5-9-12-9-12L2 36h44L28 12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/flash-auto.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/flash-auto": "M6 4v24h6v18l14-24h-8l8-18H6zm32 0h-4l-6.4 18h3.8l1.4-4h6.4l1.4 4h3.8L38 4zm-4.3 11.3L36 8l2.3 7.3h-4.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/flash-off.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/flash-off": "M6.55 6L4 8.55l10 10V26h6v18l7.17-12.29L35.45 40 38 37.46 6.55 6zM34 20h-8l8-16H14v4.36l16.92 16.92L34 20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/flash-on.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/flash-on": "M14 4v22h6v18l14-24h-8l8-16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/image.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/image": "M42 38V10c0-2.21-1.79-4-4-4H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4zM17 27l5 6.01L29 24l9 12H10l7-9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/landscape.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/landscape": "M28 12l-7.5 10 5.7 7.6L23 32c-3.38-4.5-9-12-9-12L2 36h44L28 12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/lens.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/lens": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/looks-1.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/looks-1": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM28 34h-4V18h-4v-4h8v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/looks-4.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/looks-4": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm-8 28h-4v-8h-8V14h4v8h4v-8h4v20z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/movie-creation.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/movie-creation": "M36 8l4 8h-6l-4-8h-4l4 8h-6l-4-8h-4l4 8h-6l-4-8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V8h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/music-note.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/music-note": "M24 6v21.11c-1.18-.69-2.54-1.11-4-1.11-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8V14h8V6H24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/nature.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/nature": "M26 32.24c6.95-.82 12.34-6.72 12.34-13.89 0-7.73-6.27-14-14-14s-14 6.27-14 14c0 6.93 5.04 12.67 11.66 13.79V40H10v4h28v-4H26v-7.76z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/navigate-before.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/navigate-before": "M30.83 14.83L28 12 16 24l12 12 2.83-2.83L21.66 24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/navigate-next.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/navigate-next": "M20 12l-2.83 2.83L26.34 24l-9.17 9.17L20 36l12-12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/panorama.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/panorama": "M46 36V12c0-2.21-1.79-4-4-4H6c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4zM17 25l5 6.01L29 22l9 12H10l7-9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/photo-size-select-actual.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/photo-size-select-actual": "M42 6H6c-2 0-4 2-4 4v28c0 2.2 1.8 4 4 4h36c2 0 4-2 4-4V10c0-2-2-4-4-4zM10 34l7-9 5 6 7-9 9 12H10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/photo.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/photo": "M42 38V10c0-2.21-1.79-4-4-4H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4zM17 27l5 6.01L29 24l9 12H10l7-9z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/slideshow.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/slideshow": "M20 16v16l10-8-10-8zM38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm0 32H10V10h28v28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/switch-video.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/switch-video": "M36 19v-7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v24a2 2 0 0 0 2 2h28a2 2 0 0 0 2-2v-7l8 8V11l-8 8zM26 31v-5H14v5l-7-7 7-7v5h12v-5l7 7-7 7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/transform.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/transform": "M44 36v-4H16V8h4l-6-6-6 6h4v4H4v4h8v16c0 2.21 1.79 4 4 4h16v4h-4l6 6 6-6h-4v-4h8zM20 16h12v12h4V16c0-2.21-1.79-4-4-4H20v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/tune.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/tune": "M6 34v4h12v-4H6zm0-24v4h20v-4H6zm20 32v-4h16v-4H26v-4h-4v12h4zM14 18v4H6v4h8v4h4V18h-4zm28 8v-4H22v4h20zm-12-8h4v-4h8v-4h-8V6h-4v12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/image/view-compact.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/image/view-compact": "M6 38h12V24H6v14zm14 0h24V24H20v14zM6 10v12h38V10H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/add-location.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/add-location": "M24 4c-7.72 0-14 6.28-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.72-6.28-14-14-14zm8 16h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/flight.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/flight": "M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/hotel.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/hotel": "M14 26c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm24-12H22v14H6V10H2v30h4v-6h36v6h4V22c0-4.42-3.58-8-8-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/layers.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/layers": "M23.99 37.08L9.24 25.61 6 28.13l18 14 18-14-3.26-2.53-14.75 11.48zM24 32l14.73-11.45L42 18 24 4 6 18l3.26 2.53L24 32z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-airport.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-airport": "M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-bar.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-bar": "M42 10V6H6v4l16 18v10H12v4h24v-4H26V28l16-18zm-27.13 4l-3.56-4h25.38l-3.56 4H14.87z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-cafe.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-cafe": "M40 6H8v20c0 4.42 3.58 8 8 8h12c4.42 0 8-3.58 8-8v-6h4c2.21 0 4-1.79 4-4v-6c0-2.21-1.79-4-4-4zm0 10h-4v-6h4v6zM4 42h36v-4H4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-convenience-store.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-convenience-store": "M38 14V8H10v6H4v26h16v-8h8v8h16V14h-6zm-16 6h-4v2h4v2h-6v-6h4v-2h-4v-2h6v6zm10 4h-2v-4h-4v-6h2v4h2v-4h2v10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-hotel.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-hotel": "M14 26c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm24-12H22v14H6V10H2v30h4v-6h36v6h4V22c0-4.42-3.58-8-8-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-parking.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-parking": "M26 6H12v36h8V30h6c6.63 0 12-5.37 12-12S32.63 6 26 6zm.4 16H20v-8h6.4c2.21 0 4 1.79 4 4s-1.79 4-4 4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/local-pharmacy.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/local-pharmacy": "M42 10h-5.29L39 3.71 34.3 2l-2.91 8H6v4l4 12-4 12v4h36v-4l-4-12 4-12v-4zM32 28h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/navigation.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/navigation": "M24 4L9 40.59 10.41 42 24 36l13.59 6L39 40.59z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/near-me.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/near-me": "M42 6L6 21.07v1.97l13.67 5.3L24.97 42h1.97L42 6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/place.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/place": "M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/restaurant.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/restaurant": "M22 18h-4V4h-4v14h-4V4H6v14c0 4.25 3.32 7.69 7.5 7.95V44h5V25.95c4.18-.26 7.5-3.7 7.5-7.95V4h-4v14zm10-6v16h5v16h5V4c-5.52 0-10 4.48-10 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/store-mall-directory.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/store-mall-directory": "M40 8H8v4h32V8zm2 20v-4l-2-10H8L6 24v4h2v12h20V28h8v12h4V28h2zm-18 8H12v-8h12v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/maps/terrain.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/maps/terrain": "M28 12l-7.5 10 5.7 7.6L23 32c-3.38-4.5-9-12-9-12L2 36h44L28 12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/apps.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/apps": "M8 16h8V8H8v8zm12 24h8v-8h-8v8zM8 40h8v-8H8v8zm0-12h8v-8H8v8zm12 0h8v-8h-8v8zM32 8v8h8V8h-8zm-12 8h8V8h-8v8zm12 12h8v-8h-8v8zm0 12h8v-8h-8v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-back.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-back": "M40 22H15.66l11.17-11.17L24 8 8 24l16 16 2.83-2.83L15.66 26H40v-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-double-back.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-double-back": "M44 22H19.7l11.2-11.2L28 8 12 24l16 16 2.8-2.8L19.7 26H44v-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-double-downward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-double-downward": "M22 4v24.3L10.8 17.2 8 20l16 16 16-16-2.8-2.8L26 28.3V4h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-double-forward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-double-forward": "M4 26h24.3L17.2 37.2 20 40l16-16L20 8l-2.8 2.8L28.3 22H4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-double-upward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-double-upward": "M26 44V19.7l11.2 11.2L40 28 24 12 8 28l2.8 2.8L22 19.7V44h4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-downward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-downward": "M40 24l-2.82-2.82L26 32.34V8h-4v24.34L10.84 21.16 8 24l16 16 16-16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-drop-down-circle.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-drop-down-circle": "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm0 24l-8-8h16l-8 8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-drop-down.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-drop-down": "M14 20l10 10 10-10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-drop-up.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-drop-up": "M14 28l10-10 10 10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-forward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-forward": "M24 8l-2.83 2.83L32.34 22H8v4h24.34L21.17 37.17 24 40l16-16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/arrow-upward.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/arrow-upward": "M8 24l2.83 2.83L22 15.66V40h4V15.66l11.17 11.17L40 24 24 8 8 24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/check.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/check": "M18 32.34L9.66 24l-2.83 2.83L18 38l24-24-2.83-2.83z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/chevron-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/chevron-left": "M30.83 14.83L28 12 16 24l12 12 2.83-2.83L21.66 24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/chevron-right.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/chevron-right": "M20 12l-2.83 2.83L26.34 24l-9.17 9.17L20 36l12-12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/close.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/close": "M38 12.83L35.17 10 24 21.17 12.83 10 10 12.83 21.17 24 10 35.17 12.83 38 24 26.83 35.17 38 38 35.17 26.83 24z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/expand-less.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/expand-less": "M24 16L12 28l2.83 2.83L24 21.66l9.17 9.17L36 28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/expand-more.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/expand-more": "M33.17 17.17L24 26.34l-9.17-9.17L12 20l12 12 12-12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/first-page.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/first-page": "M36.82 33.18L27.64 24l9.18-9.18L34 12 22 24l12 12zM12 12h4v24h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/fullscreen-exit.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/fullscreen-exit": "M10 32h6v6h4V28H10v4zm6-16h-6v4h10V10h-4v6zm12 22h4v-6h6v-4H28v10zm4-22v-6h-4v10h10v-4h-6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/fullscreen.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/fullscreen": "M14 28h-4v10h10v-4h-6v-6zm-4-8h4v-6h6v-4H10v10zm24 14h-6v4h10V28h-4v6zm-6-24v4h6v6h4V10H28z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/last-page.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/last-page": "M11.18 14.82L20.36 24l-9.18 9.18L14 36l12-12-12-12zM32 12h4v24h-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/menu.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/menu": "M6 36h36v-4H6v4zm0-10h36v-4H6v4zm0-14v4h36v-4H6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/subdirectory-arrow-left.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/subdirectory-arrow-left": "M20 18l2.83 2.83L15.66 28H36V6h4v26H15.66l7.17 7.17L20 42 8 30l12-12z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/navigation/unfold-more.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/navigation/unfold-more": "M24 11.66L30.34 18l2.83-2.83L24 6l-9.17 9.17L17.66 18 24 11.66zm0 24.68L17.66 30l-2.83 2.83L24 42l9.17-9.17L30.34 30 24 36.34z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/do-not-disturb-on.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/do-not-disturb-on": "M24 4C12.96 4 4 12.96 4 24s8.96 20 20 20 20-8.96 20-20S35.04 4 24 4zm10 22H14v-4h20v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/mms.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/mms": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM10 28l7-9 5 6.01L29 16l9 12H10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/power.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/power": "M32.02 14H32V6h-4v8h-8V6h-4v8h-.02C14 13.99 12 15.99 12 17.99v10.99L19 36v6h10v-6l7-7.03V17.98c0-1.99-2-3.99-3.98-3.98z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/priority-high.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/priority-high": "M24 34c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zM20 6v24h8V6h-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/sd-card.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/sd-card": "M36 4H20L8.04 16 8 40c0 2.2 1.8 4 4 4h24c2.2 0 4-1.8 4-4V8c0-2.2-1.8-4-4-4zM24 16h-4V8h4v8zm6 0h-4V8h4v8zm6 0h-4V8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/sim-card-alert.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/sim-card-alert": "M36 4H20L8.05 16 8 40c0 2.2 1.8 4 4 4h24c2.2 0 4-1.8 4-4V8c0-2.2-1.8-4-4-4zM26 34h-4v-4h4v4zm0-8h-4V16h4v10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/sms-failed.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/sms-failed": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM26 28h-4v-4h4v4zm0-8h-4v-8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/sms.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/sms": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM18 22h-4v-4h4v4zm8 0h-4v-4h4v4zm8 0h-4v-4h4v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/notification/voice-chat.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/notification/voice-chat": "M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm-4 24l-8-6.4V28H12V12h16v6.4l8-6.4v16z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/places/breakfast.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/places/breakfast": "M40 6H8v20c0 4.42 3.58 8 8 8h12c4.42 0 8-3.58 8-8v-6h4c2.21 0 4-1.79 4-4v-6c0-2.21-1.79-4-4-4zm0 10h-4v-6h4v6zM8 38h32v4H8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/social/person.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/social/person": "M24 24c4.42 0 8-3.59 8-8 0-4.42-3.58-8-8-8s-8 3.58-8 8c0 4.41 3.58 8 8 8zm0 4c-5.33 0-16 2.67-16 8v4h32v-4c0-5.33-10.67-8-16-8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/social/plus-one.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/social/plus-one": "M20 16h-4v8H8v4h8v8h4v-8h8v-4h-8zm9-3.84v3.64l5-1V36h4V10z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/social/poll.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/social/poll": "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM18 34h-4V20h4v14zm8 0h-4V14h4v20zm8 0h-4v-8h4v8z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/social/school.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/social/school": "M10 26.36v8L24 42l14-7.64v-8L24 34l-14-7.64zM24 6L2 18l22 12 18-9.82V34h4V18L24 6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/toggle/check-box-outline-blank.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/toggle/check-box-outline-blank": "M38 10v28H10V10h28m0-4H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/toggle/indeterminate-check-box.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/toggle/indeterminate-check-box": "M38 6H10c-2.2 0-4 1.8-4 4v28c0 2.2 1.8 4 4 4h28c2.2 0 4-1.8 4-4V10c0-2.2-1.8-4-4-4zm-4 20H14v-4h20v4z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/material/toggle/star.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "material/toggle/star": "M24 34.5L36.4 42l-3.3-14.1L44 18.5l-14.4-1.2L24 4l-5.6 13.3L4 18.5 14.9 28l-3.3 14L24 34.5z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/cloud.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/cloud": "M11 51h44c5.1 0 9-3.9 9-9 0-4.5-3.2-9.4-8-9.9C55.5 20.7 46 12 34 12c-10.6 0-19.6 6.7-21.8 16H11C5 28 0 33.5 0 40c0 6.3 4.7 11 11 11z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/drop.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/drop": "M32 64c12.1 0 22-10.2 22-22.7C54 25.5 33.7 1.4 32.8.4L32-.5l-.8.9c-.8 1-21.3 25.1-21.2 40.9.1 12.5 9.9 22.7 22 22.7z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/fullmoon.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/fullmoon": "M32 0C14.4 0 0 14.4 0 32s14.4 32 32 32 32-14.4 32-32S49.6 0 32 0z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/lightning.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/lightning": "M38.2 24.4L40.1 0 10.7 39.8h15.1L23.9 64l29.4-39.6z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/moon.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/moon": "M29 64c17.6 0 32-14.4 32-32S46.6 0 29 0c-4.2 0-9 .8-12.4 2.1l-2.1.8 2 1C25.3 8.5 31 17.2 31 26c0 13.8-11.2 25-25 25h-.7l-2.5-.1 1.4 1.7C10.2 59.8 19.5 64 29 64z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/sagittarius.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/sagittarius": "M0 61.3l17-17-16-16 2.7-2.7 16 16L57.5 3.8H35.4V0H64v28.6h-3.8V6.5L22.4 44.3l16 16-2.7 2.7-16-16-17 17z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); -------------------------------------------------------------------------------- /dist/icons/weather/star.js: -------------------------------------------------------------------------------- 1 | (function() { const icons = { "weather/star": "M32-2l-8.7 25H-.9l19.7 15.4L10 64.7l22-16.5 22 16.5-8.8-26.4L64.9 23H40.7L32-2z" }; 2 | if (JSC) { 3 | JSC.internal.registerIcons(icons); 4 | } 5 | 6 | })(); --------------------------------------------------------------------------------