├── README.md └── fontawesome.sketchplugin └── Contents ├── Resources └── icons.json └── Sketch ├── add_icon.cocoascript ├── add_icon_combobox.cocoascript ├── add_icon_radiolist.cocoascript ├── add_icon_table.cocoascript ├── learn_icon_name.cocoascript ├── library.cocoascript └── manifest.json /README.md: -------------------------------------------------------------------------------- 1 | # This plugin is not developing no more. You can use https://github.com/keremciu/sketch-iconfont plugin, its a maintainable version. 2 | 3 | Its a nice plugin to use fontawesome in Sketch for developers and designers. 4 | 5 | ## Update: New UI and commands 6 | ![demo][demo-image] 7 | 8 | # Features 9 | 10 | > `A Problem of the Designer:` 11 | > When you want to add an icon from fontawesome, you don't need to find a cheatsheet to copy it in your design. 12 | 13 | - You can easily add it now in sketch. 14 | 15 | > `A Problem of the Developer:` 16 | > When you want to learn the alias of the icon which is added from a designer, you don't need to look all of 585+ icons to find it. 17 | 18 | - You can easily learn it now in sketch. 19 | 20 | # Install 21 | 22 | 1. Download ZIP of this repo. 23 | 2. Extract and rename folder to what would you like. 24 | 3. Put the folder in your Sketch plugin folder (Use `Plugins > Reveal Plugins Folder` to find the plugin folder). 25 | 26 | # Dependencies 27 | 28 | 1. You need to install fontawesome font to your os system. You can download from here: https://github.com/FortAwesome/Font-Awesome/raw/master/fonts/FontAwesome.otf 29 | 30 | # Problem 31 | 32 | It's not working with sketch beta. Because sketch beta is not supporting NSFont, I'll be fix it when it will be finished. 33 | 34 | # Usage 35 | 36 | #### for designer 37 | 38 | 1. Insert a text layer in sketch document. 39 | 2. Select `Add Icon with Alias` under the plugin in `Plugins` menu. 40 | 3. Write the alias of icon which you want to add. 41 | 42 | #### for developer 43 | 44 | 1. Select the text layer of icon. 45 | 2. Select `Get Alias of Icon` under the plugin in `Plugins` menu. 46 | 47 | # Note 48 | 49 | It will be helped you only when you use font awesome font. 50 | 51 | ~~I'll be add some functions, one of them: you can add icon from font awesome icon list.~~ 52 | 53 | Do you have any suggestion? it would be so nice. 54 | 55 | # Next steps 56 | 57 | ~~- I'm trying to build a Clean UI for archive view. We'll select icons from the tableview(nstableview).~~ 58 | - I'm trying to create a new plugin, it will include material-icon-font and svg icon font parser. 59 | - I will add "icon categories" in "Add icon from Archive". I'll be using it to filter icons. 60 | ~~- I need to delete unnecessary codes.~~ 61 | ~~- I need to add more annotations and good instructions.~~ 62 | 63 | Material icon font is coming soon. 64 | 65 | # License 66 | 67 | MIT 68 | 69 | [demo-image]: http://i.imgur.com/4bg2Es9.gif 70 | -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Resources/icons.json: -------------------------------------------------------------------------------- 1 | { 2 | "icons": [ 3 | { 4 | "name": "Glass", 5 | "id": "glass", 6 | "unicode": "f000", 7 | "created": 1, 8 | "filter": [ 9 | "martini", 10 | "drink", 11 | "bar", 12 | "alcohol", 13 | "liquor" 14 | ], 15 | "categories": [ 16 | "Web Application Icons" 17 | ] 18 | }, 19 | { 20 | "name": "Music", 21 | "id": "music", 22 | "unicode": "f001", 23 | "created": 1, 24 | "filter": [ 25 | "note", 26 | "sound" 27 | ], 28 | "categories": [ 29 | "Web Application Icons" 30 | ] 31 | }, 32 | { 33 | "name": "Search", 34 | "id": "search", 35 | "unicode": "f002", 36 | "created": 1, 37 | "filter": [ 38 | "magnify", 39 | "zoom", 40 | "enlarge", 41 | "bigger" 42 | ], 43 | "categories": [ 44 | "Web Application Icons" 45 | ] 46 | }, 47 | { 48 | "name": "Envelope Outlined", 49 | "id": "envelope-o", 50 | "unicode": "f003", 51 | "created": 1, 52 | "filter": [ 53 | "email", 54 | "support", 55 | "e-mail", 56 | "letter", 57 | "mail", 58 | "notification" 59 | ], 60 | "categories": [ 61 | "Web Application Icons" 62 | ] 63 | }, 64 | { 65 | "name": "Heart", 66 | "id": "heart", 67 | "unicode": "f004", 68 | "created": 1, 69 | "filter": [ 70 | "love", 71 | "like", 72 | "favorite" 73 | ], 74 | "categories": [ 75 | "Web Application Icons", 76 | "Medical Icons" 77 | ] 78 | }, 79 | { 80 | "name": "Star", 81 | "id": "star", 82 | "unicode": "f005", 83 | "created": 1, 84 | "filter": [ 85 | "award", 86 | "achievement", 87 | "night", 88 | "rating", 89 | "score", 90 | "favorite" 91 | ], 92 | "categories": [ 93 | "Web Application Icons" 94 | ] 95 | }, 96 | { 97 | "name": "Star Outlined", 98 | "id": "star-o", 99 | "unicode": "f006", 100 | "created": 1, 101 | "filter": [ 102 | "award", 103 | "achievement", 104 | "night", 105 | "rating", 106 | "score", 107 | "favorite" 108 | ], 109 | "categories": [ 110 | "Web Application Icons" 111 | ] 112 | }, 113 | { 114 | "name": "User", 115 | "id": "user", 116 | "unicode": "f007", 117 | "created": 1, 118 | "filter": [ 119 | "person", 120 | "man", 121 | "head", 122 | "profile" 123 | ], 124 | "categories": [ 125 | "Web Application Icons" 126 | ] 127 | }, 128 | { 129 | "name": "Film", 130 | "id": "film", 131 | "unicode": "f008", 132 | "created": 1, 133 | "filter": [ 134 | "movie" 135 | ], 136 | "categories": [ 137 | "Web Application Icons" 138 | ] 139 | }, 140 | { 141 | "name": "th-large", 142 | "id": "th-large", 143 | "unicode": "f009", 144 | "created": 1, 145 | "filter": [ 146 | "blocks", 147 | "squares", 148 | "boxes", 149 | "grid" 150 | ], 151 | "categories": [ 152 | "Text Editor Icons" 153 | ] 154 | }, 155 | { 156 | "name": "th", 157 | "id": "th", 158 | "unicode": "f00a", 159 | "created": 1, 160 | "filter": [ 161 | "blocks", 162 | "squares", 163 | "boxes", 164 | "grid" 165 | ], 166 | "categories": [ 167 | "Text Editor Icons" 168 | ] 169 | }, 170 | { 171 | "name": "th-list", 172 | "id": "th-list", 173 | "unicode": "f00b", 174 | "created": 1, 175 | "filter": [ 176 | "ul", 177 | "ol", 178 | "checklist", 179 | "finished", 180 | "completed", 181 | "done", 182 | "todo" 183 | ], 184 | "categories": [ 185 | "Text Editor Icons" 186 | ] 187 | }, 188 | { 189 | "name": "Check", 190 | "id": "check", 191 | "unicode": "f00c", 192 | "created": 1, 193 | "filter": [ 194 | "checkmark", 195 | "done", 196 | "todo", 197 | "agree", 198 | "accept", 199 | "confirm", 200 | "tick", 201 | "ok" 202 | ], 203 | "categories": [ 204 | "Web Application Icons" 205 | ] 206 | }, 207 | { 208 | "name": "Times", 209 | "id": "times", 210 | "unicode": "f00d", 211 | "created": 1, 212 | "aliases": [ 213 | "remove", 214 | "close" 215 | ], 216 | "filter": [ 217 | "close", 218 | "exit", 219 | "x", 220 | "cross" 221 | ], 222 | "categories": [ 223 | "Web Application Icons" 224 | ] 225 | }, 226 | { 227 | "name": "Search Plus", 228 | "id": "search-plus", 229 | "unicode": "f00e", 230 | "created": 1, 231 | "filter": [ 232 | "magnify", 233 | "zoom", 234 | "enlarge", 235 | "bigger" 236 | ], 237 | "categories": [ 238 | "Web Application Icons" 239 | ] 240 | }, 241 | { 242 | "name": "Search Minus", 243 | "id": "search-minus", 244 | "unicode": "f010", 245 | "created": 1, 246 | "filter": [ 247 | "magnify", 248 | "minify", 249 | "zoom", 250 | "smaller" 251 | ], 252 | "categories": [ 253 | "Web Application Icons" 254 | ] 255 | }, 256 | { 257 | "name": "Power Off", 258 | "id": "power-off", 259 | "unicode": "f011", 260 | "created": 1, 261 | "filter": [ 262 | "on" 263 | ], 264 | "categories": [ 265 | "Web Application Icons" 266 | ] 267 | }, 268 | { 269 | "name": "signal", 270 | "id": "signal", 271 | "unicode": "f012", 272 | "created": 1, 273 | "filter": [ 274 | "graph", 275 | "bars" 276 | ], 277 | "categories": [ 278 | "Web Application Icons" 279 | ] 280 | }, 281 | { 282 | "name": "cog", 283 | "id": "cog", 284 | "unicode": "f013", 285 | "created": 1, 286 | "filter": [ 287 | "settings" 288 | ], 289 | "aliases": [ 290 | "gear" 291 | ], 292 | "categories": [ 293 | "Web Application Icons", 294 | "Spinner Icons" 295 | ] 296 | }, 297 | { 298 | "name": "Trash Outlined", 299 | "id": "trash-o", 300 | "unicode": "f014", 301 | "created": 1, 302 | "filter": [ 303 | "garbage", 304 | "delete", 305 | "remove", 306 | "trash", 307 | "hide" 308 | ], 309 | "categories": [ 310 | "Web Application Icons" 311 | ] 312 | }, 313 | { 314 | "name": "home", 315 | "id": "home", 316 | "unicode": "f015", 317 | "created": 1, 318 | "filter": [ 319 | "main", 320 | "house" 321 | ], 322 | "categories": [ 323 | "Web Application Icons" 324 | ] 325 | }, 326 | { 327 | "name": "File Outlined", 328 | "id": "file-o", 329 | "unicode": "f016", 330 | "created": 1, 331 | "filter": [ 332 | "new", 333 | "page", 334 | "pdf", 335 | "document" 336 | ], 337 | "categories": [ 338 | "Text Editor Icons", 339 | "File Type Icons" 340 | ] 341 | }, 342 | { 343 | "name": "Clock Outlined", 344 | "id": "clock-o", 345 | "unicode": "f017", 346 | "created": 1, 347 | "filter": [ 348 | "watch", 349 | "timer", 350 | "late", 351 | "timestamp" 352 | ], 353 | "categories": [ 354 | "Web Application Icons" 355 | ] 356 | }, 357 | { 358 | "name": "road", 359 | "id": "road", 360 | "unicode": "f018", 361 | "created": 1, 362 | "filter": [ 363 | "street" 364 | ], 365 | "categories": [ 366 | "Web Application Icons" 367 | ] 368 | }, 369 | { 370 | "name": "Download", 371 | "id": "download", 372 | "unicode": "f019", 373 | "created": 1, 374 | "filter": [ 375 | "import" 376 | ], 377 | "categories": [ 378 | "Web Application Icons" 379 | ] 380 | }, 381 | { 382 | "name": "Arrow Circle Outlined Down", 383 | "id": "arrow-circle-o-down", 384 | "unicode": "f01a", 385 | "created": 1, 386 | "filter": [ 387 | "download" 388 | ], 389 | "categories": [ 390 | "Directional Icons" 391 | ] 392 | }, 393 | { 394 | "name": "Arrow Circle Outlined Up", 395 | "id": "arrow-circle-o-up", 396 | "unicode": "f01b", 397 | "created": 1, 398 | "categories": [ 399 | "Directional Icons" 400 | ] 401 | }, 402 | { 403 | "name": "inbox", 404 | "id": "inbox", 405 | "unicode": "f01c", 406 | "created": 1, 407 | "categories": [ 408 | "Web Application Icons" 409 | ] 410 | }, 411 | { 412 | "name": "Play Circle Outlined", 413 | "id": "play-circle-o", 414 | "unicode": "f01d", 415 | "created": 1, 416 | "categories": [ 417 | "Video Player Icons" 418 | ] 419 | }, 420 | { 421 | "name": "Repeat", 422 | "id": "repeat", 423 | "unicode": "f01e", 424 | "created": 1, 425 | "filter": [ 426 | "redo", 427 | "forward" 428 | ], 429 | "aliases": [ 430 | "rotate-right" 431 | ], 432 | "categories": [ 433 | "Text Editor Icons" 434 | ] 435 | }, 436 | { 437 | "name": "refresh", 438 | "id": "refresh", 439 | "unicode": "f021", 440 | "created": 1, 441 | "filter": [ 442 | "reload", 443 | "sync" 444 | ], 445 | "categories": [ 446 | "Web Application Icons", 447 | "Spinner Icons" 448 | ] 449 | }, 450 | { 451 | "name": "list-alt", 452 | "id": "list-alt", 453 | "unicode": "f022", 454 | "created": 1, 455 | "filter": [ 456 | "ul", 457 | "ol", 458 | "checklist", 459 | "finished", 460 | "completed", 461 | "done", 462 | "todo" 463 | ], 464 | "categories": [ 465 | "Text Editor Icons" 466 | ] 467 | }, 468 | { 469 | "name": "lock", 470 | "id": "lock", 471 | "unicode": "f023", 472 | "created": 1, 473 | "filter": [ 474 | "protect", 475 | "admin" 476 | ], 477 | "categories": [ 478 | "Web Application Icons" 479 | ] 480 | }, 481 | { 482 | "name": "flag", 483 | "id": "flag", 484 | "unicode": "f024", 485 | "created": 1, 486 | "filter": [ 487 | "report", 488 | "notification", 489 | "notify" 490 | ], 491 | "categories": [ 492 | "Web Application Icons" 493 | ] 494 | }, 495 | { 496 | "name": "headphones", 497 | "id": "headphones", 498 | "unicode": "f025", 499 | "created": 1, 500 | "filter": [ 501 | "sound", 502 | "listen", 503 | "music", 504 | "audio" 505 | ], 506 | "categories": [ 507 | "Web Application Icons" 508 | ] 509 | }, 510 | { 511 | "name": "volume-off", 512 | "id": "volume-off", 513 | "unicode": "f026", 514 | "created": 1, 515 | "filter": [ 516 | "audio", 517 | "mute", 518 | "sound", 519 | "music" 520 | ], 521 | "categories": [ 522 | "Web Application Icons" 523 | ] 524 | }, 525 | { 526 | "name": "volume-down", 527 | "id": "volume-down", 528 | "unicode": "f027", 529 | "created": 1, 530 | "filter": [ 531 | "audio", 532 | "lower", 533 | "quieter", 534 | "sound", 535 | "music" 536 | ], 537 | "categories": [ 538 | "Web Application Icons" 539 | ] 540 | }, 541 | { 542 | "name": "volume-up", 543 | "id": "volume-up", 544 | "unicode": "f028", 545 | "created": 1, 546 | "filter": [ 547 | "audio", 548 | "higher", 549 | "louder", 550 | "sound", 551 | "music" 552 | ], 553 | "categories": [ 554 | "Web Application Icons" 555 | ] 556 | }, 557 | { 558 | "name": "qrcode", 559 | "id": "qrcode", 560 | "unicode": "f029", 561 | "created": 1, 562 | "filter": [ 563 | "scan" 564 | ], 565 | "categories": [ 566 | "Web Application Icons" 567 | ] 568 | }, 569 | { 570 | "name": "barcode", 571 | "id": "barcode", 572 | "unicode": "f02a", 573 | "created": 1, 574 | "filter": [ 575 | "scan" 576 | ], 577 | "categories": [ 578 | "Web Application Icons" 579 | ] 580 | }, 581 | { 582 | "name": "tag", 583 | "id": "tag", 584 | "unicode": "f02b", 585 | "created": 1, 586 | "filter": [ 587 | "label" 588 | ], 589 | "categories": [ 590 | "Web Application Icons" 591 | ] 592 | }, 593 | { 594 | "name": "tags", 595 | "id": "tags", 596 | "unicode": "f02c", 597 | "created": 1, 598 | "filter": [ 599 | "labels" 600 | ], 601 | "categories": [ 602 | "Web Application Icons" 603 | ] 604 | }, 605 | { 606 | "name": "book", 607 | "id": "book", 608 | "unicode": "f02d", 609 | "created": 1, 610 | "filter": [ 611 | "read", 612 | "documentation" 613 | ], 614 | "categories": [ 615 | "Web Application Icons" 616 | ] 617 | }, 618 | { 619 | "name": "bookmark", 620 | "id": "bookmark", 621 | "unicode": "f02e", 622 | "created": 1, 623 | "filter": [ 624 | "save" 625 | ], 626 | "categories": [ 627 | "Web Application Icons" 628 | ] 629 | }, 630 | { 631 | "name": "print", 632 | "id": "print", 633 | "unicode": "f02f", 634 | "created": 1, 635 | "categories": [ 636 | "Web Application Icons" 637 | ] 638 | }, 639 | { 640 | "name": "camera", 641 | "id": "camera", 642 | "unicode": "f030", 643 | "created": 1, 644 | "filter": [ 645 | "photo", 646 | "picture", 647 | "record" 648 | ], 649 | "categories": [ 650 | "Web Application Icons" 651 | ] 652 | }, 653 | { 654 | "name": "font", 655 | "id": "font", 656 | "unicode": "f031", 657 | "created": 1, 658 | "filter": [ 659 | "text" 660 | ], 661 | "categories": [ 662 | "Text Editor Icons" 663 | ] 664 | }, 665 | { 666 | "name": "bold", 667 | "id": "bold", 668 | "unicode": "f032", 669 | "created": 1, 670 | "categories": [ 671 | "Text Editor Icons" 672 | ] 673 | }, 674 | { 675 | "name": "italic", 676 | "id": "italic", 677 | "unicode": "f033", 678 | "created": 1, 679 | "filter": [ 680 | "italics" 681 | ], 682 | "categories": [ 683 | "Text Editor Icons" 684 | ] 685 | }, 686 | { 687 | "name": "text-height", 688 | "id": "text-height", 689 | "unicode": "f034", 690 | "created": 1, 691 | "categories": [ 692 | "Text Editor Icons" 693 | ] 694 | }, 695 | { 696 | "name": "text-width", 697 | "id": "text-width", 698 | "unicode": "f035", 699 | "created": 1, 700 | "categories": [ 701 | "Text Editor Icons" 702 | ] 703 | }, 704 | { 705 | "name": "align-left", 706 | "id": "align-left", 707 | "unicode": "f036", 708 | "created": 1, 709 | "filter": [ 710 | "text" 711 | ], 712 | "categories": [ 713 | "Text Editor Icons" 714 | ] 715 | }, 716 | { 717 | "name": "align-center", 718 | "id": "align-center", 719 | "unicode": "f037", 720 | "created": 1, 721 | "filter": [ 722 | "middle", 723 | "text" 724 | ], 725 | "categories": [ 726 | "Text Editor Icons" 727 | ] 728 | }, 729 | { 730 | "name": "align-right", 731 | "id": "align-right", 732 | "unicode": "f038", 733 | "created": 1, 734 | "filter": [ 735 | "text" 736 | ], 737 | "categories": [ 738 | "Text Editor Icons" 739 | ] 740 | }, 741 | { 742 | "name": "align-justify", 743 | "id": "align-justify", 744 | "unicode": "f039", 745 | "created": 1, 746 | "filter": [ 747 | "text" 748 | ], 749 | "categories": [ 750 | "Text Editor Icons" 751 | ] 752 | }, 753 | { 754 | "name": "list", 755 | "id": "list", 756 | "unicode": "f03a", 757 | "created": 1, 758 | "filter": [ 759 | "ul", 760 | "ol", 761 | "checklist", 762 | "finished", 763 | "completed", 764 | "done", 765 | "todo" 766 | ], 767 | "categories": [ 768 | "Text Editor Icons" 769 | ] 770 | }, 771 | { 772 | "name": "Outdent", 773 | "id": "outdent", 774 | "unicode": "f03b", 775 | "created": 1, 776 | "aliases": [ 777 | "dedent" 778 | ], 779 | "categories": [ 780 | "Text Editor Icons" 781 | ] 782 | }, 783 | { 784 | "name": "Indent", 785 | "id": "indent", 786 | "unicode": "f03c", 787 | "created": 1, 788 | "categories": [ 789 | "Text Editor Icons" 790 | ] 791 | }, 792 | { 793 | "name": "Video Camera", 794 | "id": "video-camera", 795 | "unicode": "f03d", 796 | "created": 1, 797 | "filter": [ 798 | "film", 799 | "movie", 800 | "record" 801 | ], 802 | "categories": [ 803 | "Web Application Icons" 804 | ] 805 | }, 806 | { 807 | "name": "Picture Outlined", 808 | "id": "picture-o", 809 | "unicode": "f03e", 810 | "created": 1, 811 | "aliases": [ 812 | "photo", 813 | "image" 814 | ], 815 | "categories": [ 816 | "Web Application Icons" 817 | ] 818 | }, 819 | { 820 | "name": "pencil", 821 | "id": "pencil", 822 | "unicode": "f040", 823 | "created": 1, 824 | "filter": [ 825 | "write", 826 | "edit", 827 | "update" 828 | ], 829 | "categories": [ 830 | "Web Application Icons" 831 | ] 832 | }, 833 | { 834 | "name": "map-marker", 835 | "id": "map-marker", 836 | "unicode": "f041", 837 | "created": 1, 838 | "filter": [ 839 | "map", 840 | "pin", 841 | "location", 842 | "coordinates", 843 | "localize", 844 | "address", 845 | "travel", 846 | "where", 847 | "place" 848 | ], 849 | "categories": [ 850 | "Web Application Icons" 851 | ] 852 | }, 853 | { 854 | "name": "adjust", 855 | "id": "adjust", 856 | "unicode": "f042", 857 | "created": 1, 858 | "filter": [ 859 | "contrast" 860 | ], 861 | "categories": [ 862 | "Web Application Icons" 863 | ] 864 | }, 865 | { 866 | "name": "tint", 867 | "id": "tint", 868 | "unicode": "f043", 869 | "created": 1, 870 | "filter": [ 871 | "raindrop", 872 | "waterdrop", 873 | "drop", 874 | "droplet" 875 | ], 876 | "categories": [ 877 | "Web Application Icons" 878 | ] 879 | }, 880 | { 881 | "name": "Pencil Square Outlined", 882 | "id": "pencil-square-o", 883 | "unicode": "f044", 884 | "created": 1, 885 | "filter": [ 886 | "write", 887 | "edit", 888 | "update" 889 | ], 890 | "aliases": [ 891 | "edit" 892 | ], 893 | "categories": [ 894 | "Web Application Icons" 895 | ] 896 | }, 897 | { 898 | "name": "Share Square Outlined", 899 | "id": "share-square-o", 900 | "unicode": "f045", 901 | "created": 1, 902 | "filter": [ 903 | "social", 904 | "send", 905 | "arrow" 906 | ], 907 | "categories": [ 908 | "Web Application Icons" 909 | ] 910 | }, 911 | { 912 | "name": "Check Square Outlined", 913 | "id": "check-square-o", 914 | "unicode": "f046", 915 | "created": 1, 916 | "filter": [ 917 | "todo", 918 | "done", 919 | "agree", 920 | "accept", 921 | "confirm", 922 | "ok" 923 | ], 924 | "categories": [ 925 | "Web Application Icons", 926 | "Form Control Icons" 927 | ] 928 | }, 929 | { 930 | "name": "Arrows", 931 | "id": "arrows", 932 | "unicode": "f047", 933 | "created": 1, 934 | "filter": [ 935 | "move", 936 | "reorder", 937 | "resize" 938 | ], 939 | "categories": [ 940 | "Web Application Icons", 941 | "Directional Icons" 942 | ] 943 | }, 944 | { 945 | "name": "step-backward", 946 | "id": "step-backward", 947 | "unicode": "f048", 948 | "created": 1, 949 | "filter": [ 950 | "rewind", 951 | "previous", 952 | "beginning", 953 | "start", 954 | "first" 955 | ], 956 | "categories": [ 957 | "Video Player Icons" 958 | ] 959 | }, 960 | { 961 | "name": "fast-backward", 962 | "id": "fast-backward", 963 | "unicode": "f049", 964 | "created": 1, 965 | "filter": [ 966 | "rewind", 967 | "previous", 968 | "beginning", 969 | "start", 970 | "first" 971 | ], 972 | "categories": [ 973 | "Video Player Icons" 974 | ] 975 | }, 976 | { 977 | "name": "backward", 978 | "id": "backward", 979 | "unicode": "f04a", 980 | "created": 1, 981 | "filter": [ 982 | "rewind", 983 | "previous" 984 | ], 985 | "categories": [ 986 | "Video Player Icons" 987 | ] 988 | }, 989 | { 990 | "name": "play", 991 | "id": "play", 992 | "unicode": "f04b", 993 | "created": 1, 994 | "filter": [ 995 | "start", 996 | "playing", 997 | "music", 998 | "sound" 999 | ], 1000 | "categories": [ 1001 | "Video Player Icons" 1002 | ] 1003 | }, 1004 | { 1005 | "name": "pause", 1006 | "id": "pause", 1007 | "unicode": "f04c", 1008 | "created": 1, 1009 | "filter": [ 1010 | "wait" 1011 | ], 1012 | "categories": [ 1013 | "Video Player Icons" 1014 | ] 1015 | }, 1016 | { 1017 | "name": "stop", 1018 | "id": "stop", 1019 | "unicode": "f04d", 1020 | "created": 1, 1021 | "filter": [ 1022 | "block", 1023 | "box", 1024 | "square" 1025 | ], 1026 | "categories": [ 1027 | "Video Player Icons" 1028 | ] 1029 | }, 1030 | { 1031 | "name": "forward", 1032 | "id": "forward", 1033 | "unicode": "f04e", 1034 | "created": 1, 1035 | "filter": [ 1036 | "forward", 1037 | "next" 1038 | ], 1039 | "categories": [ 1040 | "Video Player Icons" 1041 | ] 1042 | }, 1043 | { 1044 | "name": "fast-forward", 1045 | "id": "fast-forward", 1046 | "unicode": "f050", 1047 | "created": 1, 1048 | "filter": [ 1049 | "next", 1050 | "end", 1051 | "last" 1052 | ], 1053 | "categories": [ 1054 | "Video Player Icons" 1055 | ] 1056 | }, 1057 | { 1058 | "name": "step-forward", 1059 | "id": "step-forward", 1060 | "unicode": "f051", 1061 | "created": 1, 1062 | "filter": [ 1063 | "next", 1064 | "end", 1065 | "last" 1066 | ], 1067 | "categories": [ 1068 | "Video Player Icons" 1069 | ] 1070 | }, 1071 | { 1072 | "name": "eject", 1073 | "id": "eject", 1074 | "unicode": "f052", 1075 | "created": 1, 1076 | "categories": [ 1077 | "Video Player Icons" 1078 | ] 1079 | }, 1080 | { 1081 | "name": "chevron-left", 1082 | "id": "chevron-left", 1083 | "unicode": "f053", 1084 | "created": 1, 1085 | "filter": [ 1086 | "bracket", 1087 | "previous", 1088 | "back" 1089 | ], 1090 | "categories": [ 1091 | "Directional Icons" 1092 | ] 1093 | }, 1094 | { 1095 | "name": "chevron-right", 1096 | "id": "chevron-right", 1097 | "unicode": "f054", 1098 | "created": 1, 1099 | "filter": [ 1100 | "bracket", 1101 | "next", 1102 | "forward" 1103 | ], 1104 | "categories": [ 1105 | "Directional Icons" 1106 | ] 1107 | }, 1108 | { 1109 | "name": "Plus Circle", 1110 | "id": "plus-circle", 1111 | "unicode": "f055", 1112 | "created": 1, 1113 | "filter": [ 1114 | "add", 1115 | "new", 1116 | "create", 1117 | "expand" 1118 | ], 1119 | "categories": [ 1120 | "Web Application Icons" 1121 | ] 1122 | }, 1123 | { 1124 | "name": "Minus Circle", 1125 | "id": "minus-circle", 1126 | "unicode": "f056", 1127 | "created": 1, 1128 | "filter": [ 1129 | "delete", 1130 | "remove", 1131 | "trash", 1132 | "hide" 1133 | ], 1134 | "categories": [ 1135 | "Web Application Icons" 1136 | ] 1137 | }, 1138 | { 1139 | "name": "Times Circle", 1140 | "id": "times-circle", 1141 | "unicode": "f057", 1142 | "created": 1, 1143 | "filter": [ 1144 | "close", 1145 | "exit", 1146 | "x" 1147 | ], 1148 | "categories": [ 1149 | "Web Application Icons" 1150 | ] 1151 | }, 1152 | { 1153 | "name": "Check Circle", 1154 | "id": "check-circle", 1155 | "unicode": "f058", 1156 | "created": 1, 1157 | "filter": [ 1158 | "todo", 1159 | "done", 1160 | "agree", 1161 | "accept", 1162 | "confirm", 1163 | "ok" 1164 | ], 1165 | "categories": [ 1166 | "Web Application Icons" 1167 | ] 1168 | }, 1169 | { 1170 | "name": "Question Circle", 1171 | "id": "question-circle", 1172 | "unicode": "f059", 1173 | "filter": [ 1174 | "help", 1175 | "information", 1176 | "unknown", 1177 | "support" 1178 | ], 1179 | "created": 1, 1180 | "categories": [ 1181 | "Web Application Icons" 1182 | ] 1183 | }, 1184 | { 1185 | "name": "Info Circle", 1186 | "id": "info-circle", 1187 | "unicode": "f05a", 1188 | "created": 1, 1189 | "filter": [ 1190 | "help", 1191 | "information", 1192 | "more", 1193 | "details" 1194 | ], 1195 | "categories": [ 1196 | "Web Application Icons" 1197 | ] 1198 | }, 1199 | { 1200 | "name": "Crosshairs", 1201 | "id": "crosshairs", 1202 | "unicode": "f05b", 1203 | "created": 1, 1204 | "filter": [ 1205 | "picker" 1206 | ], 1207 | "categories": [ 1208 | "Web Application Icons" 1209 | ] 1210 | }, 1211 | { 1212 | "name": "Times Circle Outlined", 1213 | "id": "times-circle-o", 1214 | "unicode": "f05c", 1215 | "created": 1, 1216 | "filter": [ 1217 | "close", 1218 | "exit", 1219 | "x" 1220 | ], 1221 | "categories": [ 1222 | "Web Application Icons" 1223 | ] 1224 | }, 1225 | { 1226 | "name": "Check Circle Outlined", 1227 | "id": "check-circle-o", 1228 | "unicode": "f05d", 1229 | "created": 1, 1230 | "filter": [ 1231 | "todo", 1232 | "done", 1233 | "agree", 1234 | "accept", 1235 | "confirm", 1236 | "ok" 1237 | ], 1238 | "categories": [ 1239 | "Web Application Icons" 1240 | ] 1241 | }, 1242 | { 1243 | "name": "ban", 1244 | "id": "ban", 1245 | "unicode": "f05e", 1246 | "created": 1, 1247 | "filter": [ 1248 | "delete", 1249 | "remove", 1250 | "trash", 1251 | "hide", 1252 | "block", 1253 | "stop", 1254 | "abort", 1255 | "cancel" 1256 | ], 1257 | "categories": [ 1258 | "Web Application Icons" 1259 | ] 1260 | }, 1261 | { 1262 | "name": "arrow-left", 1263 | "id": "arrow-left", 1264 | "unicode": "f060", 1265 | "created": 1, 1266 | "filter": [ 1267 | "previous", 1268 | "back" 1269 | ], 1270 | "categories": [ 1271 | "Directional Icons" 1272 | ] 1273 | }, 1274 | { 1275 | "name": "arrow-right", 1276 | "id": "arrow-right", 1277 | "unicode": "f061", 1278 | "created": 1, 1279 | "filter": [ 1280 | "next", 1281 | "forward" 1282 | ], 1283 | "categories": [ 1284 | "Directional Icons" 1285 | ] 1286 | }, 1287 | { 1288 | "name": "arrow-up", 1289 | "id": "arrow-up", 1290 | "unicode": "f062", 1291 | "created": 1, 1292 | "categories": [ 1293 | "Directional Icons" 1294 | ] 1295 | }, 1296 | { 1297 | "name": "arrow-down", 1298 | "id": "arrow-down", 1299 | "unicode": "f063", 1300 | "created": 1, 1301 | "filter": [ 1302 | "download" 1303 | ], 1304 | "categories": [ 1305 | "Directional Icons" 1306 | ] 1307 | }, 1308 | { 1309 | "name": "Share", 1310 | "id": "share", 1311 | "unicode": "f064", 1312 | "created": 1, 1313 | "aliases": [ 1314 | "mail-forward" 1315 | ], 1316 | "categories": [ 1317 | "Web Application Icons" 1318 | ] 1319 | }, 1320 | { 1321 | "name": "Expand", 1322 | "id": "expand", 1323 | "unicode": "f065", 1324 | "created": 1, 1325 | "filter": [ 1326 | "enlarge", 1327 | "bigger", 1328 | "resize" 1329 | ], 1330 | "categories": [ 1331 | "Video Player Icons" 1332 | ] 1333 | }, 1334 | { 1335 | "name": "Compress", 1336 | "id": "compress", 1337 | "unicode": "f066", 1338 | "created": 1, 1339 | "filter": [ 1340 | "collapse", 1341 | "combine", 1342 | "contract", 1343 | "merge", 1344 | "smaller" 1345 | ], 1346 | "categories": [ 1347 | "Video Player Icons" 1348 | ] 1349 | }, 1350 | { 1351 | "name": "plus", 1352 | "id": "plus", 1353 | "unicode": "f067", 1354 | "created": 1, 1355 | "filter": [ 1356 | "add", 1357 | "new", 1358 | "create", 1359 | "expand" 1360 | ], 1361 | "categories": [ 1362 | "Web Application Icons" 1363 | ] 1364 | }, 1365 | { 1366 | "name": "minus", 1367 | "id": "minus", 1368 | "unicode": "f068", 1369 | "created": 1, 1370 | "filter": [ 1371 | "hide", 1372 | "minify", 1373 | "delete", 1374 | "remove", 1375 | "trash", 1376 | "hide", 1377 | "collapse" 1378 | ], 1379 | "categories": [ 1380 | "Web Application Icons" 1381 | ] 1382 | }, 1383 | { 1384 | "name": "asterisk", 1385 | "id": "asterisk", 1386 | "unicode": "f069", 1387 | "created": 1, 1388 | "filter": [ 1389 | "details" 1390 | ], 1391 | "categories": [ 1392 | "Web Application Icons" 1393 | ] 1394 | }, 1395 | { 1396 | "name": "Exclamation Circle", 1397 | "id": "exclamation-circle", 1398 | "unicode": "f06a", 1399 | "created": 1, 1400 | "filter": [ 1401 | "warning", 1402 | "error", 1403 | "problem", 1404 | "notification", 1405 | "alert" 1406 | ], 1407 | "categories": [ 1408 | "Web Application Icons" 1409 | ] 1410 | }, 1411 | { 1412 | "name": "gift", 1413 | "id": "gift", 1414 | "unicode": "f06b", 1415 | "created": 1, 1416 | "filter": [ 1417 | "present" 1418 | ], 1419 | "categories": [ 1420 | "Web Application Icons" 1421 | ] 1422 | }, 1423 | { 1424 | "name": "leaf", 1425 | "id": "leaf", 1426 | "unicode": "f06c", 1427 | "created": 1, 1428 | "filter": [ 1429 | "eco", 1430 | "nature", 1431 | "plant" 1432 | ], 1433 | "categories": [ 1434 | "Web Application Icons" 1435 | ] 1436 | }, 1437 | { 1438 | "name": "fire", 1439 | "id": "fire", 1440 | "unicode": "f06d", 1441 | "created": 1, 1442 | "filter": [ 1443 | "flame", 1444 | "hot", 1445 | "popular" 1446 | ], 1447 | "categories": [ 1448 | "Web Application Icons" 1449 | ] 1450 | }, 1451 | { 1452 | "name": "Eye", 1453 | "id": "eye", 1454 | "unicode": "f06e", 1455 | "created": 1, 1456 | "filter": [ 1457 | "show", 1458 | "visible", 1459 | "views" 1460 | ], 1461 | "categories": [ 1462 | "Web Application Icons" 1463 | ] 1464 | }, 1465 | { 1466 | "name": "Eye Slash", 1467 | "id": "eye-slash", 1468 | "unicode": "f070", 1469 | "created": 1, 1470 | "filter": [ 1471 | "toggle", 1472 | "show", 1473 | "hide", 1474 | "visible", 1475 | "visiblity", 1476 | "views" 1477 | ], 1478 | "categories": [ 1479 | "Web Application Icons" 1480 | ] 1481 | }, 1482 | { 1483 | "name": "Exclamation Triangle", 1484 | "id": "exclamation-triangle", 1485 | "unicode": "f071", 1486 | "created": 1, 1487 | "filter": [ 1488 | "warning", 1489 | "error", 1490 | "problem", 1491 | "notification", 1492 | "alert" 1493 | ], 1494 | "aliases": [ 1495 | "warning" 1496 | ], 1497 | "categories": [ 1498 | "Web Application Icons" 1499 | ] 1500 | }, 1501 | { 1502 | "name": "plane", 1503 | "id": "plane", 1504 | "unicode": "f072", 1505 | "created": 1, 1506 | "filter": [ 1507 | "travel", 1508 | "trip", 1509 | "location", 1510 | "destination", 1511 | "airplane", 1512 | "fly", 1513 | "mode" 1514 | ], 1515 | "categories": [ 1516 | "Web Application Icons", 1517 | "Transportation Icons" 1518 | ] 1519 | }, 1520 | { 1521 | "name": "calendar", 1522 | "id": "calendar", 1523 | "unicode": "f073", 1524 | "created": 1, 1525 | "filter": [ 1526 | "date", 1527 | "time", 1528 | "when", 1529 | "event" 1530 | ], 1531 | "categories": [ 1532 | "Web Application Icons" 1533 | ] 1534 | }, 1535 | { 1536 | "name": "random", 1537 | "id": "random", 1538 | "unicode": "f074", 1539 | "created": 1, 1540 | "filter": [ 1541 | "sort", 1542 | "shuffle" 1543 | ], 1544 | "categories": [ 1545 | "Web Application Icons", 1546 | "Video Player Icons" 1547 | ] 1548 | }, 1549 | { 1550 | "name": "comment", 1551 | "id": "comment", 1552 | "unicode": "f075", 1553 | "created": 1, 1554 | "filter": [ 1555 | "speech", 1556 | "notification", 1557 | "note", 1558 | "chat", 1559 | "bubble", 1560 | "feedback", 1561 | "message", 1562 | "texting", 1563 | "sms" 1564 | ], 1565 | "categories": [ 1566 | "Web Application Icons" 1567 | ] 1568 | }, 1569 | { 1570 | "name": "magnet", 1571 | "id": "magnet", 1572 | "unicode": "f076", 1573 | "created": 1, 1574 | "categories": [ 1575 | "Web Application Icons" 1576 | ] 1577 | }, 1578 | { 1579 | "name": "chevron-up", 1580 | "id": "chevron-up", 1581 | "unicode": "f077", 1582 | "created": 1, 1583 | "categories": [ 1584 | "Directional Icons" 1585 | ] 1586 | }, 1587 | { 1588 | "name": "chevron-down", 1589 | "id": "chevron-down", 1590 | "unicode": "f078", 1591 | "created": 1, 1592 | "categories": [ 1593 | "Directional Icons" 1594 | ] 1595 | }, 1596 | { 1597 | "name": "retweet", 1598 | "id": "retweet", 1599 | "unicode": "f079", 1600 | "created": 1, 1601 | "filter": [ 1602 | "refresh", 1603 | "reload", 1604 | "share" 1605 | ], 1606 | "categories": [ 1607 | "Web Application Icons" 1608 | ] 1609 | }, 1610 | { 1611 | "name": "shopping-cart", 1612 | "id": "shopping-cart", 1613 | "unicode": "f07a", 1614 | "created": 1, 1615 | "filter": [ 1616 | "checkout", 1617 | "buy", 1618 | "purchase", 1619 | "payment" 1620 | ], 1621 | "categories": [ 1622 | "Web Application Icons" 1623 | ] 1624 | }, 1625 | { 1626 | "name": "Folder", 1627 | "id": "folder", 1628 | "unicode": "f07b", 1629 | "created": 1, 1630 | "categories": [ 1631 | "Web Application Icons" 1632 | ] 1633 | }, 1634 | { 1635 | "name": "Folder Open", 1636 | "id": "folder-open", 1637 | "unicode": "f07c", 1638 | "created": 1, 1639 | "categories": [ 1640 | "Web Application Icons" 1641 | ] 1642 | }, 1643 | { 1644 | "name": "Arrows Vertical", 1645 | "id": "arrows-v", 1646 | "unicode": "f07d", 1647 | "created": 1, 1648 | "filter": [ 1649 | "resize" 1650 | ], 1651 | "categories": [ 1652 | "Web Application Icons", 1653 | "Directional Icons" 1654 | ] 1655 | }, 1656 | { 1657 | "name": "Arrows Horizontal", 1658 | "id": "arrows-h", 1659 | "unicode": "f07e", 1660 | "created": 1, 1661 | "filter": [ 1662 | "resize" 1663 | ], 1664 | "categories": [ 1665 | "Web Application Icons", 1666 | "Directional Icons" 1667 | ] 1668 | }, 1669 | { 1670 | "name": "Bar Chart", 1671 | "id": "bar-chart", 1672 | "unicode": "f080", 1673 | "created": 1, 1674 | "aliases": [ 1675 | "bar-chart-o" 1676 | ], 1677 | "filter": [ 1678 | "graph", 1679 | "analytics" 1680 | ], 1681 | "categories": [ 1682 | "Web Application Icons", 1683 | "Chart Icons" 1684 | ] 1685 | }, 1686 | { 1687 | "name": "Twitter Square", 1688 | "id": "twitter-square", 1689 | "unicode": "f081", 1690 | "created": 1, 1691 | "filter": [ 1692 | "tweet", 1693 | "social network" 1694 | ], 1695 | "categories": [ 1696 | "Brand Icons" 1697 | ] 1698 | }, 1699 | { 1700 | "name": "Facebook Square", 1701 | "id": "facebook-square", 1702 | "unicode": "f082", 1703 | "created": 1, 1704 | "filter": [ 1705 | "social network" 1706 | ], 1707 | "categories": [ 1708 | "Brand Icons" 1709 | ] 1710 | }, 1711 | { 1712 | "name": "camera-retro", 1713 | "id": "camera-retro", 1714 | "unicode": "f083", 1715 | "created": 1, 1716 | "filter": [ 1717 | "photo", 1718 | "picture", 1719 | "record" 1720 | ], 1721 | "categories": [ 1722 | "Web Application Icons" 1723 | ] 1724 | }, 1725 | { 1726 | "name": "key", 1727 | "id": "key", 1728 | "unicode": "f084", 1729 | "created": 1, 1730 | "filter": [ 1731 | "unlock", 1732 | "password" 1733 | ], 1734 | "categories": [ 1735 | "Web Application Icons" 1736 | ] 1737 | }, 1738 | { 1739 | "name": "cogs", 1740 | "id": "cogs", 1741 | "unicode": "f085", 1742 | "created": 1, 1743 | "aliases": [ 1744 | "gears" 1745 | ], 1746 | "filter": [ 1747 | "settings" 1748 | ], 1749 | "categories": [ 1750 | "Web Application Icons" 1751 | ] 1752 | }, 1753 | { 1754 | "name": "comments", 1755 | "id": "comments", 1756 | "unicode": "f086", 1757 | "created": 1, 1758 | "filter": [ 1759 | "conversation", 1760 | "notification", 1761 | "notes", 1762 | "message", 1763 | "texting", 1764 | "sms", 1765 | "chat" 1766 | ], 1767 | "categories": [ 1768 | "Web Application Icons" 1769 | ] 1770 | }, 1771 | { 1772 | "name": "Thumbs Up Outlined", 1773 | "id": "thumbs-o-up", 1774 | "unicode": "f087", 1775 | "created": 1, 1776 | "filter": [ 1777 | "like", 1778 | "approve", 1779 | "favorite", 1780 | "agree", 1781 | "hand" 1782 | ], 1783 | "categories": [ 1784 | "Web Application Icons", 1785 | "Hand Icons" 1786 | ] 1787 | }, 1788 | { 1789 | "name": "Thumbs Down Outlined", 1790 | "id": "thumbs-o-down", 1791 | "unicode": "f088", 1792 | "created": 1, 1793 | "filter": [ 1794 | "dislike", 1795 | "disapprove", 1796 | "disagree", 1797 | "hand" 1798 | ], 1799 | "categories": [ 1800 | "Web Application Icons", 1801 | "Hand Icons" 1802 | ] 1803 | }, 1804 | { 1805 | "name": "star-half", 1806 | "id": "star-half", 1807 | "unicode": "f089", 1808 | "created": 1, 1809 | "filter": [ 1810 | "award", 1811 | "achievement", 1812 | "rating", 1813 | "score" 1814 | ], 1815 | "categories": [ 1816 | "Web Application Icons" 1817 | ] 1818 | }, 1819 | { 1820 | "name": "Heart Outlined", 1821 | "id": "heart-o", 1822 | "unicode": "f08a", 1823 | "created": 1, 1824 | "filter": [ 1825 | "love", 1826 | "like", 1827 | "favorite" 1828 | ], 1829 | "categories": [ 1830 | "Web Application Icons", 1831 | "Medical Icons" 1832 | ] 1833 | }, 1834 | { 1835 | "name": "Sign Out", 1836 | "id": "sign-out", 1837 | "unicode": "f08b", 1838 | "created": 1, 1839 | "filter": [ 1840 | "log out", 1841 | "logout", 1842 | "leave", 1843 | "exit", 1844 | "arrow" 1845 | ], 1846 | "categories": [ 1847 | "Web Application Icons" 1848 | ] 1849 | }, 1850 | { 1851 | "name": "LinkedIn Square", 1852 | "id": "linkedin-square", 1853 | "unicode": "f08c", 1854 | "created": 1, 1855 | "categories": [ 1856 | "Brand Icons" 1857 | ] 1858 | }, 1859 | { 1860 | "name": "Thumb Tack", 1861 | "id": "thumb-tack", 1862 | "unicode": "f08d", 1863 | "created": 1, 1864 | "filter": [ 1865 | "marker", 1866 | "pin", 1867 | "location", 1868 | "coordinates" 1869 | ], 1870 | "categories": [ 1871 | "Web Application Icons" 1872 | ] 1873 | }, 1874 | { 1875 | "name": "External Link", 1876 | "id": "external-link", 1877 | "unicode": "f08e", 1878 | "created": 1, 1879 | "filter": [ 1880 | "open", 1881 | "new" 1882 | ], 1883 | "categories": [ 1884 | "Web Application Icons" 1885 | ] 1886 | }, 1887 | { 1888 | "name": "Sign In", 1889 | "id": "sign-in", 1890 | "unicode": "f090", 1891 | "created": 1, 1892 | "filter": [ 1893 | "enter", 1894 | "join", 1895 | "log in", 1896 | "login", 1897 | "sign up", 1898 | "sign in", 1899 | "signin", 1900 | "signup", 1901 | "arrow" 1902 | ], 1903 | "categories": [ 1904 | "Web Application Icons" 1905 | ] 1906 | }, 1907 | { 1908 | "name": "trophy", 1909 | "id": "trophy", 1910 | "unicode": "f091", 1911 | "created": 1, 1912 | "filter": [ 1913 | "award", 1914 | "achievement", 1915 | "winner", 1916 | "game" 1917 | ], 1918 | "categories": [ 1919 | "Web Application Icons" 1920 | ] 1921 | }, 1922 | { 1923 | "name": "GitHub Square", 1924 | "id": "github-square", 1925 | "unicode": "f092", 1926 | "created": 1, 1927 | "url": "github.com/logos", 1928 | "filter": [ 1929 | "octocat" 1930 | ], 1931 | "categories": [ 1932 | "Brand Icons" 1933 | ] 1934 | }, 1935 | { 1936 | "name": "Upload", 1937 | "id": "upload", 1938 | "unicode": "f093", 1939 | "created": 1, 1940 | "filter": [ 1941 | "import" 1942 | ], 1943 | "categories": [ 1944 | "Web Application Icons" 1945 | ] 1946 | }, 1947 | { 1948 | "name": "Lemon Outlined", 1949 | "id": "lemon-o", 1950 | "unicode": "f094", 1951 | "created": 1, 1952 | "filter": [ 1953 | "food" 1954 | ], 1955 | "categories": [ 1956 | "Web Application Icons" 1957 | ] 1958 | }, 1959 | { 1960 | "name": "Phone", 1961 | "id": "phone", 1962 | "unicode": "f095", 1963 | "created": 2, 1964 | "filter": [ 1965 | "call", 1966 | "voice", 1967 | "number", 1968 | "support", 1969 | "earphone" 1970 | ], 1971 | "categories": [ 1972 | "Web Application Icons" 1973 | ] 1974 | }, 1975 | { 1976 | "name": "Square Outlined", 1977 | "id": "square-o", 1978 | "unicode": "f096", 1979 | "created": 2, 1980 | "filter": [ 1981 | "block", 1982 | "square", 1983 | "box" 1984 | ], 1985 | "categories": [ 1986 | "Web Application Icons", 1987 | "Form Control Icons" 1988 | ] 1989 | }, 1990 | { 1991 | "name": "Bookmark Outlined", 1992 | "id": "bookmark-o", 1993 | "unicode": "f097", 1994 | "created": 2, 1995 | "filter": [ 1996 | "save" 1997 | ], 1998 | "categories": [ 1999 | "Web Application Icons" 2000 | ] 2001 | }, 2002 | { 2003 | "name": "Phone Square", 2004 | "id": "phone-square", 2005 | "unicode": "f098", 2006 | "created": 2, 2007 | "filter": [ 2008 | "call", 2009 | "voice", 2010 | "number", 2011 | "support" 2012 | ], 2013 | "categories": [ 2014 | "Web Application Icons" 2015 | ] 2016 | }, 2017 | { 2018 | "name": "Twitter", 2019 | "id": "twitter", 2020 | "unicode": "f099", 2021 | "created": 2, 2022 | "filter": [ 2023 | "tweet", 2024 | "social network" 2025 | ], 2026 | "categories": [ 2027 | "Brand Icons" 2028 | ] 2029 | }, 2030 | { 2031 | "name": "Facebook", 2032 | "id": "facebook", 2033 | "unicode": "f09a", 2034 | "created": 2, 2035 | "aliases": [ 2036 | "facebook-f" 2037 | ], 2038 | "filter": [ 2039 | "social network" 2040 | ], 2041 | "categories": [ 2042 | "Brand Icons" 2043 | ] 2044 | }, 2045 | { 2046 | "name": "GitHub", 2047 | "id": "github", 2048 | "unicode": "f09b", 2049 | "created": 2, 2050 | "url": "github.com/logos", 2051 | "filter": [ 2052 | "octocat" 2053 | ], 2054 | "categories": [ 2055 | "Brand Icons" 2056 | ] 2057 | }, 2058 | { 2059 | "name": "unlock", 2060 | "id": "unlock", 2061 | "unicode": "f09c", 2062 | "created": 2, 2063 | "filter": [ 2064 | "protect", 2065 | "admin", 2066 | "password", 2067 | "lock" 2068 | ], 2069 | "categories": [ 2070 | "Web Application Icons" 2071 | ] 2072 | }, 2073 | { 2074 | "name": "credit-card", 2075 | "id": "credit-card", 2076 | "unicode": "f09d", 2077 | "created": 2, 2078 | "filter": [ 2079 | "money", 2080 | "buy", 2081 | "debit", 2082 | "checkout", 2083 | "purchase", 2084 | "payment" 2085 | ], 2086 | "categories": [ 2087 | "Web Application Icons", 2088 | "Payment Icons" 2089 | ] 2090 | }, 2091 | { 2092 | "name": "rss", 2093 | "id": "rss", 2094 | "unicode": "f09e", 2095 | "created": 2, 2096 | "filter": [ 2097 | "blog" 2098 | ], 2099 | "aliases": [ 2100 | "feed" 2101 | ], 2102 | "categories": [ 2103 | "Web Application Icons" 2104 | ] 2105 | }, 2106 | { 2107 | "name": "HDD", 2108 | "id": "hdd-o", 2109 | "unicode": "f0a0", 2110 | "created": 2, 2111 | "filter": [ 2112 | "harddrive", 2113 | "hard drive", 2114 | "storage", 2115 | "save" 2116 | ], 2117 | "categories": [ 2118 | "Web Application Icons" 2119 | ] 2120 | }, 2121 | { 2122 | "name": "bullhorn", 2123 | "id": "bullhorn", 2124 | "unicode": "f0a1", 2125 | "created": 2, 2126 | "filter": [ 2127 | "announcement", 2128 | "share", 2129 | "broadcast", 2130 | "louder" 2131 | ], 2132 | "categories": [ 2133 | "Web Application Icons" 2134 | ] 2135 | }, 2136 | { 2137 | "name": "bell", 2138 | "id": "bell", 2139 | "unicode": "f0f3", 2140 | "created": 2, 2141 | "filter": [ 2142 | "alert", 2143 | "reminder", 2144 | "notification" 2145 | ], 2146 | "categories": [ 2147 | "Web Application Icons" 2148 | ] 2149 | }, 2150 | { 2151 | "name": "certificate", 2152 | "id": "certificate", 2153 | "unicode": "f0a3", 2154 | "created": 2, 2155 | "filter": [ 2156 | "badge", 2157 | "star" 2158 | ], 2159 | "categories": [ 2160 | "Web Application Icons" 2161 | ] 2162 | }, 2163 | { 2164 | "name": "Hand Outlined Right", 2165 | "id": "hand-o-right", 2166 | "unicode": "f0a4", 2167 | "created": 2, 2168 | "filter": [ 2169 | "point", 2170 | "right", 2171 | "next", 2172 | "forward", 2173 | "finger" 2174 | ], 2175 | "categories": [ 2176 | "Directional Icons", 2177 | "Hand Icons" 2178 | ] 2179 | }, 2180 | { 2181 | "name": "Hand Outlined Left", 2182 | "id": "hand-o-left", 2183 | "unicode": "f0a5", 2184 | "created": 2, 2185 | "filter": [ 2186 | "point", 2187 | "left", 2188 | "previous", 2189 | "back", 2190 | "finger" 2191 | ], 2192 | "categories": [ 2193 | "Directional Icons", 2194 | "Hand Icons" 2195 | ] 2196 | }, 2197 | { 2198 | "name": "Hand Outlined Up", 2199 | "id": "hand-o-up", 2200 | "unicode": "f0a6", 2201 | "created": 2, 2202 | "filter": [ 2203 | "point", 2204 | "finger" 2205 | ], 2206 | "categories": [ 2207 | "Directional Icons", 2208 | "Hand Icons" 2209 | ] 2210 | }, 2211 | { 2212 | "name": "Hand Outlined Down", 2213 | "id": "hand-o-down", 2214 | "unicode": "f0a7", 2215 | "created": 2, 2216 | "filter": [ 2217 | "point", 2218 | "finger" 2219 | ], 2220 | "categories": [ 2221 | "Directional Icons", 2222 | "Hand Icons" 2223 | ] 2224 | }, 2225 | { 2226 | "name": "Arrow Circle Left", 2227 | "id": "arrow-circle-left", 2228 | "unicode": "f0a8", 2229 | "created": 2, 2230 | "filter": [ 2231 | "previous", 2232 | "back" 2233 | ], 2234 | "categories": [ 2235 | "Directional Icons" 2236 | ] 2237 | }, 2238 | { 2239 | "name": "Arrow Circle Right", 2240 | "id": "arrow-circle-right", 2241 | "unicode": "f0a9", 2242 | "created": 2, 2243 | "filter": [ 2244 | "next", 2245 | "forward" 2246 | ], 2247 | "categories": [ 2248 | "Directional Icons" 2249 | ] 2250 | }, 2251 | { 2252 | "name": "Arrow Circle Up", 2253 | "id": "arrow-circle-up", 2254 | "unicode": "f0aa", 2255 | "created": 2, 2256 | "categories": [ 2257 | "Directional Icons" 2258 | ] 2259 | }, 2260 | { 2261 | "name": "Arrow Circle Down", 2262 | "id": "arrow-circle-down", 2263 | "unicode": "f0ab", 2264 | "created": 2, 2265 | "filter": [ 2266 | "download" 2267 | ], 2268 | "categories": [ 2269 | "Directional Icons" 2270 | ] 2271 | }, 2272 | { 2273 | "name": "Globe", 2274 | "id": "globe", 2275 | "unicode": "f0ac", 2276 | "created": 2, 2277 | "filter": [ 2278 | "world", 2279 | "planet", 2280 | "map", 2281 | "place", 2282 | "travel", 2283 | "earth", 2284 | "global", 2285 | "translate", 2286 | "all", 2287 | "language", 2288 | "localize", 2289 | "location", 2290 | "coordinates", 2291 | "country" 2292 | ], 2293 | "categories": [ 2294 | "Web Application Icons" 2295 | ] 2296 | }, 2297 | { 2298 | "name": "Wrench", 2299 | "id": "wrench", 2300 | "unicode": "f0ad", 2301 | "created": 2, 2302 | "filter": [ 2303 | "settings", 2304 | "fix", 2305 | "update" 2306 | ], 2307 | "categories": [ 2308 | "Web Application Icons" 2309 | ] 2310 | }, 2311 | { 2312 | "name": "Tasks", 2313 | "id": "tasks", 2314 | "unicode": "f0ae", 2315 | "created": 2, 2316 | "filter": [ 2317 | "progress", 2318 | "loading", 2319 | "downloading", 2320 | "downloads", 2321 | "settings" 2322 | ], 2323 | "categories": [ 2324 | "Web Application Icons" 2325 | ] 2326 | }, 2327 | { 2328 | "name": "Filter", 2329 | "id": "filter", 2330 | "unicode": "f0b0", 2331 | "created": 2, 2332 | "filter": [ 2333 | "funnel", 2334 | "options" 2335 | ], 2336 | "categories": [ 2337 | "Web Application Icons" 2338 | ] 2339 | }, 2340 | { 2341 | "name": "Briefcase", 2342 | "id": "briefcase", 2343 | "unicode": "f0b1", 2344 | "created": 2, 2345 | "filter": [ 2346 | "work", 2347 | "business", 2348 | "office", 2349 | "luggage", 2350 | "bag" 2351 | ], 2352 | "categories": [ 2353 | "Web Application Icons" 2354 | ] 2355 | }, 2356 | { 2357 | "name": "Arrows Alt", 2358 | "id": "arrows-alt", 2359 | "unicode": "f0b2", 2360 | "created": 2, 2361 | "filter": [ 2362 | "expand", 2363 | "enlarge", 2364 | "fullscreen", 2365 | "bigger", 2366 | "move", 2367 | "reorder", 2368 | "resize", 2369 | "arrow" 2370 | ], 2371 | "categories": [ 2372 | "Video Player Icons", 2373 | "Directional Icons" 2374 | ] 2375 | }, 2376 | { 2377 | "name": "Users", 2378 | "id": "users", 2379 | "unicode": "f0c0", 2380 | "created": 2, 2381 | "filter": [ 2382 | "people", 2383 | "profiles", 2384 | "persons" 2385 | ], 2386 | "aliases": [ 2387 | "group" 2388 | ], 2389 | "categories": [ 2390 | "Web Application Icons" 2391 | ] 2392 | }, 2393 | { 2394 | "name": "Link", 2395 | "id": "link", 2396 | "unicode": "f0c1", 2397 | "created": 2, 2398 | "filter": [ 2399 | "chain" 2400 | ], 2401 | "aliases": [ 2402 | "chain" 2403 | ], 2404 | "categories": [ 2405 | "Text Editor Icons" 2406 | ] 2407 | }, 2408 | { 2409 | "name": "Cloud", 2410 | "id": "cloud", 2411 | "filter": [ 2412 | "save" 2413 | ], 2414 | "unicode": "f0c2", 2415 | "created": 2, 2416 | "categories": [ 2417 | "Web Application Icons" 2418 | ] 2419 | }, 2420 | { 2421 | "name": "Flask", 2422 | "id": "flask", 2423 | "unicode": "f0c3", 2424 | "created": 2, 2425 | "filter": [ 2426 | "science", 2427 | "beaker", 2428 | "experimental", 2429 | "labs" 2430 | ], 2431 | "categories": [ 2432 | "Web Application Icons" 2433 | ] 2434 | }, 2435 | { 2436 | "name": "Scissors", 2437 | "id": "scissors", 2438 | "unicode": "f0c4", 2439 | "created": 2, 2440 | "aliases": [ 2441 | "cut" 2442 | ], 2443 | "categories": [ 2444 | "Text Editor Icons" 2445 | ] 2446 | }, 2447 | { 2448 | "name": "Files Outlined", 2449 | "id": "files-o", 2450 | "unicode": "f0c5", 2451 | "created": 2, 2452 | "filter": [ 2453 | "duplicate", 2454 | "clone", 2455 | "copy" 2456 | ], 2457 | "aliases": [ 2458 | "copy" 2459 | ], 2460 | "categories": [ 2461 | "Text Editor Icons" 2462 | ] 2463 | }, 2464 | { 2465 | "name": "Paperclip", 2466 | "id": "paperclip", 2467 | "unicode": "f0c6", 2468 | "created": 2, 2469 | "filter": [ 2470 | "attachment" 2471 | ], 2472 | "categories": [ 2473 | "Text Editor Icons" 2474 | ] 2475 | }, 2476 | { 2477 | "name": "Floppy Outlined", 2478 | "id": "floppy-o", 2479 | "unicode": "f0c7", 2480 | "created": 2, 2481 | "aliases": [ 2482 | "save" 2483 | ], 2484 | "categories": [ 2485 | "Text Editor Icons" 2486 | ] 2487 | }, 2488 | { 2489 | "name": "Square", 2490 | "id": "square", 2491 | "unicode": "f0c8", 2492 | "created": 2, 2493 | "filter": [ 2494 | "block", 2495 | "box" 2496 | ], 2497 | "categories": [ 2498 | "Web Application Icons", 2499 | "Form Control Icons" 2500 | ] 2501 | }, 2502 | { 2503 | "name": "Bars", 2504 | "id": "bars", 2505 | "unicode": "f0c9", 2506 | "created": 2, 2507 | "aliases": [ 2508 | "navicon", 2509 | "reorder" 2510 | ], 2511 | "filter": [ 2512 | "menu", 2513 | "drag", 2514 | "reorder", 2515 | "settings", 2516 | "list", 2517 | "ul", 2518 | "ol", 2519 | "checklist", 2520 | "todo", 2521 | "list", 2522 | "hamburger" 2523 | ], 2524 | "categories": [ 2525 | "Web Application Icons" 2526 | ] 2527 | }, 2528 | { 2529 | "name": "list-ul", 2530 | "id": "list-ul", 2531 | "unicode": "f0ca", 2532 | "created": 2, 2533 | "filter": [ 2534 | "ul", 2535 | "ol", 2536 | "checklist", 2537 | "todo", 2538 | "list" 2539 | ], 2540 | "categories": [ 2541 | "Text Editor Icons" 2542 | ] 2543 | }, 2544 | { 2545 | "name": "list-ol", 2546 | "id": "list-ol", 2547 | "unicode": "f0cb", 2548 | "created": 2, 2549 | "filter": [ 2550 | "ul", 2551 | "ol", 2552 | "checklist", 2553 | "list", 2554 | "todo", 2555 | "list", 2556 | "numbers" 2557 | ], 2558 | "categories": [ 2559 | "Text Editor Icons" 2560 | ] 2561 | }, 2562 | { 2563 | "name": "Strikethrough", 2564 | "id": "strikethrough", 2565 | "unicode": "f0cc", 2566 | "created": 2, 2567 | "categories": [ 2568 | "Text Editor Icons" 2569 | ] 2570 | }, 2571 | { 2572 | "name": "Underline", 2573 | "id": "underline", 2574 | "unicode": "f0cd", 2575 | "created": 2, 2576 | "categories": [ 2577 | "Text Editor Icons" 2578 | ] 2579 | }, 2580 | { 2581 | "name": "table", 2582 | "id": "table", 2583 | "unicode": "f0ce", 2584 | "created": 2, 2585 | "filter": [ 2586 | "data", 2587 | "excel", 2588 | "spreadsheet" 2589 | ], 2590 | "categories": [ 2591 | "Text Editor Icons" 2592 | ] 2593 | }, 2594 | { 2595 | "name": "magic", 2596 | "id": "magic", 2597 | "unicode": "f0d0", 2598 | "created": 2, 2599 | "filter": [ 2600 | "wizard", 2601 | "automatic", 2602 | "autocomplete" 2603 | ], 2604 | "categories": [ 2605 | "Web Application Icons" 2606 | ] 2607 | }, 2608 | { 2609 | "name": "truck", 2610 | "id": "truck", 2611 | "unicode": "f0d1", 2612 | "created": 2, 2613 | "filter": [ 2614 | "shipping" 2615 | ], 2616 | "categories": [ 2617 | "Web Application Icons", 2618 | "Transportation Icons" 2619 | ] 2620 | }, 2621 | { 2622 | "name": "Pinterest", 2623 | "id": "pinterest", 2624 | "unicode": "f0d2", 2625 | "created": 2, 2626 | "categories": [ 2627 | "Brand Icons" 2628 | ] 2629 | }, 2630 | { 2631 | "name": "Pinterest Square", 2632 | "id": "pinterest-square", 2633 | "unicode": "f0d3", 2634 | "created": 2, 2635 | "categories": [ 2636 | "Brand Icons" 2637 | ] 2638 | }, 2639 | { 2640 | "name": "Google Plus Square", 2641 | "id": "google-plus-square", 2642 | "unicode": "f0d4", 2643 | "created": 2, 2644 | "filter": [ 2645 | "social network" 2646 | ], 2647 | "categories": [ 2648 | "Brand Icons" 2649 | ] 2650 | }, 2651 | { 2652 | "name": "Google Plus", 2653 | "id": "google-plus", 2654 | "unicode": "f0d5", 2655 | "created": 2, 2656 | "filter": [ 2657 | "social network" 2658 | ], 2659 | "categories": [ 2660 | "Brand Icons" 2661 | ] 2662 | }, 2663 | { 2664 | "name": "Money", 2665 | "id": "money", 2666 | "unicode": "f0d6", 2667 | "created": 2, 2668 | "filter": [ 2669 | "cash", 2670 | "money", 2671 | "buy", 2672 | "checkout", 2673 | "purchase", 2674 | "payment" 2675 | ], 2676 | "categories": [ 2677 | "Web Application Icons", 2678 | "Currency Icons" 2679 | ] 2680 | }, 2681 | { 2682 | "name": "Caret Down", 2683 | "id": "caret-down", 2684 | "unicode": "f0d7", 2685 | "created": 2, 2686 | "filter": [ 2687 | "more", 2688 | "dropdown", 2689 | "menu", 2690 | "triangle down", 2691 | "arrow" 2692 | ], 2693 | "categories": [ 2694 | "Directional Icons" 2695 | ] 2696 | }, 2697 | { 2698 | "name": "Caret Up", 2699 | "id": "caret-up", 2700 | "unicode": "f0d8", 2701 | "created": 2, 2702 | "filter": [ 2703 | "triangle up", 2704 | "arrow" 2705 | ], 2706 | "categories": [ 2707 | "Directional Icons" 2708 | ] 2709 | }, 2710 | { 2711 | "name": "Caret Left", 2712 | "id": "caret-left", 2713 | "unicode": "f0d9", 2714 | "created": 2, 2715 | "filter": [ 2716 | "previous", 2717 | "back", 2718 | "triangle left", 2719 | "arrow" 2720 | ], 2721 | "categories": [ 2722 | "Directional Icons" 2723 | ] 2724 | }, 2725 | { 2726 | "name": "Caret Right", 2727 | "id": "caret-right", 2728 | "unicode": "f0da", 2729 | "created": 2, 2730 | "filter": [ 2731 | "next", 2732 | "forward", 2733 | "triangle right", 2734 | "arrow" 2735 | ], 2736 | "categories": [ 2737 | "Directional Icons" 2738 | ] 2739 | }, 2740 | { 2741 | "name": "Columns", 2742 | "id": "columns", 2743 | "unicode": "f0db", 2744 | "created": 2, 2745 | "filter": [ 2746 | "split", 2747 | "panes" 2748 | ], 2749 | "categories": [ 2750 | "Text Editor Icons" 2751 | ] 2752 | }, 2753 | { 2754 | "name": "Sort", 2755 | "id": "sort", 2756 | "unicode": "f0dc", 2757 | "created": 2, 2758 | "filter": [ 2759 | "order" 2760 | ], 2761 | "aliases": [ 2762 | "unsorted" 2763 | ], 2764 | "categories": [ 2765 | "Web Application Icons" 2766 | ] 2767 | }, 2768 | { 2769 | "name": "Sort Descending", 2770 | "id": "sort-desc", 2771 | "unicode": "f0dd", 2772 | "created": 2, 2773 | "filter": [ 2774 | "dropdown", 2775 | "more", 2776 | "menu", 2777 | "arrow" 2778 | ], 2779 | "aliases": [ 2780 | "sort-down" 2781 | ], 2782 | "categories": [ 2783 | "Web Application Icons" 2784 | ] 2785 | }, 2786 | { 2787 | "name": "Sort Ascending", 2788 | "id": "sort-asc", 2789 | "unicode": "f0de", 2790 | "created": 2, 2791 | "aliases": [ 2792 | "sort-up" 2793 | ], 2794 | "filter": [ 2795 | "arrow" 2796 | ], 2797 | "categories": [ 2798 | "Web Application Icons" 2799 | ] 2800 | }, 2801 | { 2802 | "name": "Envelope", 2803 | "id": "envelope", 2804 | "unicode": "f0e0", 2805 | "created": 2, 2806 | "filter": [ 2807 | "email", 2808 | "e-mail", 2809 | "letter", 2810 | "support", 2811 | "mail", 2812 | "notification" 2813 | ], 2814 | "categories": [ 2815 | "Web Application Icons" 2816 | ] 2817 | }, 2818 | { 2819 | "name": "LinkedIn", 2820 | "id": "linkedin", 2821 | "unicode": "f0e1", 2822 | "created": 2, 2823 | "categories": [ 2824 | "Brand Icons" 2825 | ] 2826 | }, 2827 | { 2828 | "name": "Undo", 2829 | "id": "undo", 2830 | "unicode": "f0e2", 2831 | "created": 2, 2832 | "filter": [ 2833 | "back" 2834 | ], 2835 | "aliases": [ 2836 | "rotate-left" 2837 | ], 2838 | "categories": [ 2839 | "Text Editor Icons" 2840 | ] 2841 | }, 2842 | { 2843 | "name": "Gavel", 2844 | "id": "gavel", 2845 | "unicode": "f0e3", 2846 | "created": 2, 2847 | "label": [ 2848 | "judge", 2849 | "lawyer", 2850 | "opinion" 2851 | ], 2852 | "aliases": [ 2853 | "legal" 2854 | ], 2855 | "categories": [ 2856 | "Web Application Icons" 2857 | ] 2858 | }, 2859 | { 2860 | "name": "Tachometer", 2861 | "id": "tachometer", 2862 | "unicode": "f0e4", 2863 | "created": 2, 2864 | "label": [ 2865 | "speedometer", 2866 | "fast" 2867 | ], 2868 | "aliases": [ 2869 | "dashboard" 2870 | ], 2871 | "categories": [ 2872 | "Web Application Icons" 2873 | ] 2874 | }, 2875 | { 2876 | "name": "comment-o", 2877 | "id": "comment-o", 2878 | "unicode": "f0e5", 2879 | "created": 2, 2880 | "filter": [ 2881 | "speech", 2882 | "notification", 2883 | "note", 2884 | "chat", 2885 | "bubble", 2886 | "feedback", 2887 | "message", 2888 | "texting", 2889 | "sms" 2890 | ], 2891 | "categories": [ 2892 | "Web Application Icons" 2893 | ] 2894 | }, 2895 | { 2896 | "name": "comments-o", 2897 | "id": "comments-o", 2898 | "unicode": "f0e6", 2899 | "created": 2, 2900 | "filter": [ 2901 | "conversation", 2902 | "notification", 2903 | "notes", 2904 | "message", 2905 | "texting", 2906 | "sms", 2907 | "chat" 2908 | ], 2909 | "categories": [ 2910 | "Web Application Icons" 2911 | ] 2912 | }, 2913 | { 2914 | "name": "Lightning Bolt", 2915 | "id": "bolt", 2916 | "unicode": "f0e7", 2917 | "created": 2, 2918 | "filter": [ 2919 | "lightning", 2920 | "weather" 2921 | ], 2922 | "aliases": [ 2923 | "flash" 2924 | ], 2925 | "categories": [ 2926 | "Web Application Icons" 2927 | ] 2928 | }, 2929 | { 2930 | "name": "Sitemap", 2931 | "id": "sitemap", 2932 | "unicode": "f0e8", 2933 | "created": 2, 2934 | "filter": [ 2935 | "directory", 2936 | "hierarchy", 2937 | "organization" 2938 | ], 2939 | "categories": [ 2940 | "Web Application Icons" 2941 | ] 2942 | }, 2943 | { 2944 | "name": "Umbrella", 2945 | "id": "umbrella", 2946 | "unicode": "f0e9", 2947 | "created": 2, 2948 | "categories": [ 2949 | "Web Application Icons" 2950 | ] 2951 | }, 2952 | { 2953 | "name": "Clipboard", 2954 | "id": "clipboard", 2955 | "unicode": "f0ea", 2956 | "created": 2, 2957 | "filter": [ 2958 | "copy" 2959 | ], 2960 | "aliases": [ 2961 | "paste" 2962 | ], 2963 | "categories": [ 2964 | "Text Editor Icons" 2965 | ] 2966 | }, 2967 | { 2968 | "name": "Lightbulb Outlined", 2969 | "id": "lightbulb-o", 2970 | "unicode": "f0eb", 2971 | "created": 3, 2972 | "filter": [ 2973 | "idea", 2974 | "inspiration" 2975 | ], 2976 | "categories": [ 2977 | "Web Application Icons" 2978 | ] 2979 | }, 2980 | { 2981 | "name": "Exchange", 2982 | "id": "exchange", 2983 | "unicode": "f0ec", 2984 | "created": 3, 2985 | "filter": [ 2986 | "transfer", 2987 | "arrows", 2988 | "arrow" 2989 | ], 2990 | "categories": [ 2991 | "Web Application Icons", 2992 | "Directional Icons" 2993 | ] 2994 | }, 2995 | { 2996 | "name": "Cloud Download", 2997 | "id": "cloud-download", 2998 | "unicode": "f0ed", 2999 | "created": 3, 3000 | "filter": [ 3001 | "import" 3002 | ], 3003 | "categories": [ 3004 | "Web Application Icons" 3005 | ] 3006 | }, 3007 | { 3008 | "name": "Cloud Upload", 3009 | "id": "cloud-upload", 3010 | "unicode": "f0ee", 3011 | "created": 3, 3012 | "filter": [ 3013 | "import" 3014 | ], 3015 | "categories": [ 3016 | "Web Application Icons" 3017 | ] 3018 | }, 3019 | { 3020 | "name": "user-md", 3021 | "id": "user-md", 3022 | "unicode": "f0f0", 3023 | "created": 2, 3024 | "filter": [ 3025 | "doctor", 3026 | "profile", 3027 | "medical", 3028 | "nurse" 3029 | ], 3030 | "categories": [ 3031 | "Medical Icons" 3032 | ] 3033 | }, 3034 | { 3035 | "name": "Stethoscope", 3036 | "id": "stethoscope", 3037 | "unicode": "f0f1", 3038 | "created": 3, 3039 | "categories": [ 3040 | "Medical Icons" 3041 | ] 3042 | }, 3043 | { 3044 | "name": "Suitcase", 3045 | "id": "suitcase", 3046 | "unicode": "f0f2", 3047 | "created": 3, 3048 | "filter": [ 3049 | "trip", 3050 | "luggage", 3051 | "travel", 3052 | "move", 3053 | "baggage" 3054 | ], 3055 | "categories": [ 3056 | "Web Application Icons" 3057 | ] 3058 | }, 3059 | { 3060 | "name": "Bell Outlined", 3061 | "id": "bell-o", 3062 | "unicode": "f0a2", 3063 | "created": 3, 3064 | "filter": [ 3065 | "alert", 3066 | "reminder", 3067 | "notification" 3068 | ], 3069 | "categories": [ 3070 | "Web Application Icons" 3071 | ] 3072 | }, 3073 | { 3074 | "name": "Coffee", 3075 | "id": "coffee", 3076 | "unicode": "f0f4", 3077 | "created": 3, 3078 | "filter": [ 3079 | "morning", 3080 | "mug", 3081 | "breakfast", 3082 | "tea", 3083 | "drink", 3084 | "cafe" 3085 | ], 3086 | "categories": [ 3087 | "Web Application Icons" 3088 | ] 3089 | }, 3090 | { 3091 | "name": "Cutlery", 3092 | "id": "cutlery", 3093 | "unicode": "f0f5", 3094 | "created": 3, 3095 | "filter": [ 3096 | "food", 3097 | "restaurant", 3098 | "spoon", 3099 | "knife", 3100 | "dinner", 3101 | "eat" 3102 | ], 3103 | "categories": [ 3104 | "Web Application Icons" 3105 | ] 3106 | }, 3107 | { 3108 | "name": "File Text Outlined", 3109 | "id": "file-text-o", 3110 | "unicode": "f0f6", 3111 | "created": 3, 3112 | "filter": [ 3113 | "new", 3114 | "page", 3115 | "pdf", 3116 | "document" 3117 | ], 3118 | "categories": [ 3119 | "Text Editor Icons", 3120 | "File Type Icons" 3121 | ] 3122 | }, 3123 | { 3124 | "name": "Building Outlined", 3125 | "id": "building-o", 3126 | "unicode": "f0f7", 3127 | "created": 3, 3128 | "filter": [ 3129 | "work", 3130 | "business", 3131 | "apartment", 3132 | "office", 3133 | "company" 3134 | ], 3135 | "categories": [ 3136 | "Web Application Icons" 3137 | ] 3138 | }, 3139 | { 3140 | "name": "hospital Outlined", 3141 | "id": "hospital-o", 3142 | "unicode": "f0f8", 3143 | "created": 3, 3144 | "filter": [ 3145 | "building" 3146 | ], 3147 | "categories": [ 3148 | "Medical Icons" 3149 | ] 3150 | }, 3151 | { 3152 | "name": "ambulance", 3153 | "id": "ambulance", 3154 | "unicode": "f0f9", 3155 | "created": 3, 3156 | "filter": [ 3157 | "vehicle", 3158 | "support", 3159 | "help" 3160 | ], 3161 | "categories": [ 3162 | "Medical Icons", 3163 | "Transportation Icons" 3164 | ] 3165 | }, 3166 | { 3167 | "name": "medkit", 3168 | "id": "medkit", 3169 | "unicode": "f0fa", 3170 | "created": 3, 3171 | "filter": [ 3172 | "first aid", 3173 | "firstaid", 3174 | "help", 3175 | "support", 3176 | "health" 3177 | ], 3178 | "categories": [ 3179 | "Medical Icons" 3180 | ] 3181 | }, 3182 | { 3183 | "name": "fighter-jet", 3184 | "id": "fighter-jet", 3185 | "unicode": "f0fb", 3186 | "created": 3, 3187 | "filter": [ 3188 | "fly", 3189 | "plane", 3190 | "airplane", 3191 | "quick", 3192 | "fast", 3193 | "travel" 3194 | ], 3195 | "categories": [ 3196 | "Web Application Icons", 3197 | "Transportation Icons" 3198 | ] 3199 | }, 3200 | { 3201 | "name": "beer", 3202 | "id": "beer", 3203 | "unicode": "f0fc", 3204 | "created": 3, 3205 | "filter": [ 3206 | "alcohol", 3207 | "stein", 3208 | "drink", 3209 | "mug", 3210 | "bar", 3211 | "liquor" 3212 | ], 3213 | "categories": [ 3214 | "Web Application Icons" 3215 | ] 3216 | }, 3217 | { 3218 | "name": "H Square", 3219 | "id": "h-square", 3220 | "unicode": "f0fd", 3221 | "created": 3, 3222 | "filter": [ 3223 | "hospital", 3224 | "hotel" 3225 | ], 3226 | "categories": [ 3227 | "Medical Icons" 3228 | ] 3229 | }, 3230 | { 3231 | "name": "Plus Square", 3232 | "id": "plus-square", 3233 | "unicode": "f0fe", 3234 | "created": 3, 3235 | "filter": [ 3236 | "add", 3237 | "new", 3238 | "create", 3239 | "expand" 3240 | ], 3241 | "categories": [ 3242 | "Medical Icons", 3243 | "Web Application Icons", 3244 | "Form Control Icons" 3245 | ] 3246 | }, 3247 | { 3248 | "name": "Angle Double Left", 3249 | "id": "angle-double-left", 3250 | "unicode": "f100", 3251 | "created": 3, 3252 | "filter": [ 3253 | "laquo", 3254 | "quote", 3255 | "previous", 3256 | "back", 3257 | "arrows" 3258 | ], 3259 | "categories": [ 3260 | "Directional Icons" 3261 | ] 3262 | }, 3263 | { 3264 | "name": "Angle Double Right", 3265 | "id": "angle-double-right", 3266 | "unicode": "f101", 3267 | "created": 3, 3268 | "filter": [ 3269 | "raquo", 3270 | "quote", 3271 | "next", 3272 | "forward", 3273 | "arrows" 3274 | ], 3275 | "categories": [ 3276 | "Directional Icons" 3277 | ] 3278 | }, 3279 | { 3280 | "name": "Angle Double Up", 3281 | "id": "angle-double-up", 3282 | "unicode": "f102", 3283 | "created": 3, 3284 | "filter": [ 3285 | "arrows" 3286 | ], 3287 | "categories": [ 3288 | "Directional Icons" 3289 | ] 3290 | }, 3291 | { 3292 | "name": "Angle Double Down", 3293 | "id": "angle-double-down", 3294 | "unicode": "f103", 3295 | "created": 3, 3296 | "filter": [ 3297 | "arrows" 3298 | ], 3299 | "categories": [ 3300 | "Directional Icons" 3301 | ] 3302 | }, 3303 | { 3304 | "name": "angle-left", 3305 | "id": "angle-left", 3306 | "unicode": "f104", 3307 | "created": 3, 3308 | "filter": [ 3309 | "previous", 3310 | "back", 3311 | "arrow" 3312 | ], 3313 | "categories": [ 3314 | "Directional Icons" 3315 | ] 3316 | }, 3317 | { 3318 | "name": "angle-right", 3319 | "id": "angle-right", 3320 | "unicode": "f105", 3321 | "created": 3, 3322 | "filter": [ 3323 | "next", 3324 | "forward", 3325 | "arrow" 3326 | ], 3327 | "categories": [ 3328 | "Directional Icons" 3329 | ] 3330 | }, 3331 | { 3332 | "name": "angle-up", 3333 | "id": "angle-up", 3334 | "unicode": "f106", 3335 | "created": 3, 3336 | "filter": [ 3337 | "arrow" 3338 | ], 3339 | "categories": [ 3340 | "Directional Icons" 3341 | ] 3342 | }, 3343 | { 3344 | "name": "angle-down", 3345 | "id": "angle-down", 3346 | "unicode": "f107", 3347 | "created": 3, 3348 | "filter": [ 3349 | "arrow" 3350 | ], 3351 | "categories": [ 3352 | "Directional Icons" 3353 | ] 3354 | }, 3355 | { 3356 | "name": "Desktop", 3357 | "id": "desktop", 3358 | "unicode": "f108", 3359 | "created": 3, 3360 | "filter": [ 3361 | "monitor", 3362 | "screen", 3363 | "desktop", 3364 | "computer", 3365 | "demo", 3366 | "device" 3367 | ], 3368 | "categories": [ 3369 | "Web Application Icons" 3370 | ] 3371 | }, 3372 | { 3373 | "name": "Laptop", 3374 | "id": "laptop", 3375 | "unicode": "f109", 3376 | "created": 3, 3377 | "filter": [ 3378 | "demo", 3379 | "computer", 3380 | "device" 3381 | ], 3382 | "categories": [ 3383 | "Web Application Icons" 3384 | ] 3385 | }, 3386 | { 3387 | "name": "tablet", 3388 | "id": "tablet", 3389 | "unicode": "f10a", 3390 | "created": 3, 3391 | "filter": [ 3392 | "ipad", 3393 | "device" 3394 | ], 3395 | "categories": [ 3396 | "Web Application Icons" 3397 | ] 3398 | }, 3399 | { 3400 | "name": "Mobile Phone", 3401 | "id": "mobile", 3402 | "unicode": "f10b", 3403 | "created": 3, 3404 | "filter": [ 3405 | "cell phone", 3406 | "cellphone", 3407 | "text", 3408 | "call", 3409 | "iphone", 3410 | "number" 3411 | ], 3412 | "aliases": [ 3413 | "mobile-phone" 3414 | ], 3415 | "categories": [ 3416 | "Web Application Icons" 3417 | ] 3418 | }, 3419 | { 3420 | "name": "Circle Outlined", 3421 | "id": "circle-o", 3422 | "unicode": "f10c", 3423 | "created": 3, 3424 | "categories": [ 3425 | "Web Application Icons", 3426 | "Form Control Icons" 3427 | ] 3428 | }, 3429 | { 3430 | "name": "quote-left", 3431 | "id": "quote-left", 3432 | "unicode": "f10d", 3433 | "created": 3, 3434 | "categories": [ 3435 | "Web Application Icons" 3436 | ] 3437 | }, 3438 | { 3439 | "name": "quote-right", 3440 | "id": "quote-right", 3441 | "unicode": "f10e", 3442 | "created": 3, 3443 | "categories": [ 3444 | "Web Application Icons" 3445 | ] 3446 | }, 3447 | { 3448 | "name": "Spinner", 3449 | "id": "spinner", 3450 | "unicode": "f110", 3451 | "created": 3, 3452 | "filter": [ 3453 | "loading", 3454 | "progress" 3455 | ], 3456 | "categories": [ 3457 | "Web Application Icons", 3458 | "Spinner Icons" 3459 | ] 3460 | }, 3461 | { 3462 | "name": "Circle", 3463 | "id": "circle", 3464 | "unicode": "f111", 3465 | "created": 3, 3466 | "filter": [ 3467 | "dot", 3468 | "notification" 3469 | ], 3470 | "categories": [ 3471 | "Web Application Icons", 3472 | "Form Control Icons" 3473 | ] 3474 | }, 3475 | { 3476 | "name": "Reply", 3477 | "id": "reply", 3478 | "unicode": "f112", 3479 | "created": 3, 3480 | "aliases": [ 3481 | "mail-reply" 3482 | ], 3483 | "categories": [ 3484 | "Web Application Icons" 3485 | ] 3486 | }, 3487 | { 3488 | "name": "GitHub Alt", 3489 | "id": "github-alt", 3490 | "unicode": "f113", 3491 | "created": 3, 3492 | "url": "github.com/logos", 3493 | "filter": [ 3494 | "octocat" 3495 | ], 3496 | "categories": [ 3497 | "Brand Icons" 3498 | ] 3499 | }, 3500 | { 3501 | "name": "Folder Outlined", 3502 | "id": "folder-o", 3503 | "unicode": "f114", 3504 | "created": 3, 3505 | "categories": [ 3506 | "Web Application Icons" 3507 | ] 3508 | }, 3509 | { 3510 | "name": "Folder Open Outlined", 3511 | "id": "folder-open-o", 3512 | "unicode": "f115", 3513 | "created": 3, 3514 | "categories": [ 3515 | "Web Application Icons" 3516 | ] 3517 | }, 3518 | { 3519 | "name": "Smile Outlined", 3520 | "id": "smile-o", 3521 | "unicode": "f118", 3522 | "created": 3.1, 3523 | "filter": [ 3524 | "face", 3525 | "emoticon", 3526 | "happy", 3527 | "approve", 3528 | "satisfied", 3529 | "rating" 3530 | ], 3531 | "categories": [ 3532 | "Web Application Icons" 3533 | ] 3534 | }, 3535 | { 3536 | "name": "Frown Outlined", 3537 | "id": "frown-o", 3538 | "unicode": "f119", 3539 | "created": 3.1, 3540 | "filter": [ 3541 | "face", 3542 | "emoticon", 3543 | "sad", 3544 | "disapprove", 3545 | "rating" 3546 | ], 3547 | "categories": [ 3548 | "Web Application Icons" 3549 | ] 3550 | }, 3551 | { 3552 | "name": "Meh Outlined", 3553 | "id": "meh-o", 3554 | "unicode": "f11a", 3555 | "created": 3.1, 3556 | "filter": [ 3557 | "face", 3558 | "emoticon", 3559 | "rating", 3560 | "neutral" 3561 | ], 3562 | "categories": [ 3563 | "Web Application Icons" 3564 | ] 3565 | }, 3566 | { 3567 | "name": "Gamepad", 3568 | "id": "gamepad", 3569 | "unicode": "f11b", 3570 | "created": 3.1, 3571 | "filter": [ 3572 | "controller" 3573 | ], 3574 | "categories": [ 3575 | "Web Application Icons" 3576 | ] 3577 | }, 3578 | { 3579 | "name": "Keyboard Outlined", 3580 | "id": "keyboard-o", 3581 | "unicode": "f11c", 3582 | "created": 3.1, 3583 | "filter": [ 3584 | "type", 3585 | "input" 3586 | ], 3587 | "categories": [ 3588 | "Web Application Icons" 3589 | ] 3590 | }, 3591 | { 3592 | "name": "Flag Outlined", 3593 | "id": "flag-o", 3594 | "unicode": "f11d", 3595 | "created": 3.1, 3596 | "filter": [ 3597 | "report", 3598 | "notification" 3599 | ], 3600 | "categories": [ 3601 | "Web Application Icons" 3602 | ] 3603 | }, 3604 | { 3605 | "name": "flag-checkered", 3606 | "id": "flag-checkered", 3607 | "unicode": "f11e", 3608 | "created": 3.1, 3609 | "filter": [ 3610 | "report", 3611 | "notification", 3612 | "notify" 3613 | ], 3614 | "categories": [ 3615 | "Web Application Icons" 3616 | ] 3617 | }, 3618 | { 3619 | "name": "Terminal", 3620 | "id": "terminal", 3621 | "unicode": "f120", 3622 | "created": 3.1, 3623 | "filter": [ 3624 | "command", 3625 | "prompt", 3626 | "code" 3627 | ], 3628 | "categories": [ 3629 | "Web Application Icons" 3630 | ] 3631 | }, 3632 | { 3633 | "name": "Code", 3634 | "id": "code", 3635 | "unicode": "f121", 3636 | "created": 3.1, 3637 | "filter": [ 3638 | "html", 3639 | "brackets" 3640 | ], 3641 | "categories": [ 3642 | "Web Application Icons" 3643 | ] 3644 | }, 3645 | { 3646 | "name": "reply-all", 3647 | "id": "reply-all", 3648 | "unicode": "f122", 3649 | "created": 3.1, 3650 | "aliases": [ 3651 | "mail-reply-all" 3652 | ], 3653 | "categories": [ 3654 | "Web Application Icons" 3655 | ] 3656 | }, 3657 | { 3658 | "name": "Star Half Outlined", 3659 | "id": "star-half-o", 3660 | "unicode": "f123", 3661 | "created": 3.1, 3662 | "filter": [ 3663 | "award", 3664 | "achievement", 3665 | "rating", 3666 | "score" 3667 | ], 3668 | "aliases": [ 3669 | "star-half-empty", 3670 | "star-half-full" 3671 | ], 3672 | "categories": [ 3673 | "Web Application Icons" 3674 | ] 3675 | }, 3676 | { 3677 | "name": "location-arrow", 3678 | "id": "location-arrow", 3679 | "unicode": "f124", 3680 | "created": 3.1, 3681 | "filter": [ 3682 | "map", 3683 | "coordinates", 3684 | "location", 3685 | "address", 3686 | "place", 3687 | "where" 3688 | ], 3689 | "categories": [ 3690 | "Web Application Icons" 3691 | ] 3692 | }, 3693 | { 3694 | "name": "crop", 3695 | "id": "crop", 3696 | "unicode": "f125", 3697 | "created": 3.1, 3698 | "categories": [ 3699 | "Web Application Icons" 3700 | ] 3701 | }, 3702 | { 3703 | "name": "code-fork", 3704 | "id": "code-fork", 3705 | "unicode": "f126", 3706 | "created": 3.1, 3707 | "filter": [ 3708 | "git", 3709 | "fork", 3710 | "vcs", 3711 | "svn", 3712 | "github", 3713 | "rebase", 3714 | "version", 3715 | "merge" 3716 | ], 3717 | "categories": [ 3718 | "Web Application Icons" 3719 | ] 3720 | }, 3721 | { 3722 | "name": "Chain Broken", 3723 | "id": "chain-broken", 3724 | "unicode": "f127", 3725 | "created": 3.1, 3726 | "filter": [ 3727 | "remove" 3728 | ], 3729 | "aliases": [ 3730 | "unlink" 3731 | ], 3732 | "categories": [ 3733 | "Text Editor Icons" 3734 | ] 3735 | }, 3736 | { 3737 | "name": "Question", 3738 | "id": "question", 3739 | "unicode": "f128", 3740 | "created": 3.1, 3741 | "filter": [ 3742 | "help", 3743 | "information", 3744 | "unknown", 3745 | "support" 3746 | ], 3747 | "categories": [ 3748 | "Web Application Icons" 3749 | ] 3750 | }, 3751 | { 3752 | "name": "Info", 3753 | "id": "info", 3754 | "unicode": "f129", 3755 | "created": 3.1, 3756 | "filter": [ 3757 | "help", 3758 | "information", 3759 | "more", 3760 | "details" 3761 | ], 3762 | "categories": [ 3763 | "Web Application Icons" 3764 | ] 3765 | }, 3766 | { 3767 | "name": "exclamation", 3768 | "id": "exclamation", 3769 | "unicode": "f12a", 3770 | "created": 3.1, 3771 | "filter": [ 3772 | "warning", 3773 | "error", 3774 | "problem", 3775 | "notification", 3776 | "notify", 3777 | "alert" 3778 | ], 3779 | "categories": [ 3780 | "Web Application Icons" 3781 | ] 3782 | }, 3783 | { 3784 | "name": "superscript", 3785 | "id": "superscript", 3786 | "unicode": "f12b", 3787 | "created": 3.1, 3788 | "filter": [ 3789 | "exponential" 3790 | ], 3791 | "categories": [ 3792 | "Text Editor Icons" 3793 | ] 3794 | }, 3795 | { 3796 | "name": "subscript", 3797 | "id": "subscript", 3798 | "unicode": "f12c", 3799 | "created": 3.1, 3800 | "categories": [ 3801 | "Text Editor Icons" 3802 | ] 3803 | }, 3804 | { 3805 | "name": "eraser", 3806 | "id": "eraser", 3807 | "unicode": "f12d", 3808 | "created": 3.1, 3809 | "filter": [ 3810 | "remove", 3811 | "delete" 3812 | ], 3813 | "categories": [ 3814 | "Text Editor Icons", 3815 | "Web Application Icons" 3816 | ] 3817 | }, 3818 | { 3819 | "name": "Puzzle Piece", 3820 | "id": "puzzle-piece", 3821 | "unicode": "f12e", 3822 | "created": 3.1, 3823 | "filter": [ 3824 | "addon", 3825 | "add-on", 3826 | "section" 3827 | ], 3828 | "categories": [ 3829 | "Web Application Icons" 3830 | ] 3831 | }, 3832 | { 3833 | "name": "microphone", 3834 | "id": "microphone", 3835 | "unicode": "f130", 3836 | "created": 3.1, 3837 | "filter": [ 3838 | "record", 3839 | "voice", 3840 | "sound" 3841 | ], 3842 | "categories": [ 3843 | "Web Application Icons" 3844 | ] 3845 | }, 3846 | { 3847 | "name": "Microphone Slash", 3848 | "id": "microphone-slash", 3849 | "unicode": "f131", 3850 | "created": 3.1, 3851 | "filter": [ 3852 | "record", 3853 | "voice", 3854 | "sound", 3855 | "mute" 3856 | ], 3857 | "categories": [ 3858 | "Web Application Icons" 3859 | ] 3860 | }, 3861 | { 3862 | "name": "shield", 3863 | "id": "shield", 3864 | "unicode": "f132", 3865 | "created": 3.1, 3866 | "filter": [ 3867 | "award", 3868 | "achievement", 3869 | "winner" 3870 | ], 3871 | "categories": [ 3872 | "Web Application Icons" 3873 | ] 3874 | }, 3875 | { 3876 | "name": "calendar-o", 3877 | "id": "calendar-o", 3878 | "unicode": "f133", 3879 | "created": 3.1, 3880 | "filter": [ 3881 | "date", 3882 | "time", 3883 | "when", 3884 | "event" 3885 | ], 3886 | "categories": [ 3887 | "Web Application Icons" 3888 | ] 3889 | }, 3890 | { 3891 | "name": "fire-extinguisher", 3892 | "id": "fire-extinguisher", 3893 | "unicode": "f134", 3894 | "created": 3.1, 3895 | "categories": [ 3896 | "Web Application Icons" 3897 | ] 3898 | }, 3899 | { 3900 | "name": "rocket", 3901 | "id": "rocket", 3902 | "unicode": "f135", 3903 | "created": 3.1, 3904 | "filter": [ 3905 | "app" 3906 | ], 3907 | "categories": [ 3908 | "Web Application Icons", 3909 | "Transportation Icons" 3910 | ] 3911 | }, 3912 | { 3913 | "name": "MaxCDN", 3914 | "id": "maxcdn", 3915 | "unicode": "f136", 3916 | "created": 3.1, 3917 | "categories": [ 3918 | "Brand Icons" 3919 | ] 3920 | }, 3921 | { 3922 | "name": "Chevron Circle Left", 3923 | "id": "chevron-circle-left", 3924 | "unicode": "f137", 3925 | "created": 3.1, 3926 | "filter": [ 3927 | "previous", 3928 | "back", 3929 | "arrow" 3930 | ], 3931 | "categories": [ 3932 | "Directional Icons" 3933 | ] 3934 | }, 3935 | { 3936 | "name": "Chevron Circle Right", 3937 | "id": "chevron-circle-right", 3938 | "unicode": "f138", 3939 | "created": 3.1, 3940 | "filter": [ 3941 | "next", 3942 | "forward", 3943 | "arrow" 3944 | ], 3945 | "categories": [ 3946 | "Directional Icons" 3947 | ] 3948 | }, 3949 | { 3950 | "name": "Chevron Circle Up", 3951 | "id": "chevron-circle-up", 3952 | "unicode": "f139", 3953 | "created": 3.1, 3954 | "filter": [ 3955 | "arrow" 3956 | ], 3957 | "categories": [ 3958 | "Directional Icons" 3959 | ] 3960 | }, 3961 | { 3962 | "name": "Chevron Circle Down", 3963 | "id": "chevron-circle-down", 3964 | "unicode": "f13a", 3965 | "created": 3.1, 3966 | "filter": [ 3967 | "more", 3968 | "dropdown", 3969 | "menu", 3970 | "arrow" 3971 | ], 3972 | "categories": [ 3973 | "Directional Icons" 3974 | ] 3975 | }, 3976 | { 3977 | "name": "HTML 5 Logo", 3978 | "id": "html5", 3979 | "unicode": "f13b", 3980 | "created": 3.1, 3981 | "code": [ 3982 | "code", 3983 | "html5" 3984 | ], 3985 | "categories": [ 3986 | "Brand Icons" 3987 | ] 3988 | }, 3989 | { 3990 | "name": "CSS 3 Logo", 3991 | "id": "css3", 3992 | "unicode": "f13c", 3993 | "created": 3.1, 3994 | "filter": [ 3995 | "code" 3996 | ], 3997 | "categories": [ 3998 | "Brand Icons" 3999 | ] 4000 | }, 4001 | { 4002 | "name": "Anchor", 4003 | "id": "anchor", 4004 | "unicode": "f13d", 4005 | "created": 3.1, 4006 | "filter": [ 4007 | "link" 4008 | ], 4009 | "categories": [ 4010 | "Web Application Icons" 4011 | ] 4012 | }, 4013 | { 4014 | "name": "Unlock Alt", 4015 | "id": "unlock-alt", 4016 | "unicode": "f13e", 4017 | "created": 3.1, 4018 | "filter": [ 4019 | "protect", 4020 | "admin", 4021 | "password", 4022 | "lock" 4023 | ], 4024 | "categories": [ 4025 | "Web Application Icons" 4026 | ] 4027 | }, 4028 | { 4029 | "name": "Bullseye", 4030 | "id": "bullseye", 4031 | "unicode": "f140", 4032 | "created": 3.1, 4033 | "filter": [ 4034 | "target" 4035 | ], 4036 | "categories": [ 4037 | "Web Application Icons" 4038 | ] 4039 | }, 4040 | { 4041 | "name": "Ellipsis Horizontal", 4042 | "id": "ellipsis-h", 4043 | "unicode": "f141", 4044 | "created": 3.1, 4045 | "filter": [ 4046 | "dots" 4047 | ], 4048 | "categories": [ 4049 | "Web Application Icons" 4050 | ] 4051 | }, 4052 | { 4053 | "name": "Ellipsis Vertical", 4054 | "id": "ellipsis-v", 4055 | "unicode": "f142", 4056 | "created": 3.1, 4057 | "filter": [ 4058 | "dots" 4059 | ], 4060 | "categories": [ 4061 | "Web Application Icons" 4062 | ] 4063 | }, 4064 | { 4065 | "name": "RSS Square", 4066 | "id": "rss-square", 4067 | "unicode": "f143", 4068 | "created": 3.1, 4069 | "filter": [ 4070 | "feed", 4071 | "blog" 4072 | ], 4073 | "categories": [ 4074 | "Web Application Icons" 4075 | ] 4076 | }, 4077 | { 4078 | "name": "Play Circle", 4079 | "id": "play-circle", 4080 | "unicode": "f144", 4081 | "created": 3.1, 4082 | "filter": [ 4083 | "start", 4084 | "playing" 4085 | ], 4086 | "categories": [ 4087 | "Video Player Icons" 4088 | ] 4089 | }, 4090 | { 4091 | "name": "Ticket", 4092 | "id": "ticket", 4093 | "unicode": "f145", 4094 | "created": 3.1, 4095 | "filter": [ 4096 | "movie", 4097 | "pass", 4098 | "support" 4099 | ], 4100 | "categories": [ 4101 | "Web Application Icons" 4102 | ] 4103 | }, 4104 | { 4105 | "name": "Minus Square", 4106 | "id": "minus-square", 4107 | "unicode": "f146", 4108 | "created": 3.1, 4109 | "filter": [ 4110 | "hide", 4111 | "minify", 4112 | "delete", 4113 | "remove", 4114 | "trash", 4115 | "hide", 4116 | "collapse" 4117 | ], 4118 | "categories": [ 4119 | "Web Application Icons", 4120 | "Form Control Icons" 4121 | ] 4122 | }, 4123 | { 4124 | "name": "Minus Square Outlined", 4125 | "id": "minus-square-o", 4126 | "unicode": "f147", 4127 | "created": 3.1, 4128 | "filter": [ 4129 | "hide", 4130 | "minify", 4131 | "delete", 4132 | "remove", 4133 | "trash", 4134 | "hide", 4135 | "collapse" 4136 | ], 4137 | "categories": [ 4138 | "Web Application Icons", 4139 | "Form Control Icons" 4140 | ] 4141 | }, 4142 | { 4143 | "name": "Level Up", 4144 | "id": "level-up", 4145 | "unicode": "f148", 4146 | "created": 3.1, 4147 | "filter": [ 4148 | "arrow" 4149 | ], 4150 | "categories": [ 4151 | "Web Application Icons" 4152 | ] 4153 | }, 4154 | { 4155 | "name": "Level Down", 4156 | "id": "level-down", 4157 | "unicode": "f149", 4158 | "created": 3.1, 4159 | "filter": [ 4160 | "arrow" 4161 | ], 4162 | "categories": [ 4163 | "Web Application Icons" 4164 | ] 4165 | }, 4166 | { 4167 | "name": "Check Square", 4168 | "id": "check-square", 4169 | "unicode": "f14a", 4170 | "created": 3.1, 4171 | "filter": [ 4172 | "checkmark", 4173 | "done", 4174 | "todo", 4175 | "agree", 4176 | "accept", 4177 | "confirm", 4178 | "ok" 4179 | ], 4180 | "categories": [ 4181 | "Web Application Icons", 4182 | "Form Control Icons" 4183 | ] 4184 | }, 4185 | { 4186 | "name": "Pencil Square", 4187 | "id": "pencil-square", 4188 | "unicode": "f14b", 4189 | "created": 3.1, 4190 | "filter": [ 4191 | "write", 4192 | "edit", 4193 | "update" 4194 | ], 4195 | "categories": [ 4196 | "Web Application Icons" 4197 | ] 4198 | }, 4199 | { 4200 | "name": "External Link Square", 4201 | "id": "external-link-square", 4202 | "unicode": "f14c", 4203 | "created": 3.1, 4204 | "filter": [ 4205 | "open", 4206 | "new" 4207 | ], 4208 | "categories": [ 4209 | "Web Application Icons" 4210 | ] 4211 | }, 4212 | { 4213 | "name": "Share Square", 4214 | "id": "share-square", 4215 | "unicode": "f14d", 4216 | "created": 3.1, 4217 | "filter": [ 4218 | "social", 4219 | "send" 4220 | ], 4221 | "categories": [ 4222 | "Web Application Icons" 4223 | ] 4224 | }, 4225 | { 4226 | "name": "Compass", 4227 | "id": "compass", 4228 | "unicode": "f14e", 4229 | "created": 3.2, 4230 | "filter": [ 4231 | "safari", 4232 | "directory", 4233 | "menu", 4234 | "location" 4235 | ], 4236 | "categories": [ 4237 | "Web Application Icons" 4238 | ] 4239 | }, 4240 | { 4241 | "name": "Caret Square Outlined Down", 4242 | "id": "caret-square-o-down", 4243 | "unicode": "f150", 4244 | "created": 3.2, 4245 | "aliases": [ 4246 | "toggle-down" 4247 | ], 4248 | "filter": [ 4249 | "more", 4250 | "dropdown", 4251 | "menu" 4252 | ], 4253 | "categories": [ 4254 | "Web Application Icons", 4255 | "Directional Icons" 4256 | ] 4257 | }, 4258 | { 4259 | "name": "Caret Square Outlined Up", 4260 | "id": "caret-square-o-up", 4261 | "unicode": "f151", 4262 | "created": 3.2, 4263 | "aliases": [ 4264 | "toggle-up" 4265 | ], 4266 | "categories": [ 4267 | "Web Application Icons", 4268 | "Directional Icons" 4269 | ] 4270 | }, 4271 | { 4272 | "name": "Caret Square Outlined Right", 4273 | "id": "caret-square-o-right", 4274 | "unicode": "f152", 4275 | "created": 3.2, 4276 | "filter": [ 4277 | "next", 4278 | "forward" 4279 | ], 4280 | "aliases": [ 4281 | "toggle-right" 4282 | ], 4283 | "categories": [ 4284 | "Web Application Icons", 4285 | "Directional Icons" 4286 | ] 4287 | }, 4288 | { 4289 | "name": "Euro (EUR)", 4290 | "id": "eur", 4291 | "unicode": "f153", 4292 | "created": 3.2, 4293 | "aliases": [ 4294 | "euro" 4295 | ], 4296 | "categories": [ 4297 | "Currency Icons" 4298 | ] 4299 | }, 4300 | { 4301 | "name": "GBP", 4302 | "id": "gbp", 4303 | "unicode": "f154", 4304 | "created": 3.2, 4305 | "categories": [ 4306 | "Currency Icons" 4307 | ] 4308 | }, 4309 | { 4310 | "name": "US Dollar", 4311 | "id": "usd", 4312 | "unicode": "f155", 4313 | "created": 3.2, 4314 | "aliases": [ 4315 | "dollar" 4316 | ], 4317 | "categories": [ 4318 | "Currency Icons" 4319 | ] 4320 | }, 4321 | { 4322 | "name": "Indian Rupee (INR)", 4323 | "id": "inr", 4324 | "unicode": "f156", 4325 | "created": 3.2, 4326 | "aliases": [ 4327 | "rupee" 4328 | ], 4329 | "categories": [ 4330 | "Currency Icons" 4331 | ] 4332 | }, 4333 | { 4334 | "name": "Japanese Yen (JPY)", 4335 | "id": "jpy", 4336 | "unicode": "f157", 4337 | "created": 3.2, 4338 | "aliases": [ 4339 | "cny", 4340 | "rmb", 4341 | "yen" 4342 | ], 4343 | "categories": [ 4344 | "Currency Icons" 4345 | ] 4346 | }, 4347 | { 4348 | "name": "Russian Ruble (RUB)", 4349 | "id": "rub", 4350 | "unicode": "f158", 4351 | "created": 4, 4352 | "aliases": [ 4353 | "ruble", 4354 | "rouble" 4355 | ], 4356 | "categories": [ 4357 | "Currency Icons" 4358 | ] 4359 | }, 4360 | { 4361 | "name": "Korean Won (KRW)", 4362 | "id": "krw", 4363 | "unicode": "f159", 4364 | "created": 3.2, 4365 | "aliases": [ 4366 | "won" 4367 | ], 4368 | "categories": [ 4369 | "Currency Icons" 4370 | ] 4371 | }, 4372 | { 4373 | "name": "Bitcoin (BTC)", 4374 | "id": "btc", 4375 | "unicode": "f15a", 4376 | "created": 3.2, 4377 | "aliases": [ 4378 | "bitcoin" 4379 | ], 4380 | "categories": [ 4381 | "Currency Icons", 4382 | "Brand Icons" 4383 | ] 4384 | }, 4385 | { 4386 | "name": "File", 4387 | "id": "file", 4388 | "unicode": "f15b", 4389 | "created": 3.2, 4390 | "filter": [ 4391 | "new", 4392 | "page", 4393 | "pdf", 4394 | "document" 4395 | ], 4396 | "categories": [ 4397 | "Text Editor Icons", 4398 | "File Type Icons" 4399 | ] 4400 | }, 4401 | { 4402 | "name": "File Text", 4403 | "id": "file-text", 4404 | "unicode": "f15c", 4405 | "created": 3.2, 4406 | "filter": [ 4407 | "new", 4408 | "page", 4409 | "pdf", 4410 | "document" 4411 | ], 4412 | "categories": [ 4413 | "Text Editor Icons", 4414 | "File Type Icons" 4415 | ] 4416 | }, 4417 | { 4418 | "name": "Sort Alpha Ascending", 4419 | "id": "sort-alpha-asc", 4420 | "unicode": "f15d", 4421 | "created": 3.2, 4422 | "categories": [ 4423 | "Web Application Icons" 4424 | ] 4425 | }, 4426 | { 4427 | "name": "Sort Alpha Descending", 4428 | "id": "sort-alpha-desc", 4429 | "unicode": "f15e", 4430 | "created": 3.2, 4431 | "categories": [ 4432 | "Web Application Icons" 4433 | ] 4434 | }, 4435 | { 4436 | "name": "Sort Amount Ascending", 4437 | "id": "sort-amount-asc", 4438 | "unicode": "f160", 4439 | "created": 3.2, 4440 | "categories": [ 4441 | "Web Application Icons" 4442 | ] 4443 | }, 4444 | { 4445 | "name": "Sort Amount Descending", 4446 | "id": "sort-amount-desc", 4447 | "unicode": "f161", 4448 | "created": 3.2, 4449 | "categories": [ 4450 | "Web Application Icons" 4451 | ] 4452 | }, 4453 | { 4454 | "name": "Sort Numeric Ascending", 4455 | "id": "sort-numeric-asc", 4456 | "unicode": "f162", 4457 | "created": 3.2, 4458 | "filter": [ 4459 | "numbers" 4460 | ], 4461 | "categories": [ 4462 | "Web Application Icons" 4463 | ] 4464 | }, 4465 | { 4466 | "name": "Sort Numeric Descending", 4467 | "id": "sort-numeric-desc", 4468 | "unicode": "f163", 4469 | "created": 3.2, 4470 | "filter": [ 4471 | "numbers" 4472 | ], 4473 | "categories": [ 4474 | "Web Application Icons" 4475 | ] 4476 | }, 4477 | { 4478 | "name": "thumbs-up", 4479 | "id": "thumbs-up", 4480 | "unicode": "f164", 4481 | "created": 3.2, 4482 | "filter": [ 4483 | "like", 4484 | "favorite", 4485 | "approve", 4486 | "agree", 4487 | "hand" 4488 | ], 4489 | "categories": [ 4490 | "Web Application Icons", 4491 | "Hand Icons" 4492 | ] 4493 | }, 4494 | { 4495 | "name": "thumbs-down", 4496 | "id": "thumbs-down", 4497 | "unicode": "f165", 4498 | "created": 3.2, 4499 | "filter": [ 4500 | "dislike", 4501 | "disapprove", 4502 | "disagree", 4503 | "hand" 4504 | ], 4505 | "categories": [ 4506 | "Web Application Icons", 4507 | "Hand Icons" 4508 | ] 4509 | }, 4510 | { 4511 | "name": "YouTube Square", 4512 | "id": "youtube-square", 4513 | "unicode": "f166", 4514 | "created": 3.2, 4515 | "filter": [ 4516 | "video", 4517 | "film" 4518 | ], 4519 | "categories": [ 4520 | "Brand Icons" 4521 | ] 4522 | }, 4523 | { 4524 | "name": "YouTube", 4525 | "id": "youtube", 4526 | "unicode": "f167", 4527 | "created": 3.2, 4528 | "filter": [ 4529 | "video", 4530 | "film" 4531 | ], 4532 | "categories": [ 4533 | "Brand Icons" 4534 | ] 4535 | }, 4536 | { 4537 | "name": "Xing", 4538 | "id": "xing", 4539 | "unicode": "f168", 4540 | "created": 3.2, 4541 | "categories": [ 4542 | "Brand Icons" 4543 | ] 4544 | }, 4545 | { 4546 | "name": "Xing Square", 4547 | "id": "xing-square", 4548 | "unicode": "f169", 4549 | "created": 3.2, 4550 | "categories": [ 4551 | "Brand Icons" 4552 | ] 4553 | }, 4554 | { 4555 | "name": "YouTube Play", 4556 | "id": "youtube-play", 4557 | "unicode": "f16a", 4558 | "created": 3.2, 4559 | "filter": [ 4560 | "start", 4561 | "playing" 4562 | ], 4563 | "categories": [ 4564 | "Brand Icons", 4565 | "Video Player Icons" 4566 | ] 4567 | }, 4568 | { 4569 | "name": "Dropbox", 4570 | "id": "dropbox", 4571 | "unicode": "f16b", 4572 | "created": 3.2, 4573 | "categories": [ 4574 | "Brand Icons" 4575 | ] 4576 | }, 4577 | { 4578 | "name": "Stack Overflow", 4579 | "id": "stack-overflow", 4580 | "unicode": "f16c", 4581 | "created": 3.2, 4582 | "categories": [ 4583 | "Brand Icons" 4584 | ] 4585 | }, 4586 | { 4587 | "name": "Instagram", 4588 | "id": "instagram", 4589 | "unicode": "f16d", 4590 | "created": 4.6, 4591 | "categories": [ 4592 | "Brand Icons" 4593 | ] 4594 | }, 4595 | { 4596 | "name": "Flickr", 4597 | "id": "flickr", 4598 | "unicode": "f16e", 4599 | "created": 3.2, 4600 | "categories": [ 4601 | "Brand Icons" 4602 | ] 4603 | }, 4604 | { 4605 | "name": "App.net", 4606 | "id": "adn", 4607 | "unicode": "f170", 4608 | "created": 3.2, 4609 | "categories": [ 4610 | "Brand Icons" 4611 | ] 4612 | }, 4613 | { 4614 | "name": "Bitbucket", 4615 | "id": "bitbucket", 4616 | "unicode": "f171", 4617 | "created": 3.2, 4618 | "filter": [ 4619 | "git" 4620 | ], 4621 | "categories": [ 4622 | "Brand Icons" 4623 | ] 4624 | }, 4625 | { 4626 | "name": "Bitbucket Square", 4627 | "id": "bitbucket-square", 4628 | "unicode": "f172", 4629 | "created": 3.2, 4630 | "filter": [ 4631 | "git" 4632 | ], 4633 | "categories": [ 4634 | "Brand Icons" 4635 | ] 4636 | }, 4637 | { 4638 | "name": "Tumblr", 4639 | "id": "tumblr", 4640 | "unicode": "f173", 4641 | "created": 3.2, 4642 | "categories": [ 4643 | "Brand Icons" 4644 | ] 4645 | }, 4646 | { 4647 | "name": "Tumblr Square", 4648 | "id": "tumblr-square", 4649 | "unicode": "f174", 4650 | "created": 3.2, 4651 | "categories": [ 4652 | "Brand Icons" 4653 | ] 4654 | }, 4655 | { 4656 | "name": "Long Arrow Down", 4657 | "id": "long-arrow-down", 4658 | "unicode": "f175", 4659 | "created": 3.2, 4660 | "categories": [ 4661 | "Directional Icons" 4662 | ] 4663 | }, 4664 | { 4665 | "name": "Long Arrow Up", 4666 | "id": "long-arrow-up", 4667 | "unicode": "f176", 4668 | "created": 3.2, 4669 | "categories": [ 4670 | "Directional Icons" 4671 | ] 4672 | }, 4673 | { 4674 | "name": "Long Arrow Left", 4675 | "id": "long-arrow-left", 4676 | "unicode": "f177", 4677 | "created": 3.2, 4678 | "filter": [ 4679 | "previous", 4680 | "back" 4681 | ], 4682 | "categories": [ 4683 | "Directional Icons" 4684 | ] 4685 | }, 4686 | { 4687 | "name": "Long Arrow Right", 4688 | "id": "long-arrow-right", 4689 | "unicode": "f178", 4690 | "created": 3.2, 4691 | "categories": [ 4692 | "Directional Icons" 4693 | ] 4694 | }, 4695 | { 4696 | "name": "Apple", 4697 | "id": "apple", 4698 | "unicode": "f179", 4699 | "created": 3.2, 4700 | "filter": [ 4701 | "osx", 4702 | "food" 4703 | ], 4704 | "categories": [ 4705 | "Brand Icons" 4706 | ] 4707 | }, 4708 | { 4709 | "name": "Windows", 4710 | "id": "windows", 4711 | "unicode": "f17a", 4712 | "created": 3.2, 4713 | "filter": [ 4714 | "microsoft" 4715 | ], 4716 | "categories": [ 4717 | "Brand Icons" 4718 | ] 4719 | }, 4720 | { 4721 | "name": "Android", 4722 | "id": "android", 4723 | "unicode": "f17b", 4724 | "created": 3.2, 4725 | "filter": [ 4726 | "robot" 4727 | ], 4728 | "categories": [ 4729 | "Brand Icons" 4730 | ] 4731 | }, 4732 | { 4733 | "name": "Linux", 4734 | "id": "linux", 4735 | "unicode": "f17c", 4736 | "created": 3.2, 4737 | "filter": [ 4738 | "tux" 4739 | ], 4740 | "categories": [ 4741 | "Brand Icons" 4742 | ] 4743 | }, 4744 | { 4745 | "name": "Dribbble", 4746 | "id": "dribbble", 4747 | "unicode": "f17d", 4748 | "created": 3.2, 4749 | "categories": [ 4750 | "Brand Icons" 4751 | ] 4752 | }, 4753 | { 4754 | "name": "Skype", 4755 | "id": "skype", 4756 | "unicode": "f17e", 4757 | "created": 3.2, 4758 | "categories": [ 4759 | "Brand Icons" 4760 | ] 4761 | }, 4762 | { 4763 | "name": "Foursquare", 4764 | "id": "foursquare", 4765 | "unicode": "f180", 4766 | "created": 3.2, 4767 | "categories": [ 4768 | "Brand Icons" 4769 | ] 4770 | }, 4771 | { 4772 | "name": "Trello", 4773 | "id": "trello", 4774 | "unicode": "f181", 4775 | "created": 3.2, 4776 | "categories": [ 4777 | "Brand Icons" 4778 | ] 4779 | }, 4780 | { 4781 | "name": "Female", 4782 | "id": "female", 4783 | "unicode": "f182", 4784 | "created": 3.2, 4785 | "filter": [ 4786 | "woman", 4787 | "user", 4788 | "person", 4789 | "profile" 4790 | ], 4791 | "categories": [ 4792 | "Web Application Icons" 4793 | ] 4794 | }, 4795 | { 4796 | "name": "Male", 4797 | "id": "male", 4798 | "unicode": "f183", 4799 | "created": 3.2, 4800 | "filter": [ 4801 | "man", 4802 | "user", 4803 | "person", 4804 | "profile" 4805 | ], 4806 | "categories": [ 4807 | "Web Application Icons" 4808 | ] 4809 | }, 4810 | { 4811 | "name": "Gratipay (Gittip)", 4812 | "id": "gratipay", 4813 | "unicode": "f184", 4814 | "created": 3.2, 4815 | "aliases": [ 4816 | "gittip" 4817 | ], 4818 | "filter": [ 4819 | "heart", 4820 | "like", 4821 | "favorite", 4822 | "love" 4823 | ], 4824 | "categories": [ 4825 | "Brand Icons" 4826 | ] 4827 | }, 4828 | { 4829 | "name": "Sun Outlined", 4830 | "id": "sun-o", 4831 | "unicode": "f185", 4832 | "created": 3.2, 4833 | "filter": [ 4834 | "weather", 4835 | "contrast", 4836 | "lighter", 4837 | "brighten", 4838 | "day" 4839 | ], 4840 | "categories": [ 4841 | "Web Application Icons" 4842 | ] 4843 | }, 4844 | { 4845 | "name": "Moon Outlined", 4846 | "id": "moon-o", 4847 | "unicode": "f186", 4848 | "created": 3.2, 4849 | "filter": [ 4850 | "night", 4851 | "darker", 4852 | "contrast" 4853 | ], 4854 | "categories": [ 4855 | "Web Application Icons" 4856 | ] 4857 | }, 4858 | { 4859 | "name": "Archive", 4860 | "id": "archive", 4861 | "unicode": "f187", 4862 | "created": 3.2, 4863 | "filter": [ 4864 | "box", 4865 | "storage" 4866 | ], 4867 | "categories": [ 4868 | "Web Application Icons" 4869 | ] 4870 | }, 4871 | { 4872 | "name": "Bug", 4873 | "id": "bug", 4874 | "unicode": "f188", 4875 | "created": 3.2, 4876 | "filter": [ 4877 | "report", 4878 | "insect" 4879 | ], 4880 | "categories": [ 4881 | "Web Application Icons" 4882 | ] 4883 | }, 4884 | { 4885 | "name": "VK", 4886 | "id": "vk", 4887 | "unicode": "f189", 4888 | "created": 3.2, 4889 | "categories": [ 4890 | "Brand Icons" 4891 | ] 4892 | }, 4893 | { 4894 | "name": "Weibo", 4895 | "id": "weibo", 4896 | "unicode": "f18a", 4897 | "created": 3.2, 4898 | "categories": [ 4899 | "Brand Icons" 4900 | ] 4901 | }, 4902 | { 4903 | "name": "Renren", 4904 | "id": "renren", 4905 | "unicode": "f18b", 4906 | "created": 3.2, 4907 | "categories": [ 4908 | "Brand Icons" 4909 | ] 4910 | }, 4911 | { 4912 | "name": "Pagelines", 4913 | "id": "pagelines", 4914 | "unicode": "f18c", 4915 | "created": 4, 4916 | "filter": [ 4917 | "leaf", 4918 | "leaves", 4919 | "tree", 4920 | "plant", 4921 | "eco", 4922 | "nature" 4923 | ], 4924 | "categories": [ 4925 | "Brand Icons" 4926 | ] 4927 | }, 4928 | { 4929 | "name": "Stack Exchange", 4930 | "id": "stack-exchange", 4931 | "unicode": "f18d", 4932 | "created": 4, 4933 | "categories": [ 4934 | "Brand Icons" 4935 | ] 4936 | }, 4937 | { 4938 | "name": "Arrow Circle Outlined Right", 4939 | "id": "arrow-circle-o-right", 4940 | "unicode": "f18e", 4941 | "created": 4, 4942 | "filter": [ 4943 | "next", 4944 | "forward" 4945 | ], 4946 | "categories": [ 4947 | "Directional Icons" 4948 | ] 4949 | }, 4950 | { 4951 | "name": "Arrow Circle Outlined Left", 4952 | "id": "arrow-circle-o-left", 4953 | "unicode": "f190", 4954 | "created": 4, 4955 | "filter": [ 4956 | "previous", 4957 | "back" 4958 | ], 4959 | "categories": [ 4960 | "Directional Icons" 4961 | ] 4962 | }, 4963 | { 4964 | "name": "Caret Square Outlined Left", 4965 | "id": "caret-square-o-left", 4966 | "unicode": "f191", 4967 | "created": 4, 4968 | "filter": [ 4969 | "previous", 4970 | "back" 4971 | ], 4972 | "aliases": [ 4973 | "toggle-left" 4974 | ], 4975 | "categories": [ 4976 | "Web Application Icons", 4977 | "Directional Icons" 4978 | ] 4979 | }, 4980 | { 4981 | "name": "Dot Circle Outlined", 4982 | "id": "dot-circle-o", 4983 | "unicode": "f192", 4984 | "created": 4, 4985 | "filter": [ 4986 | "target", 4987 | "bullseye", 4988 | "notification" 4989 | ], 4990 | "categories": [ 4991 | "Web Application Icons", 4992 | "Form Control Icons" 4993 | ] 4994 | }, 4995 | { 4996 | "name": "Wheelchair", 4997 | "id": "wheelchair", 4998 | "unicode": "f193", 4999 | "created": 4, 5000 | "filter": [ 5001 | "handicap", 5002 | "person", 5003 | "accessibility", 5004 | "accessibile" 5005 | ], 5006 | "categories": [ 5007 | "Web Application Icons", 5008 | "Medical Icons", 5009 | "Transportation Icons", 5010 | "Accessibility Icons" 5011 | ] 5012 | }, 5013 | { 5014 | "name": "Vimeo Square", 5015 | "id": "vimeo-square", 5016 | "unicode": "f194", 5017 | "created": 4, 5018 | "categories": [ 5019 | "Brand Icons" 5020 | ] 5021 | }, 5022 | { 5023 | "name": "Turkish Lira (TRY)", 5024 | "id": "try", 5025 | "unicode": "f195", 5026 | "created": 4, 5027 | "aliases": [ 5028 | "turkish-lira" 5029 | ], 5030 | "categories": [ 5031 | "Currency Icons" 5032 | ] 5033 | }, 5034 | { 5035 | "name": "Plus Square Outlined", 5036 | "id": "plus-square-o", 5037 | "unicode": "f196", 5038 | "created": 4, 5039 | "filter": [ 5040 | "add", 5041 | "new", 5042 | "create", 5043 | "expand" 5044 | ], 5045 | "categories": [ 5046 | "Web Application Icons", 5047 | "Form Control Icons" 5048 | ] 5049 | }, 5050 | { 5051 | "name": "Space Shuttle", 5052 | "id": "space-shuttle", 5053 | "unicode": "f197", 5054 | "created": 4.1, 5055 | "filter": null, 5056 | "categories": [ 5057 | "Web Application Icons", 5058 | "Transportation Icons" 5059 | ] 5060 | }, 5061 | { 5062 | "name": "Slack Logo", 5063 | "id": "slack", 5064 | "unicode": "f198", 5065 | "created": 4.1, 5066 | "filter": [ 5067 | "hashtag", 5068 | "anchor", 5069 | "hash" 5070 | ], 5071 | "categories": [ 5072 | "Brand Icons" 5073 | ] 5074 | }, 5075 | { 5076 | "name": "Envelope Square", 5077 | "id": "envelope-square", 5078 | "unicode": "f199", 5079 | "created": 4.1, 5080 | "categories": [ 5081 | "Web Application Icons" 5082 | ] 5083 | }, 5084 | { 5085 | "name": "WordPress Logo", 5086 | "id": "wordpress", 5087 | "unicode": "f19a", 5088 | "created": 4.1, 5089 | "categories": [ 5090 | "Brand Icons" 5091 | ] 5092 | }, 5093 | { 5094 | "name": "OpenID", 5095 | "id": "openid", 5096 | "unicode": "f19b", 5097 | "created": 4.1, 5098 | "categories": [ 5099 | "Brand Icons" 5100 | ] 5101 | }, 5102 | { 5103 | "name": "University", 5104 | "id": "university", 5105 | "unicode": "f19c", 5106 | "created": 4.1, 5107 | "aliases": [ 5108 | "institution", 5109 | "bank" 5110 | ], 5111 | "categories": [ 5112 | "Web Application Icons" 5113 | ] 5114 | }, 5115 | { 5116 | "name": "Graduation Cap", 5117 | "id": "graduation-cap", 5118 | "unicode": "f19d", 5119 | "created": 4.1, 5120 | "aliases": [ 5121 | "mortar-board" 5122 | ], 5123 | "filter": [ 5124 | "learning", 5125 | "school", 5126 | "student" 5127 | ], 5128 | "categories": [ 5129 | "Web Application Icons" 5130 | ] 5131 | }, 5132 | { 5133 | "name": "Yahoo Logo", 5134 | "id": "yahoo", 5135 | "unicode": "f19e", 5136 | "created": 4.1, 5137 | "categories": [ 5138 | "Brand Icons" 5139 | ] 5140 | }, 5141 | { 5142 | "name": "Google Logo", 5143 | "id": "google", 5144 | "unicode": "f1a0", 5145 | "created": 4.1, 5146 | "categories": [ 5147 | "Brand Icons" 5148 | ] 5149 | }, 5150 | { 5151 | "name": "reddit Logo", 5152 | "id": "reddit", 5153 | "unicode": "f1a1", 5154 | "created": 4.1, 5155 | "categories": [ 5156 | "Brand Icons" 5157 | ] 5158 | }, 5159 | { 5160 | "name": "reddit Square", 5161 | "id": "reddit-square", 5162 | "unicode": "f1a2", 5163 | "created": 4.1, 5164 | "categories": [ 5165 | "Brand Icons" 5166 | ] 5167 | }, 5168 | { 5169 | "name": "StumbleUpon Circle", 5170 | "id": "stumbleupon-circle", 5171 | "unicode": "f1a3", 5172 | "created": 4.1, 5173 | "categories": [ 5174 | "Brand Icons" 5175 | ] 5176 | }, 5177 | { 5178 | "name": "StumbleUpon Logo", 5179 | "id": "stumbleupon", 5180 | "unicode": "f1a4", 5181 | "created": 4.1, 5182 | "categories": [ 5183 | "Brand Icons" 5184 | ] 5185 | }, 5186 | { 5187 | "name": "Delicious Logo", 5188 | "id": "delicious", 5189 | "unicode": "f1a5", 5190 | "created": 4.1, 5191 | "categories": [ 5192 | "Brand Icons" 5193 | ] 5194 | }, 5195 | { 5196 | "name": "Digg Logo", 5197 | "id": "digg", 5198 | "unicode": "f1a6", 5199 | "created": 4.1, 5200 | "categories": [ 5201 | "Brand Icons" 5202 | ] 5203 | }, 5204 | { 5205 | "name": "Pied Piper PP Logo (Old)", 5206 | "id": "pied-piper-pp", 5207 | "unicode": "f1a7", 5208 | "created": 4.1, 5209 | "categories": [ 5210 | "Brand Icons" 5211 | ] 5212 | }, 5213 | { 5214 | "name": "Pied Piper Alternate Logo", 5215 | "id": "pied-piper-alt", 5216 | "unicode": "f1a8", 5217 | "created": 4.1, 5218 | "categories": [ 5219 | "Brand Icons" 5220 | ] 5221 | }, 5222 | { 5223 | "name": "Drupal Logo", 5224 | "id": "drupal", 5225 | "unicode": "f1a9", 5226 | "created": 4.1, 5227 | "categories": [ 5228 | "Brand Icons" 5229 | ] 5230 | }, 5231 | { 5232 | "name": "Joomla Logo", 5233 | "id": "joomla", 5234 | "unicode": "f1aa", 5235 | "created": 4.1, 5236 | "categories": [ 5237 | "Brand Icons" 5238 | ] 5239 | }, 5240 | { 5241 | "name": "Language", 5242 | "id": "language", 5243 | "unicode": "f1ab", 5244 | "created": 4.1, 5245 | "categories": [ 5246 | "Web Application Icons" 5247 | ] 5248 | }, 5249 | { 5250 | "name": "Fax", 5251 | "id": "fax", 5252 | "unicode": "f1ac", 5253 | "created": 4.1, 5254 | "categories": [ 5255 | "Web Application Icons" 5256 | ] 5257 | }, 5258 | { 5259 | "name": "Building", 5260 | "id": "building", 5261 | "unicode": "f1ad", 5262 | "created": 4.1, 5263 | "filter": [ 5264 | "work", 5265 | "business", 5266 | "apartment", 5267 | "office", 5268 | "company" 5269 | ], 5270 | "categories": [ 5271 | "Web Application Icons" 5272 | ] 5273 | }, 5274 | { 5275 | "name": "Child", 5276 | "id": "child", 5277 | "unicode": "f1ae", 5278 | "created": 4.1, 5279 | "categories": [ 5280 | "Web Application Icons" 5281 | ] 5282 | }, 5283 | { 5284 | "name": "Paw", 5285 | "id": "paw", 5286 | "unicode": "f1b0", 5287 | "created": 4.1, 5288 | "filter": [ 5289 | "pet" 5290 | ], 5291 | "categories": [ 5292 | "Web Application Icons" 5293 | ] 5294 | }, 5295 | { 5296 | "name": "spoon", 5297 | "id": "spoon", 5298 | "unicode": "f1b1", 5299 | "created": 4.1, 5300 | "categories": [ 5301 | "Web Application Icons" 5302 | ] 5303 | }, 5304 | { 5305 | "name": "Cube", 5306 | "id": "cube", 5307 | "unicode": "f1b2", 5308 | "created": 4.1, 5309 | "categories": [ 5310 | "Web Application Icons" 5311 | ] 5312 | }, 5313 | { 5314 | "name": "Cubes", 5315 | "id": "cubes", 5316 | "unicode": "f1b3", 5317 | "created": 4.1, 5318 | "categories": [ 5319 | "Web Application Icons" 5320 | ] 5321 | }, 5322 | { 5323 | "name": "Behance", 5324 | "id": "behance", 5325 | "unicode": "f1b4", 5326 | "created": 4.1, 5327 | "categories": [ 5328 | "Brand Icons" 5329 | ] 5330 | }, 5331 | { 5332 | "name": "Behance Square", 5333 | "id": "behance-square", 5334 | "unicode": "f1b5", 5335 | "created": 4.1, 5336 | "categories": [ 5337 | "Brand Icons" 5338 | ] 5339 | }, 5340 | { 5341 | "name": "Steam", 5342 | "id": "steam", 5343 | "unicode": "f1b6", 5344 | "created": 4.1, 5345 | "categories": [ 5346 | "Brand Icons" 5347 | ] 5348 | }, 5349 | { 5350 | "name": "Steam Square", 5351 | "id": "steam-square", 5352 | "unicode": "f1b7", 5353 | "created": 4.1, 5354 | "categories": [ 5355 | "Brand Icons" 5356 | ] 5357 | }, 5358 | { 5359 | "name": "Recycle", 5360 | "id": "recycle", 5361 | "unicode": "f1b8", 5362 | "created": 4.1, 5363 | "categories": [ 5364 | "Web Application Icons" 5365 | ] 5366 | }, 5367 | { 5368 | "name": "Car", 5369 | "id": "car", 5370 | "unicode": "f1b9", 5371 | "created": 4.1, 5372 | "aliases": [ 5373 | "automobile" 5374 | ], 5375 | "filter": [ 5376 | "vehicle" 5377 | ], 5378 | "categories": [ 5379 | "Web Application Icons", 5380 | "Transportation Icons" 5381 | ] 5382 | }, 5383 | { 5384 | "name": "Taxi", 5385 | "id": "taxi", 5386 | "unicode": "f1ba", 5387 | "created": 4.1, 5388 | "aliases": [ 5389 | "cab" 5390 | ], 5391 | "filter": [ 5392 | "vehicle" 5393 | ], 5394 | "categories": [ 5395 | "Web Application Icons", 5396 | "Transportation Icons" 5397 | ] 5398 | }, 5399 | { 5400 | "name": "Tree", 5401 | "id": "tree", 5402 | "unicode": "f1bb", 5403 | "created": 4.1, 5404 | "categories": [ 5405 | "Web Application Icons" 5406 | ] 5407 | }, 5408 | { 5409 | "name": "Spotify", 5410 | "id": "spotify", 5411 | "unicode": "f1bc", 5412 | "created": 4.1, 5413 | "categories": [ 5414 | "Brand Icons" 5415 | ] 5416 | }, 5417 | { 5418 | "name": "deviantART", 5419 | "id": "deviantart", 5420 | "unicode": "f1bd", 5421 | "created": 4.1, 5422 | "categories": [ 5423 | "Brand Icons" 5424 | ] 5425 | }, 5426 | { 5427 | "name": "SoundCloud", 5428 | "id": "soundcloud", 5429 | "unicode": "f1be", 5430 | "created": 4.1, 5431 | "categories": [ 5432 | "Brand Icons" 5433 | ] 5434 | }, 5435 | { 5436 | "name": "Database", 5437 | "id": "database", 5438 | "unicode": "f1c0", 5439 | "created": 4.1, 5440 | "categories": [ 5441 | "Web Application Icons" 5442 | ] 5443 | }, 5444 | { 5445 | "name": "PDF File Outlined", 5446 | "id": "file-pdf-o", 5447 | "unicode": "f1c1", 5448 | "created": 4.1, 5449 | "categories": [ 5450 | "Web Application Icons", 5451 | "File Type Icons" 5452 | ] 5453 | }, 5454 | { 5455 | "name": "Word File Outlined", 5456 | "id": "file-word-o", 5457 | "unicode": "f1c2", 5458 | "created": 4.1, 5459 | "categories": [ 5460 | "Web Application Icons", 5461 | "File Type Icons" 5462 | ] 5463 | }, 5464 | { 5465 | "name": "Excel File Outlined", 5466 | "id": "file-excel-o", 5467 | "unicode": "f1c3", 5468 | "created": 4.1, 5469 | "categories": [ 5470 | "Web Application Icons", 5471 | "File Type Icons" 5472 | ] 5473 | }, 5474 | { 5475 | "name": "Powerpoint File Outlined", 5476 | "id": "file-powerpoint-o", 5477 | "unicode": "f1c4", 5478 | "created": 4.1, 5479 | "categories": [ 5480 | "Web Application Icons", 5481 | "File Type Icons" 5482 | ] 5483 | }, 5484 | { 5485 | "name": "Image File Outlined", 5486 | "id": "file-image-o", 5487 | "unicode": "f1c5", 5488 | "created": 4.1, 5489 | "aliases": [ 5490 | "file-photo-o", 5491 | "file-picture-o" 5492 | ], 5493 | "categories": [ 5494 | "Web Application Icons", 5495 | "File Type Icons" 5496 | ] 5497 | }, 5498 | { 5499 | "name": "Archive File Outlined", 5500 | "id": "file-archive-o", 5501 | "unicode": "f1c6", 5502 | "created": 4.1, 5503 | "aliases": [ 5504 | "file-zip-o" 5505 | ], 5506 | "categories": [ 5507 | "Web Application Icons", 5508 | "File Type Icons" 5509 | ] 5510 | }, 5511 | { 5512 | "name": "Audio File Outlined", 5513 | "id": "file-audio-o", 5514 | "unicode": "f1c7", 5515 | "created": 4.1, 5516 | "aliases": [ 5517 | "file-sound-o" 5518 | ], 5519 | "categories": [ 5520 | "Web Application Icons", 5521 | "File Type Icons" 5522 | ] 5523 | }, 5524 | { 5525 | "name": "Video File Outlined", 5526 | "id": "file-video-o", 5527 | "unicode": "f1c8", 5528 | "created": 4.1, 5529 | "aliases": [ 5530 | "file-movie-o" 5531 | ], 5532 | "categories": [ 5533 | "Web Application Icons", 5534 | "File Type Icons" 5535 | ] 5536 | }, 5537 | { 5538 | "name": "Code File Outlined", 5539 | "id": "file-code-o", 5540 | "unicode": "f1c9", 5541 | "created": 4.1, 5542 | "categories": [ 5543 | "Web Application Icons", 5544 | "File Type Icons" 5545 | ] 5546 | }, 5547 | { 5548 | "name": "Vine", 5549 | "id": "vine", 5550 | "unicode": "f1ca", 5551 | "created": 4.1, 5552 | "categories": [ 5553 | "Brand Icons" 5554 | ] 5555 | }, 5556 | { 5557 | "name": "Codepen", 5558 | "id": "codepen", 5559 | "unicode": "f1cb", 5560 | "created": 4.1, 5561 | "categories": [ 5562 | "Brand Icons" 5563 | ] 5564 | }, 5565 | { 5566 | "name": "jsFiddle", 5567 | "id": "jsfiddle", 5568 | "unicode": "f1cc", 5569 | "created": 4.1, 5570 | "categories": [ 5571 | "Brand Icons" 5572 | ] 5573 | }, 5574 | { 5575 | "name": "Life Ring", 5576 | "id": "life-ring", 5577 | "unicode": "f1cd", 5578 | "created": 4.1, 5579 | "aliases": [ 5580 | { 5581 | "life-bouy": "Deprecated - remove in 5.0.0" 5582 | }, 5583 | "life-buoy", 5584 | "life-saver", 5585 | "support" 5586 | ], 5587 | "categories": [ 5588 | "Web Application Icons" 5589 | ] 5590 | }, 5591 | { 5592 | "name": "Circle Outlined Notched", 5593 | "id": "circle-o-notch", 5594 | "unicode": "f1ce", 5595 | "created": 4.1, 5596 | "categories": [ 5597 | "Web Application Icons", 5598 | "Spinner Icons" 5599 | ] 5600 | }, 5601 | { 5602 | "name": "Rebel Alliance", 5603 | "id": "rebel", 5604 | "unicode": "f1d0", 5605 | "created": 4.1, 5606 | "aliases": [ 5607 | "ra", 5608 | "resistance" 5609 | ], 5610 | "categories": [ 5611 | "Brand Icons" 5612 | ] 5613 | }, 5614 | { 5615 | "name": "Galactic Empire", 5616 | "id": "empire", 5617 | "unicode": "f1d1", 5618 | "created": 4.1, 5619 | "aliases": [ 5620 | "ge" 5621 | ], 5622 | "categories": [ 5623 | "Brand Icons" 5624 | ] 5625 | }, 5626 | { 5627 | "name": "Git Square", 5628 | "id": "git-square", 5629 | "unicode": "f1d2", 5630 | "created": 4.1, 5631 | "categories": [ 5632 | "Brand Icons" 5633 | ] 5634 | }, 5635 | { 5636 | "name": "Git", 5637 | "id": "git", 5638 | "unicode": "f1d3", 5639 | "created": 4.1, 5640 | "categories": [ 5641 | "Brand Icons" 5642 | ] 5643 | }, 5644 | { 5645 | "name": "Hacker News", 5646 | "id": "hacker-news", 5647 | "unicode": "f1d4", 5648 | "created": 4.1, 5649 | "aliases": [ 5650 | "y-combinator-square", 5651 | "yc-square" 5652 | ], 5653 | "categories": [ 5654 | "Brand Icons" 5655 | ] 5656 | }, 5657 | { 5658 | "name": "Tencent Weibo", 5659 | "id": "tencent-weibo", 5660 | "unicode": "f1d5", 5661 | "created": 4.1, 5662 | "categories": [ 5663 | "Brand Icons" 5664 | ] 5665 | }, 5666 | { 5667 | "name": "QQ", 5668 | "id": "qq", 5669 | "unicode": "f1d6", 5670 | "created": 4.1, 5671 | "categories": [ 5672 | "Brand Icons" 5673 | ] 5674 | }, 5675 | { 5676 | "name": "Weixin (WeChat)", 5677 | "id": "weixin", 5678 | "unicode": "f1d7", 5679 | "created": 4.1, 5680 | "aliases": [ 5681 | "wechat" 5682 | ], 5683 | "categories": [ 5684 | "Brand Icons" 5685 | ] 5686 | }, 5687 | { 5688 | "name": "Paper Plane", 5689 | "id": "paper-plane", 5690 | "unicode": "f1d8", 5691 | "created": 4.1, 5692 | "aliases": [ 5693 | "send" 5694 | ], 5695 | "filter": null, 5696 | "categories": [ 5697 | "Web Application Icons" 5698 | ] 5699 | }, 5700 | { 5701 | "name": "Paper Plane Outlined", 5702 | "id": "paper-plane-o", 5703 | "unicode": "f1d9", 5704 | "created": 4.1, 5705 | "aliases": [ 5706 | "send-o" 5707 | ], 5708 | "categories": [ 5709 | "Web Application Icons" 5710 | ] 5711 | }, 5712 | { 5713 | "name": "History", 5714 | "id": "history", 5715 | "unicode": "f1da", 5716 | "created": 4.1, 5717 | "categories": [ 5718 | "Web Application Icons" 5719 | ] 5720 | }, 5721 | { 5722 | "name": "Circle Outlined Thin", 5723 | "id": "circle-thin", 5724 | "unicode": "f1db", 5725 | "created": 4.1, 5726 | "categories": [ 5727 | "Web Application Icons" 5728 | ] 5729 | }, 5730 | { 5731 | "name": "header", 5732 | "id": "header", 5733 | "unicode": "f1dc", 5734 | "created": 4.1, 5735 | "filter": [ 5736 | "heading" 5737 | ], 5738 | "categories": [ 5739 | "Text Editor Icons" 5740 | ] 5741 | }, 5742 | { 5743 | "name": "paragraph", 5744 | "id": "paragraph", 5745 | "unicode": "f1dd", 5746 | "created": 4.1, 5747 | "categories": [ 5748 | "Text Editor Icons" 5749 | ] 5750 | }, 5751 | { 5752 | "name": "Sliders", 5753 | "id": "sliders", 5754 | "unicode": "f1de", 5755 | "created": 4.1, 5756 | "filter": [ 5757 | "settings" 5758 | ], 5759 | "categories": [ 5760 | "Web Application Icons" 5761 | ] 5762 | }, 5763 | { 5764 | "name": "Share Alt", 5765 | "id": "share-alt", 5766 | "unicode": "f1e0", 5767 | "created": 4.1, 5768 | "categories": [ 5769 | "Web Application Icons", 5770 | "Brand Icons" 5771 | ] 5772 | }, 5773 | { 5774 | "name": "Share Alt Square", 5775 | "id": "share-alt-square", 5776 | "unicode": "f1e1", 5777 | "created": 4.1, 5778 | "categories": [ 5779 | "Web Application Icons", 5780 | "Brand Icons" 5781 | ] 5782 | }, 5783 | { 5784 | "name": "Bomb", 5785 | "id": "bomb", 5786 | "unicode": "f1e2", 5787 | "created": 4.1, 5788 | "categories": [ 5789 | "Web Application Icons" 5790 | ] 5791 | }, 5792 | { 5793 | "name": "Futbol Outlined", 5794 | "id": "futbol-o", 5795 | "unicode": "f1e3", 5796 | "created": 4.2, 5797 | "aliases": [ 5798 | "soccer-ball-o" 5799 | ], 5800 | "categories": [ 5801 | "Web Application Icons" 5802 | ] 5803 | }, 5804 | { 5805 | "name": "TTY", 5806 | "id": "tty", 5807 | "unicode": "f1e4", 5808 | "created": 4.2, 5809 | "categories": [ 5810 | "Web Application Icons", 5811 | "Accessibility Icons" 5812 | ] 5813 | }, 5814 | { 5815 | "name": "Binoculars", 5816 | "id": "binoculars", 5817 | "unicode": "f1e5", 5818 | "created": 4.2, 5819 | "categories": [ 5820 | "Web Application Icons" 5821 | ] 5822 | }, 5823 | { 5824 | "name": "Plug", 5825 | "id": "plug", 5826 | "unicode": "f1e6", 5827 | "created": 4.2, 5828 | "filter": [ 5829 | "power", 5830 | "connect" 5831 | ], 5832 | "categories": [ 5833 | "Web Application Icons" 5834 | ] 5835 | }, 5836 | { 5837 | "name": "Slideshare", 5838 | "id": "slideshare", 5839 | "unicode": "f1e7", 5840 | "created": 4.2, 5841 | "categories": [ 5842 | "Brand Icons" 5843 | ] 5844 | }, 5845 | { 5846 | "name": "Twitch", 5847 | "id": "twitch", 5848 | "unicode": "f1e8", 5849 | "created": 4.2, 5850 | "categories": [ 5851 | "Brand Icons" 5852 | ] 5853 | }, 5854 | { 5855 | "name": "Yelp", 5856 | "id": "yelp", 5857 | "unicode": "f1e9", 5858 | "created": 4.2, 5859 | "categories": [ 5860 | "Brand Icons" 5861 | ] 5862 | }, 5863 | { 5864 | "name": "Newspaper Outlined", 5865 | "id": "newspaper-o", 5866 | "unicode": "f1ea", 5867 | "created": 4.2, 5868 | "filter": [ 5869 | "press" 5870 | ], 5871 | "categories": [ 5872 | "Web Application Icons" 5873 | ] 5874 | }, 5875 | { 5876 | "name": "WiFi", 5877 | "id": "wifi", 5878 | "unicode": "f1eb", 5879 | "created": 4.2, 5880 | "categories": [ 5881 | "Web Application Icons" 5882 | ] 5883 | }, 5884 | { 5885 | "name": "Calculator", 5886 | "id": "calculator", 5887 | "unicode": "f1ec", 5888 | "created": 4.2, 5889 | "categories": [ 5890 | "Web Application Icons" 5891 | ] 5892 | }, 5893 | { 5894 | "name": "Paypal", 5895 | "id": "paypal", 5896 | "unicode": "f1ed", 5897 | "created": 4.2, 5898 | "categories": [ 5899 | "Brand Icons", 5900 | "Payment Icons" 5901 | ] 5902 | }, 5903 | { 5904 | "name": "Google Wallet", 5905 | "id": "google-wallet", 5906 | "unicode": "f1ee", 5907 | "created": 4.2, 5908 | "categories": [ 5909 | "Brand Icons", 5910 | "Payment Icons" 5911 | ] 5912 | }, 5913 | { 5914 | "name": "Visa Credit Card", 5915 | "id": "cc-visa", 5916 | "unicode": "f1f0", 5917 | "created": 4.2, 5918 | "categories": [ 5919 | "Brand Icons", 5920 | "Payment Icons" 5921 | ] 5922 | }, 5923 | { 5924 | "name": "MasterCard Credit Card", 5925 | "id": "cc-mastercard", 5926 | "unicode": "f1f1", 5927 | "created": 4.2, 5928 | "categories": [ 5929 | "Brand Icons", 5930 | "Payment Icons" 5931 | ] 5932 | }, 5933 | { 5934 | "name": "Discover Credit Card", 5935 | "id": "cc-discover", 5936 | "unicode": "f1f2", 5937 | "created": 4.2, 5938 | "categories": [ 5939 | "Brand Icons", 5940 | "Payment Icons" 5941 | ] 5942 | }, 5943 | { 5944 | "name": "American Express Credit Card", 5945 | "id": "cc-amex", 5946 | "unicode": "f1f3", 5947 | "created": 4.2, 5948 | "filter": [ 5949 | "amex" 5950 | ], 5951 | "categories": [ 5952 | "Brand Icons", 5953 | "Payment Icons" 5954 | ] 5955 | }, 5956 | { 5957 | "name": "Paypal Credit Card", 5958 | "id": "cc-paypal", 5959 | "unicode": "f1f4", 5960 | "created": 4.2, 5961 | "categories": [ 5962 | "Brand Icons", 5963 | "Payment Icons" 5964 | ] 5965 | }, 5966 | { 5967 | "name": "Stripe Credit Card", 5968 | "id": "cc-stripe", 5969 | "unicode": "f1f5", 5970 | "created": 4.2, 5971 | "categories": [ 5972 | "Brand Icons", 5973 | "Payment Icons" 5974 | ] 5975 | }, 5976 | { 5977 | "name": "Bell Slash", 5978 | "id": "bell-slash", 5979 | "unicode": "f1f6", 5980 | "created": 4.2, 5981 | "categories": [ 5982 | "Web Application Icons" 5983 | ] 5984 | }, 5985 | { 5986 | "name": "Bell Slash Outlined", 5987 | "id": "bell-slash-o", 5988 | "unicode": "f1f7", 5989 | "created": 4.2, 5990 | "categories": [ 5991 | "Web Application Icons" 5992 | ] 5993 | }, 5994 | { 5995 | "name": "Trash", 5996 | "id": "trash", 5997 | "unicode": "f1f8", 5998 | "created": 4.2, 5999 | "filter": [ 6000 | "garbage", 6001 | "delete", 6002 | "remove", 6003 | "hide" 6004 | ], 6005 | "categories": [ 6006 | "Web Application Icons" 6007 | ] 6008 | }, 6009 | { 6010 | "name": "Copyright", 6011 | "id": "copyright", 6012 | "unicode": "f1f9", 6013 | "created": 4.2, 6014 | "categories": [ 6015 | "Web Application Icons" 6016 | ] 6017 | }, 6018 | { 6019 | "name": "At", 6020 | "id": "at", 6021 | "unicode": "f1fa", 6022 | "created": 4.2, 6023 | "categories": [ 6024 | "Web Application Icons" 6025 | ] 6026 | }, 6027 | { 6028 | "name": "Eyedropper", 6029 | "id": "eyedropper", 6030 | "unicode": "f1fb", 6031 | "created": 4.2, 6032 | "categories": [ 6033 | "Web Application Icons" 6034 | ] 6035 | }, 6036 | { 6037 | "name": "Paint Brush", 6038 | "id": "paint-brush", 6039 | "unicode": "f1fc", 6040 | "created": 4.2, 6041 | "categories": [ 6042 | "Web Application Icons" 6043 | ] 6044 | }, 6045 | { 6046 | "name": "Birthday Cake", 6047 | "id": "birthday-cake", 6048 | "unicode": "f1fd", 6049 | "created": 4.2, 6050 | "categories": [ 6051 | "Web Application Icons" 6052 | ] 6053 | }, 6054 | { 6055 | "name": "Area Chart", 6056 | "id": "area-chart", 6057 | "unicode": "f1fe", 6058 | "created": 4.2, 6059 | "categories": [ 6060 | "Web Application Icons", 6061 | "Chart Icons" 6062 | ], 6063 | "filter": [ 6064 | "graph", 6065 | "analytics" 6066 | ] 6067 | }, 6068 | { 6069 | "name": "Pie Chart", 6070 | "id": "pie-chart", 6071 | "unicode": "f200", 6072 | "created": 4.2, 6073 | "categories": [ 6074 | "Web Application Icons", 6075 | "Chart Icons" 6076 | ], 6077 | "filter": [ 6078 | "graph", 6079 | "analytics" 6080 | ] 6081 | }, 6082 | { 6083 | "name": "Line Chart", 6084 | "id": "line-chart", 6085 | "unicode": "f201", 6086 | "created": 4.2, 6087 | "categories": [ 6088 | "Web Application Icons", 6089 | "Chart Icons" 6090 | ], 6091 | "filter": [ 6092 | "graph", 6093 | "analytics" 6094 | ] 6095 | }, 6096 | { 6097 | "name": "last.fm", 6098 | "id": "lastfm", 6099 | "unicode": "f202", 6100 | "created": 4.2, 6101 | "categories": [ 6102 | "Brand Icons" 6103 | ] 6104 | }, 6105 | { 6106 | "name": "last.fm Square", 6107 | "id": "lastfm-square", 6108 | "unicode": "f203", 6109 | "created": 4.2, 6110 | "categories": [ 6111 | "Brand Icons" 6112 | ] 6113 | }, 6114 | { 6115 | "name": "Toggle Off", 6116 | "id": "toggle-off", 6117 | "unicode": "f204", 6118 | "created": 4.2, 6119 | "categories": [ 6120 | "Web Application Icons" 6121 | ] 6122 | }, 6123 | { 6124 | "name": "Toggle On", 6125 | "id": "toggle-on", 6126 | "unicode": "f205", 6127 | "created": 4.2, 6128 | "categories": [ 6129 | "Web Application Icons" 6130 | ] 6131 | }, 6132 | { 6133 | "name": "Bicycle", 6134 | "id": "bicycle", 6135 | "unicode": "f206", 6136 | "created": 4.2, 6137 | "filter": [ 6138 | "vehicle", 6139 | "bike" 6140 | ], 6141 | "categories": [ 6142 | "Web Application Icons", 6143 | "Transportation Icons" 6144 | ] 6145 | }, 6146 | { 6147 | "name": "Bus", 6148 | "id": "bus", 6149 | "unicode": "f207", 6150 | "created": 4.2, 6151 | "filter": [ 6152 | "vehicle" 6153 | ], 6154 | "categories": [ 6155 | "Web Application Icons", 6156 | "Transportation Icons" 6157 | ] 6158 | }, 6159 | { 6160 | "name": "ioxhost", 6161 | "id": "ioxhost", 6162 | "unicode": "f208", 6163 | "created": 4.2, 6164 | "url": "ioxhost.co.uk", 6165 | "categories": [ 6166 | "Brand Icons" 6167 | ] 6168 | }, 6169 | { 6170 | "name": "AngelList", 6171 | "id": "angellist", 6172 | "unicode": "f209", 6173 | "created": 4.2, 6174 | "categories": [ 6175 | "Brand Icons" 6176 | ] 6177 | }, 6178 | { 6179 | "name": "Closed Captions", 6180 | "id": "cc", 6181 | "unicode": "f20a", 6182 | "created": 4.2, 6183 | "categories": [ 6184 | "Web Application Icons", 6185 | "Accessibility Icons" 6186 | ] 6187 | }, 6188 | { 6189 | "name": "Shekel (ILS)", 6190 | "id": "ils", 6191 | "unicode": "f20b", 6192 | "created": 4.2, 6193 | "aliases": [ 6194 | "shekel", 6195 | "sheqel" 6196 | ], 6197 | "categories": [ 6198 | "Currency Icons" 6199 | ] 6200 | }, 6201 | { 6202 | "name": "meanpath", 6203 | "id": "meanpath", 6204 | "unicode": "f20c", 6205 | "created": 4.2, 6206 | "url": "meanpath.com", 6207 | "categories": [ 6208 | "Brand Icons" 6209 | ] 6210 | }, 6211 | { 6212 | "name": "BuySellAds", 6213 | "id": "buysellads", 6214 | "unicode": "f20d", 6215 | "created": 4.3, 6216 | "url": "buysellads.com", 6217 | "categories": [ 6218 | "Brand Icons" 6219 | ] 6220 | }, 6221 | { 6222 | "name": "Connect Develop", 6223 | "id": "connectdevelop", 6224 | "unicode": "f20e", 6225 | "created": 4.3, 6226 | "url": "connectdevelop.com", 6227 | "categories": [ 6228 | "Brand Icons" 6229 | ] 6230 | }, 6231 | { 6232 | "name": "DashCube", 6233 | "id": "dashcube", 6234 | "unicode": "f210", 6235 | "created": 4.3, 6236 | "url": "dashcube.com", 6237 | "categories": [ 6238 | "Brand Icons" 6239 | ] 6240 | }, 6241 | { 6242 | "name": "Forumbee", 6243 | "id": "forumbee", 6244 | "unicode": "f211", 6245 | "created": 4.3, 6246 | "url": "forumbee.com", 6247 | "categories": [ 6248 | "Brand Icons" 6249 | ] 6250 | }, 6251 | { 6252 | "name": "Leanpub", 6253 | "id": "leanpub", 6254 | "unicode": "f212", 6255 | "created": 4.3, 6256 | "url": "leanpub.com", 6257 | "categories": [ 6258 | "Brand Icons" 6259 | ] 6260 | }, 6261 | { 6262 | "name": "Sellsy", 6263 | "id": "sellsy", 6264 | "unicode": "f213", 6265 | "created": 4.3, 6266 | "url": "sellsy.com", 6267 | "categories": [ 6268 | "Brand Icons" 6269 | ] 6270 | }, 6271 | { 6272 | "name": "Shirts in Bulk", 6273 | "id": "shirtsinbulk", 6274 | "unicode": "f214", 6275 | "created": 4.3, 6276 | "url": "shirtsinbulk.com", 6277 | "categories": [ 6278 | "Brand Icons" 6279 | ] 6280 | }, 6281 | { 6282 | "name": "SimplyBuilt", 6283 | "id": "simplybuilt", 6284 | "unicode": "f215", 6285 | "created": 4.3, 6286 | "url": "simplybuilt.com", 6287 | "categories": [ 6288 | "Brand Icons" 6289 | ] 6290 | }, 6291 | { 6292 | "name": "skyatlas", 6293 | "id": "skyatlas", 6294 | "unicode": "f216", 6295 | "created": 4.3, 6296 | "url": "skyatlas.com", 6297 | "categories": [ 6298 | "Brand Icons" 6299 | ] 6300 | }, 6301 | { 6302 | "name": "Add to Shopping Cart", 6303 | "id": "cart-plus", 6304 | "unicode": "f217", 6305 | "created": 4.3, 6306 | "filter": [ 6307 | "add", 6308 | "shopping" 6309 | ], 6310 | "categories": [ 6311 | "Web Application Icons" 6312 | ] 6313 | }, 6314 | { 6315 | "name": "Shopping Cart Arrow Down", 6316 | "id": "cart-arrow-down", 6317 | "unicode": "f218", 6318 | "created": 4.3, 6319 | "filter": [ 6320 | "shopping" 6321 | ], 6322 | "categories": [ 6323 | "Web Application Icons" 6324 | ] 6325 | }, 6326 | { 6327 | "name": "Diamond", 6328 | "id": "diamond", 6329 | "unicode": "f219", 6330 | "created": 4.3, 6331 | "filter": [ 6332 | "gem", 6333 | "gemstone" 6334 | ], 6335 | "categories": [ 6336 | "Web Application Icons" 6337 | ] 6338 | }, 6339 | { 6340 | "name": "Ship", 6341 | "id": "ship", 6342 | "unicode": "f21a", 6343 | "created": 4.3, 6344 | "filter": [ 6345 | "boat", 6346 | "sea" 6347 | ], 6348 | "categories": [ 6349 | "Web Application Icons", 6350 | "Transportation Icons" 6351 | ] 6352 | }, 6353 | { 6354 | "name": "User Secret", 6355 | "id": "user-secret", 6356 | "unicode": "f21b", 6357 | "created": 4.3, 6358 | "filter": [ 6359 | "whisper", 6360 | "spy", 6361 | "incognito", 6362 | "privacy" 6363 | ], 6364 | "categories": [ 6365 | "Web Application Icons" 6366 | ] 6367 | }, 6368 | { 6369 | "name": "Motorcycle", 6370 | "id": "motorcycle", 6371 | "unicode": "f21c", 6372 | "created": 4.3, 6373 | "filter": [ 6374 | "vehicle", 6375 | "bike" 6376 | ], 6377 | "categories": [ 6378 | "Web Application Icons", 6379 | "Transportation Icons" 6380 | ] 6381 | }, 6382 | { 6383 | "name": "Street View", 6384 | "id": "street-view", 6385 | "unicode": "f21d", 6386 | "created": 4.3, 6387 | "filter": [ 6388 | "map" 6389 | ], 6390 | "categories": [ 6391 | "Web Application Icons" 6392 | ] 6393 | }, 6394 | { 6395 | "name": "Heartbeat", 6396 | "id": "heartbeat", 6397 | "unicode": "f21e", 6398 | "created": 4.3, 6399 | "filter": [ 6400 | "ekg" 6401 | ], 6402 | "categories": [ 6403 | "Web Application Icons", 6404 | "Medical Icons" 6405 | ] 6406 | }, 6407 | { 6408 | "name": "Venus", 6409 | "id": "venus", 6410 | "unicode": "f221", 6411 | "created": 4.3, 6412 | "filter": [ 6413 | "female" 6414 | ], 6415 | "categories": [ 6416 | "Gender Icons" 6417 | ] 6418 | }, 6419 | { 6420 | "name": "Mars", 6421 | "id": "mars", 6422 | "unicode": "f222", 6423 | "created": 4.3, 6424 | "filter": [ 6425 | "male" 6426 | ], 6427 | "categories": [ 6428 | "Gender Icons" 6429 | ] 6430 | }, 6431 | { 6432 | "name": "Mercury", 6433 | "id": "mercury", 6434 | "unicode": "f223", 6435 | "created": 4.3, 6436 | "filter": [ 6437 | "transgender" 6438 | ], 6439 | "categories": [ 6440 | "Gender Icons" 6441 | ] 6442 | }, 6443 | { 6444 | "name": "Transgender", 6445 | "id": "transgender", 6446 | "unicode": "f224", 6447 | "created": 4.3, 6448 | "aliases": [ 6449 | "intersex" 6450 | ], 6451 | "categories": [ 6452 | "Gender Icons" 6453 | ] 6454 | }, 6455 | { 6456 | "name": "Transgender Alt", 6457 | "id": "transgender-alt", 6458 | "unicode": "f225", 6459 | "created": 4.3, 6460 | "categories": [ 6461 | "Gender Icons" 6462 | ] 6463 | }, 6464 | { 6465 | "name": "Venus Double", 6466 | "id": "venus-double", 6467 | "unicode": "f226", 6468 | "created": 4.3, 6469 | "categories": [ 6470 | "Gender Icons" 6471 | ] 6472 | }, 6473 | { 6474 | "name": "Mars Double", 6475 | "id": "mars-double", 6476 | "unicode": "f227", 6477 | "created": 4.3, 6478 | "categories": [ 6479 | "Gender Icons" 6480 | ] 6481 | }, 6482 | { 6483 | "name": "Venus Mars", 6484 | "id": "venus-mars", 6485 | "unicode": "f228", 6486 | "created": 4.3, 6487 | "categories": [ 6488 | "Gender Icons" 6489 | ] 6490 | }, 6491 | { 6492 | "name": "Mars Stroke", 6493 | "id": "mars-stroke", 6494 | "unicode": "f229", 6495 | "created": 4.3, 6496 | "categories": [ 6497 | "Gender Icons" 6498 | ] 6499 | }, 6500 | { 6501 | "name": "Mars Stroke Vertical", 6502 | "id": "mars-stroke-v", 6503 | "unicode": "f22a", 6504 | "created": 4.3, 6505 | "categories": [ 6506 | "Gender Icons" 6507 | ] 6508 | }, 6509 | { 6510 | "name": "Mars Stroke Horizontal", 6511 | "id": "mars-stroke-h", 6512 | "unicode": "f22b", 6513 | "created": 4.3, 6514 | "categories": [ 6515 | "Gender Icons" 6516 | ] 6517 | }, 6518 | { 6519 | "name": "Neuter", 6520 | "id": "neuter", 6521 | "unicode": "f22c", 6522 | "created": 4.3, 6523 | "categories": [ 6524 | "Gender Icons" 6525 | ] 6526 | }, 6527 | { 6528 | "name": "Genderless", 6529 | "id": "genderless", 6530 | "unicode": "f22d", 6531 | "created": 4.4, 6532 | "categories": [ 6533 | "Gender Icons" 6534 | ] 6535 | }, 6536 | { 6537 | "name": "Facebook Official", 6538 | "id": "facebook-official", 6539 | "unicode": "f230", 6540 | "created": 4.3, 6541 | "categories": [ 6542 | "Brand Icons" 6543 | ] 6544 | }, 6545 | { 6546 | "name": "Pinterest P", 6547 | "id": "pinterest-p", 6548 | "unicode": "f231", 6549 | "created": 4.3, 6550 | "categories": [ 6551 | "Brand Icons" 6552 | ] 6553 | }, 6554 | { 6555 | "name": "What's App", 6556 | "id": "whatsapp", 6557 | "unicode": "f232", 6558 | "created": 4.3, 6559 | "categories": [ 6560 | "Brand Icons" 6561 | ] 6562 | }, 6563 | { 6564 | "name": "Server", 6565 | "id": "server", 6566 | "unicode": "f233", 6567 | "created": 4.3, 6568 | "categories": [ 6569 | "Web Application Icons" 6570 | ] 6571 | }, 6572 | { 6573 | "name": "Add User", 6574 | "id": "user-plus", 6575 | "unicode": "f234", 6576 | "created": 4.3, 6577 | "filter": [ 6578 | "sign up", 6579 | "signup" 6580 | ], 6581 | "categories": [ 6582 | "Web Application Icons" 6583 | ] 6584 | }, 6585 | { 6586 | "name": "Remove User", 6587 | "id": "user-times", 6588 | "unicode": "f235", 6589 | "created": 4.3, 6590 | "categories": [ 6591 | "Web Application Icons" 6592 | ] 6593 | }, 6594 | { 6595 | "name": "Bed", 6596 | "id": "bed", 6597 | "unicode": "f236", 6598 | "created": 4.3, 6599 | "filter": [ 6600 | "travel" 6601 | ], 6602 | "aliases": [ 6603 | "hotel" 6604 | ], 6605 | "categories": [ 6606 | "Web Application Icons" 6607 | ] 6608 | }, 6609 | { 6610 | "name": "Viacoin", 6611 | "id": "viacoin", 6612 | "unicode": "f237", 6613 | "created": 4.3, 6614 | "url": "viacoin.org", 6615 | "categories": [ 6616 | "Brand Icons" 6617 | ] 6618 | }, 6619 | { 6620 | "name": "Train", 6621 | "id": "train", 6622 | "unicode": "f238", 6623 | "created": 4.3, 6624 | "categories": [ 6625 | "Transportation Icons" 6626 | ] 6627 | }, 6628 | { 6629 | "name": "Subway", 6630 | "id": "subway", 6631 | "unicode": "f239", 6632 | "created": 4.3, 6633 | "categories": [ 6634 | "Transportation Icons" 6635 | ] 6636 | }, 6637 | { 6638 | "name": "Medium", 6639 | "id": "medium", 6640 | "unicode": "f23a", 6641 | "created": 4.3, 6642 | "categories": [ 6643 | "Brand Icons" 6644 | ] 6645 | }, 6646 | { 6647 | "name": "Y Combinator", 6648 | "id": "y-combinator", 6649 | "unicode": "f23b", 6650 | "created": 4.4, 6651 | "aliases": [ 6652 | "yc" 6653 | ], 6654 | "categories": [ 6655 | "Brand Icons" 6656 | ] 6657 | }, 6658 | { 6659 | "name": "Optin Monster", 6660 | "id": "optin-monster", 6661 | "unicode": "f23c", 6662 | "created": 4.4, 6663 | "url": "optinmonster.com", 6664 | "categories": [ 6665 | "Brand Icons" 6666 | ] 6667 | }, 6668 | { 6669 | "name": "OpenCart", 6670 | "id": "opencart", 6671 | "unicode": "f23d", 6672 | "created": 4.4, 6673 | "url": "opencart.com", 6674 | "categories": [ 6675 | "Brand Icons" 6676 | ] 6677 | }, 6678 | { 6679 | "name": "ExpeditedSSL", 6680 | "id": "expeditedssl", 6681 | "unicode": "f23e", 6682 | "created": 4.4, 6683 | "categories": [ 6684 | "Brand Icons" 6685 | ] 6686 | }, 6687 | { 6688 | "name": "Battery Full", 6689 | "id": "battery-full", 6690 | "unicode": "f240", 6691 | "created": 4.4, 6692 | "aliases": [ 6693 | "battery-4" 6694 | ], 6695 | "filter": [ 6696 | "power" 6697 | ], 6698 | "categories": [ 6699 | "Web Application Icons" 6700 | ] 6701 | }, 6702 | { 6703 | "name": "Battery 3/4 Full", 6704 | "id": "battery-three-quarters", 6705 | "unicode": "f241", 6706 | "created": 4.4, 6707 | "aliases": [ 6708 | "battery-3" 6709 | ], 6710 | "filter": [ 6711 | "power" 6712 | ], 6713 | "categories": [ 6714 | "Web Application Icons" 6715 | ] 6716 | }, 6717 | { 6718 | "name": "Battery 1/2 Full", 6719 | "id": "battery-half", 6720 | "unicode": "f242", 6721 | "created": 4.4, 6722 | "aliases": [ 6723 | "battery-2" 6724 | ], 6725 | "filter": [ 6726 | "power" 6727 | ], 6728 | "categories": [ 6729 | "Web Application Icons" 6730 | ] 6731 | }, 6732 | { 6733 | "name": "Battery 1/4 Full", 6734 | "id": "battery-quarter", 6735 | "unicode": "f243", 6736 | "created": 4.4, 6737 | "aliases": [ 6738 | "battery-1" 6739 | ], 6740 | "filter": [ 6741 | "power" 6742 | ], 6743 | "categories": [ 6744 | "Web Application Icons" 6745 | ] 6746 | }, 6747 | { 6748 | "name": "Battery Empty", 6749 | "id": "battery-empty", 6750 | "unicode": "f244", 6751 | "created": 4.4, 6752 | "aliases": [ 6753 | "battery-0" 6754 | ], 6755 | "filter": [ 6756 | "power" 6757 | ], 6758 | "categories": [ 6759 | "Web Application Icons" 6760 | ] 6761 | }, 6762 | { 6763 | "name": "Mouse Pointer", 6764 | "id": "mouse-pointer", 6765 | "unicode": "f245", 6766 | "created": 4.4, 6767 | "categories": [ 6768 | "Web Application Icons" 6769 | ] 6770 | }, 6771 | { 6772 | "name": "I Beam Cursor", 6773 | "id": "i-cursor", 6774 | "unicode": "f246", 6775 | "created": 4.4, 6776 | "categories": [ 6777 | "Web Application Icons" 6778 | ] 6779 | }, 6780 | { 6781 | "name": "Object Group", 6782 | "id": "object-group", 6783 | "unicode": "f247", 6784 | "created": 4.4, 6785 | "categories": [ 6786 | "Web Application Icons" 6787 | ] 6788 | }, 6789 | { 6790 | "name": "Object Ungroup", 6791 | "id": "object-ungroup", 6792 | "unicode": "f248", 6793 | "created": 4.4, 6794 | "categories": [ 6795 | "Web Application Icons" 6796 | ] 6797 | }, 6798 | { 6799 | "name": "Sticky Note", 6800 | "id": "sticky-note", 6801 | "unicode": "f249", 6802 | "created": 4.4, 6803 | "categories": [ 6804 | "Web Application Icons" 6805 | ] 6806 | }, 6807 | { 6808 | "name": "Sticky Note Outlined", 6809 | "id": "sticky-note-o", 6810 | "unicode": "f24a", 6811 | "created": 4.4, 6812 | "categories": [ 6813 | "Web Application Icons" 6814 | ] 6815 | }, 6816 | { 6817 | "name": "JCB Credit Card", 6818 | "id": "cc-jcb", 6819 | "unicode": "f24b", 6820 | "created": 4.4, 6821 | "categories": [ 6822 | "Brand Icons", 6823 | "Payment Icons" 6824 | ] 6825 | }, 6826 | { 6827 | "name": "Diner's Club Credit Card", 6828 | "id": "cc-diners-club", 6829 | "unicode": "f24c", 6830 | "created": 4.4, 6831 | "categories": [ 6832 | "Brand Icons", 6833 | "Payment Icons" 6834 | ] 6835 | }, 6836 | { 6837 | "name": "Clone", 6838 | "id": "clone", 6839 | "unicode": "f24d", 6840 | "created": 4.4, 6841 | "filter": [ 6842 | "copy" 6843 | ], 6844 | "categories": [ 6845 | "Web Application Icons" 6846 | ] 6847 | }, 6848 | { 6849 | "name": "Balance Scale", 6850 | "id": "balance-scale", 6851 | "unicode": "f24e", 6852 | "created": 4.4, 6853 | "categories": [ 6854 | "Web Application Icons" 6855 | ] 6856 | }, 6857 | { 6858 | "name": "Hourglass Outlined", 6859 | "id": "hourglass-o", 6860 | "unicode": "f250", 6861 | "created": 4.4, 6862 | "categories": [ 6863 | "Web Application Icons" 6864 | ] 6865 | }, 6866 | { 6867 | "name": "Hourglass Start", 6868 | "id": "hourglass-start", 6869 | "unicode": "f251", 6870 | "created": 4.4, 6871 | "aliases": [ 6872 | "hourglass-1" 6873 | ], 6874 | "categories": [ 6875 | "Web Application Icons" 6876 | ] 6877 | }, 6878 | { 6879 | "name": "Hourglass Half", 6880 | "id": "hourglass-half", 6881 | "unicode": "f252", 6882 | "created": 4.4, 6883 | "aliases": [ 6884 | "hourglass-2" 6885 | ], 6886 | "categories": [ 6887 | "Web Application Icons" 6888 | ] 6889 | }, 6890 | { 6891 | "name": "Hourglass End", 6892 | "id": "hourglass-end", 6893 | "unicode": "f253", 6894 | "created": 4.4, 6895 | "aliases": [ 6896 | "hourglass-3" 6897 | ], 6898 | "categories": [ 6899 | "Web Application Icons" 6900 | ] 6901 | }, 6902 | { 6903 | "name": "Hourglass", 6904 | "id": "hourglass", 6905 | "unicode": "f254", 6906 | "created": 4.4, 6907 | "categories": [ 6908 | "Web Application Icons" 6909 | ] 6910 | }, 6911 | { 6912 | "name": "Rock (Hand)", 6913 | "id": "hand-rock-o", 6914 | "unicode": "f255", 6915 | "created": 4.4, 6916 | "aliases": [ 6917 | "hand-grab-o" 6918 | ], 6919 | "categories": [ 6920 | "Web Application Icons", 6921 | "Hand Icons" 6922 | ] 6923 | }, 6924 | { 6925 | "name": "Paper (Hand)", 6926 | "id": "hand-paper-o", 6927 | "unicode": "f256", 6928 | "created": 4.4, 6929 | "aliases": [ 6930 | "hand-stop-o" 6931 | ], 6932 | "filter": [ 6933 | "stop" 6934 | ], 6935 | "categories": [ 6936 | "Web Application Icons", 6937 | "Hand Icons" 6938 | ] 6939 | }, 6940 | { 6941 | "name": "Scissors (Hand)", 6942 | "id": "hand-scissors-o", 6943 | "unicode": "f257", 6944 | "created": 4.4, 6945 | "categories": [ 6946 | "Web Application Icons", 6947 | "Hand Icons" 6948 | ] 6949 | }, 6950 | { 6951 | "name": "Lizard (Hand)", 6952 | "id": "hand-lizard-o", 6953 | "unicode": "f258", 6954 | "created": 4.4, 6955 | "categories": [ 6956 | "Web Application Icons", 6957 | "Hand Icons" 6958 | ] 6959 | }, 6960 | { 6961 | "name": "Spock (Hand)", 6962 | "id": "hand-spock-o", 6963 | "unicode": "f259", 6964 | "created": 4.4, 6965 | "categories": [ 6966 | "Web Application Icons", 6967 | "Hand Icons" 6968 | ] 6969 | }, 6970 | { 6971 | "name": "Hand Pointer", 6972 | "id": "hand-pointer-o", 6973 | "unicode": "f25a", 6974 | "created": 4.4, 6975 | "categories": [ 6976 | "Web Application Icons", 6977 | "Hand Icons" 6978 | ] 6979 | }, 6980 | { 6981 | "name": "Hand Peace", 6982 | "id": "hand-peace-o", 6983 | "unicode": "f25b", 6984 | "created": 4.4, 6985 | "categories": [ 6986 | "Web Application Icons", 6987 | "Hand Icons" 6988 | ] 6989 | }, 6990 | { 6991 | "name": "Trademark", 6992 | "id": "trademark", 6993 | "unicode": "f25c", 6994 | "created": 4.4, 6995 | "categories": [ 6996 | "Web Application Icons" 6997 | ] 6998 | }, 6999 | { 7000 | "name": "Registered Trademark", 7001 | "id": "registered", 7002 | "unicode": "f25d", 7003 | "created": 4.4, 7004 | "categories": [ 7005 | "Web Application Icons" 7006 | ] 7007 | }, 7008 | { 7009 | "name": "Creative Commons", 7010 | "id": "creative-commons", 7011 | "unicode": "f25e", 7012 | "created": 4.4, 7013 | "categories": [ 7014 | "Web Application Icons" 7015 | ] 7016 | }, 7017 | { 7018 | "name": "GG Currency", 7019 | "id": "gg", 7020 | "unicode": "f260", 7021 | "created": 4.4, 7022 | "categories": [ 7023 | "Currency Icons", 7024 | "Brand Icons" 7025 | ] 7026 | }, 7027 | { 7028 | "name": "GG Currency Circle", 7029 | "id": "gg-circle", 7030 | "unicode": "f261", 7031 | "created": 4.4, 7032 | "categories": [ 7033 | "Currency Icons", 7034 | "Brand Icons" 7035 | ] 7036 | }, 7037 | { 7038 | "name": "TripAdvisor", 7039 | "id": "tripadvisor", 7040 | "unicode": "f262", 7041 | "created": 4.4, 7042 | "categories": [ 7043 | "Brand Icons" 7044 | ] 7045 | }, 7046 | { 7047 | "name": "Odnoklassniki", 7048 | "id": "odnoklassniki", 7049 | "unicode": "f263", 7050 | "created": 4.4, 7051 | "categories": [ 7052 | "Brand Icons" 7053 | ] 7054 | }, 7055 | { 7056 | "name": "Odnoklassniki Square", 7057 | "id": "odnoklassniki-square", 7058 | "unicode": "f264", 7059 | "created": 4.4, 7060 | "categories": [ 7061 | "Brand Icons" 7062 | ] 7063 | }, 7064 | { 7065 | "name": "Get Pocket", 7066 | "id": "get-pocket", 7067 | "unicode": "f265", 7068 | "created": 4.4, 7069 | "categories": [ 7070 | "Brand Icons" 7071 | ] 7072 | }, 7073 | { 7074 | "name": "Wikipedia W", 7075 | "id": "wikipedia-w", 7076 | "unicode": "f266", 7077 | "created": 4.4, 7078 | "categories": [ 7079 | "Brand Icons" 7080 | ] 7081 | }, 7082 | { 7083 | "name": "Safari", 7084 | "id": "safari", 7085 | "unicode": "f267", 7086 | "created": 4.4, 7087 | "filter": [ 7088 | "browser" 7089 | ], 7090 | "categories": [ 7091 | "Brand Icons" 7092 | ] 7093 | }, 7094 | { 7095 | "name": "Chrome", 7096 | "id": "chrome", 7097 | "unicode": "f268", 7098 | "created": 4.4, 7099 | "filter": [ 7100 | "browser" 7101 | ], 7102 | "categories": [ 7103 | "Brand Icons" 7104 | ] 7105 | }, 7106 | { 7107 | "name": "Firefox", 7108 | "id": "firefox", 7109 | "unicode": "f269", 7110 | "created": 4.4, 7111 | "filter": [ 7112 | "browser" 7113 | ], 7114 | "categories": [ 7115 | "Brand Icons" 7116 | ] 7117 | }, 7118 | { 7119 | "name": "Opera", 7120 | "id": "opera", 7121 | "unicode": "f26a", 7122 | "created": 4.4, 7123 | "categories": [ 7124 | "Brand Icons" 7125 | ] 7126 | }, 7127 | { 7128 | "name": "Internet-explorer", 7129 | "id": "internet-explorer", 7130 | "unicode": "f26b", 7131 | "created": 4.4, 7132 | "filter": [ 7133 | "browser", 7134 | "ie" 7135 | ], 7136 | "categories": [ 7137 | "Brand Icons" 7138 | ] 7139 | }, 7140 | { 7141 | "name": "Television", 7142 | "id": "television", 7143 | "unicode": "f26c", 7144 | "created": 4.4, 7145 | "aliases": [ 7146 | "tv" 7147 | ], 7148 | "filter": [ 7149 | "display", 7150 | "computer", 7151 | "monitor" 7152 | ], 7153 | "categories": [ 7154 | "Web Application Icons" 7155 | ] 7156 | }, 7157 | { 7158 | "name": "Contao", 7159 | "id": "contao", 7160 | "unicode": "f26d", 7161 | "created": 4.4, 7162 | "categories": [ 7163 | "Brand Icons" 7164 | ] 7165 | }, 7166 | { 7167 | "name": "500px", 7168 | "id": "500px", 7169 | "unicode": "f26e", 7170 | "created": 4.4, 7171 | "categories": [ 7172 | "Brand Icons" 7173 | ] 7174 | }, 7175 | { 7176 | "name": "Amazon", 7177 | "id": "amazon", 7178 | "unicode": "f270", 7179 | "created": 4.4, 7180 | "categories": [ 7181 | "Brand Icons" 7182 | ] 7183 | }, 7184 | { 7185 | "name": "Calendar Plus Outlined", 7186 | "id": "calendar-plus-o", 7187 | "unicode": "f271", 7188 | "created": 4.4, 7189 | "categories": [ 7190 | "Web Application Icons" 7191 | ] 7192 | }, 7193 | { 7194 | "name": "Calendar Minus Outlined", 7195 | "id": "calendar-minus-o", 7196 | "unicode": "f272", 7197 | "created": 4.4, 7198 | "categories": [ 7199 | "Web Application Icons" 7200 | ] 7201 | }, 7202 | { 7203 | "name": "Calendar Times Outlined", 7204 | "id": "calendar-times-o", 7205 | "unicode": "f273", 7206 | "created": 4.4, 7207 | "categories": [ 7208 | "Web Application Icons" 7209 | ] 7210 | }, 7211 | { 7212 | "name": "Calendar Check Outlined", 7213 | "id": "calendar-check-o", 7214 | "unicode": "f274", 7215 | "created": 4.4, 7216 | "filter": [ 7217 | "ok" 7218 | ], 7219 | "categories": [ 7220 | "Web Application Icons" 7221 | ] 7222 | }, 7223 | { 7224 | "name": "Industry", 7225 | "id": "industry", 7226 | "unicode": "f275", 7227 | "created": 4.4, 7228 | "filter": [ 7229 | "factory" 7230 | ], 7231 | "categories": [ 7232 | "Web Application Icons" 7233 | ] 7234 | }, 7235 | { 7236 | "name": "Map Pin", 7237 | "id": "map-pin", 7238 | "unicode": "f276", 7239 | "created": 4.4, 7240 | "categories": [ 7241 | "Web Application Icons" 7242 | ] 7243 | }, 7244 | { 7245 | "name": "Map Signs", 7246 | "id": "map-signs", 7247 | "unicode": "f277", 7248 | "created": 4.4, 7249 | "categories": [ 7250 | "Web Application Icons" 7251 | ] 7252 | }, 7253 | { 7254 | "name": "Map Outline", 7255 | "id": "map-o", 7256 | "unicode": "f278", 7257 | "created": 4.4, 7258 | "categories": [ 7259 | "Web Application Icons" 7260 | ] 7261 | }, 7262 | { 7263 | "name": "Map", 7264 | "id": "map", 7265 | "unicode": "f279", 7266 | "created": 4.4, 7267 | "categories": [ 7268 | "Web Application Icons" 7269 | ] 7270 | }, 7271 | { 7272 | "name": "Commenting", 7273 | "id": "commenting", 7274 | "unicode": "f27a", 7275 | "created": 4.4, 7276 | "filter": [ 7277 | "message" 7278 | ], 7279 | "categories": [ 7280 | "Web Application Icons" 7281 | ] 7282 | }, 7283 | { 7284 | "name": "Commenting Outlined", 7285 | "id": "commenting-o", 7286 | "unicode": "f27b", 7287 | "created": 4.4, 7288 | "filter": [ 7289 | "message" 7290 | ], 7291 | "categories": [ 7292 | "Web Application Icons" 7293 | ] 7294 | }, 7295 | { 7296 | "name": "Houzz", 7297 | "id": "houzz", 7298 | "unicode": "f27c", 7299 | "created": 4.4, 7300 | "categories": [ 7301 | "Brand Icons" 7302 | ] 7303 | }, 7304 | { 7305 | "name": "Vimeo", 7306 | "id": "vimeo", 7307 | "unicode": "f27d", 7308 | "created": 4.4, 7309 | "categories": [ 7310 | "Brand Icons" 7311 | ] 7312 | }, 7313 | { 7314 | "name": "Font Awesome Black Tie", 7315 | "id": "black-tie", 7316 | "unicode": "f27e", 7317 | "created": 4.4, 7318 | "url": "blacktie.io", 7319 | "categories": [ 7320 | "Brand Icons" 7321 | ] 7322 | }, 7323 | { 7324 | "name": "Fonticons", 7325 | "id": "fonticons", 7326 | "unicode": "f280", 7327 | "created": 4.4, 7328 | "url": "fonticons.com", 7329 | "categories": [ 7330 | "Brand Icons" 7331 | ] 7332 | }, 7333 | { 7334 | "name": "reddit Alien", 7335 | "id": "reddit-alien", 7336 | "unicode": "f281", 7337 | "created": 4.5, 7338 | "categories": [ 7339 | "Brand Icons" 7340 | ] 7341 | }, 7342 | { 7343 | "name": "Edge Browser", 7344 | "id": "edge", 7345 | "unicode": "f282", 7346 | "created": 4.5, 7347 | "filter": [ 7348 | "browser", 7349 | "ie" 7350 | ], 7351 | "categories": [ 7352 | "Brand Icons" 7353 | ] 7354 | }, 7355 | { 7356 | "name": "Credit Card", 7357 | "id": "credit-card-alt", 7358 | "unicode": "f283", 7359 | "created": 4.5, 7360 | "filter": [ 7361 | "money", 7362 | "buy", 7363 | "debit", 7364 | "checkout", 7365 | "purchase", 7366 | "payment", 7367 | "credit card" 7368 | ], 7369 | "categories": [ 7370 | "Payment Icons", 7371 | "Web Application Icons" 7372 | ] 7373 | }, 7374 | { 7375 | "name": "Codie Pie", 7376 | "id": "codiepie", 7377 | "unicode": "f284", 7378 | "created": 4.5, 7379 | "url": "codiepie.com", 7380 | "categories": [ 7381 | "Brand Icons" 7382 | ] 7383 | }, 7384 | { 7385 | "name": "MODX", 7386 | "id": "modx", 7387 | "unicode": "f285", 7388 | "created": 4.5, 7389 | "categories": [ 7390 | "Brand Icons" 7391 | ] 7392 | }, 7393 | { 7394 | "name": "Fort Awesome", 7395 | "id": "fort-awesome", 7396 | "unicode": "f286", 7397 | "created": 4.5, 7398 | "url": "fortawesome.com", 7399 | "categories": [ 7400 | "Brand Icons" 7401 | ] 7402 | }, 7403 | { 7404 | "name": "USB", 7405 | "id": "usb", 7406 | "unicode": "f287", 7407 | "created": 4.5, 7408 | "categories": [ 7409 | "Brand Icons" 7410 | ] 7411 | }, 7412 | { 7413 | "name": "Product Hunt", 7414 | "id": "product-hunt", 7415 | "unicode": "f288", 7416 | "created": 4.5, 7417 | "categories": [ 7418 | "Brand Icons" 7419 | ] 7420 | }, 7421 | { 7422 | "name": "Mixcloud", 7423 | "id": "mixcloud", 7424 | "unicode": "f289", 7425 | "created": 4.5, 7426 | "categories": [ 7427 | "Brand Icons" 7428 | ] 7429 | }, 7430 | { 7431 | "name": "Scribd", 7432 | "id": "scribd", 7433 | "unicode": "f28a", 7434 | "created": 4.5, 7435 | "categories": [ 7436 | "Brand Icons" 7437 | ] 7438 | }, 7439 | { 7440 | "name": "Pause Circle", 7441 | "id": "pause-circle", 7442 | "unicode": "f28b", 7443 | "created": 4.5, 7444 | "categories": [ 7445 | "Video Player Icons" 7446 | ] 7447 | }, 7448 | { 7449 | "name": "Pause Circle Outlined", 7450 | "id": "pause-circle-o", 7451 | "unicode": "f28c", 7452 | "created": 4.5, 7453 | "categories": [ 7454 | "Video Player Icons" 7455 | ] 7456 | }, 7457 | { 7458 | "name": "Stop Circle", 7459 | "id": "stop-circle", 7460 | "unicode": "f28d", 7461 | "created": 4.5, 7462 | "categories": [ 7463 | "Video Player Icons" 7464 | ] 7465 | }, 7466 | { 7467 | "name": "Stop Circle Outlined", 7468 | "id": "stop-circle-o", 7469 | "unicode": "f28e", 7470 | "created": 4.5, 7471 | "categories": [ 7472 | "Video Player Icons" 7473 | ] 7474 | }, 7475 | { 7476 | "name": "Shopping Bag", 7477 | "id": "shopping-bag", 7478 | "unicode": "f290", 7479 | "created": 4.5, 7480 | "categories": [ 7481 | "Web Application Icons" 7482 | ] 7483 | }, 7484 | { 7485 | "name": "Shopping Basket", 7486 | "id": "shopping-basket", 7487 | "unicode": "f291", 7488 | "created": 4.5, 7489 | "categories": [ 7490 | "Web Application Icons" 7491 | ] 7492 | }, 7493 | { 7494 | "name": "Hashtag", 7495 | "id": "hashtag", 7496 | "unicode": "f292", 7497 | "created": 4.5, 7498 | "categories": [ 7499 | "Web Application Icons" 7500 | ] 7501 | }, 7502 | { 7503 | "name": "Bluetooth", 7504 | "id": "bluetooth", 7505 | "unicode": "f293", 7506 | "created": 4.5, 7507 | "categories": [ 7508 | "Web Application Icons", 7509 | "Brand Icons" 7510 | ] 7511 | }, 7512 | { 7513 | "name": "Bluetooth", 7514 | "id": "bluetooth-b", 7515 | "unicode": "f294", 7516 | "created": 4.5, 7517 | "categories": [ 7518 | "Web Application Icons", 7519 | "Brand Icons" 7520 | ] 7521 | }, 7522 | { 7523 | "name": "Percent", 7524 | "id": "percent", 7525 | "unicode": "f295", 7526 | "created": 4.5, 7527 | "categories": [ 7528 | "Web Application Icons" 7529 | ] 7530 | }, 7531 | { 7532 | "name": "GitLab", 7533 | "id": "gitlab", 7534 | "unicode": "f296", 7535 | "created": 4.6, 7536 | "url": "gitlab.com", 7537 | "categories": [ 7538 | "Brand Icons" 7539 | ] 7540 | }, 7541 | { 7542 | "name": "WPBeginner", 7543 | "id": "wpbeginner", 7544 | "unicode": "f297", 7545 | "created": 4.6, 7546 | "url": "wpbeginner.com", 7547 | "categories": [ 7548 | "Brand Icons" 7549 | ] 7550 | }, 7551 | { 7552 | "name": "WPForms", 7553 | "id": "wpforms", 7554 | "unicode": "f298", 7555 | "created": 4.6, 7556 | "url": "wpforms.com", 7557 | "categories": [ 7558 | "Brand Icons" 7559 | ] 7560 | }, 7561 | { 7562 | "name": "Envira Gallery", 7563 | "id": "envira", 7564 | "unicode": "f299", 7565 | "created": 4.6, 7566 | "url": "enviragallery.com", 7567 | "filter": [ 7568 | "leaf" 7569 | ], 7570 | "categories": [ 7571 | "Brand Icons" 7572 | ] 7573 | }, 7574 | { 7575 | "name": "Universal Access", 7576 | "id": "universal-access", 7577 | "unicode": "f29a", 7578 | "created": 4.6, 7579 | "categories": [ 7580 | "Web Application Icons", 7581 | "Accessibility Icons" 7582 | ] 7583 | }, 7584 | { 7585 | "name": "Wheelchair Alt", 7586 | "id": "wheelchair-alt", 7587 | "unicode": "f29b", 7588 | "created": 4.6, 7589 | "categories": [ 7590 | "Web Application Icons", 7591 | "Accessibility Icons" 7592 | ] 7593 | }, 7594 | { 7595 | "name": "Question Circle Outlined", 7596 | "id": "question-circle-o", 7597 | "unicode": "f29c", 7598 | "created": 4.6, 7599 | "categories": [ 7600 | "Web Application Icons", 7601 | "Accessibility Icons" 7602 | ] 7603 | }, 7604 | { 7605 | "name": "Blind", 7606 | "id": "blind", 7607 | "unicode": "f29d", 7608 | "created": 4.6, 7609 | "categories": [ 7610 | "Web Application Icons", 7611 | "Accessibility Icons" 7612 | ] 7613 | }, 7614 | { 7615 | "name": "Audio Description", 7616 | "id": "audio-description", 7617 | "unicode": "f29e", 7618 | "created": 4.6, 7619 | "categories": [ 7620 | "Web Application Icons", 7621 | "Accessibility Icons" 7622 | ] 7623 | }, 7624 | { 7625 | "name": "Volume Control Phone", 7626 | "id": "volume-control-phone", 7627 | "unicode": "f2a0", 7628 | "created": 4.6, 7629 | "categories": [ 7630 | "Web Application Icons", 7631 | "Accessibility Icons" 7632 | ] 7633 | }, 7634 | { 7635 | "name": "Braille", 7636 | "id": "braille", 7637 | "unicode": "f2a1", 7638 | "created": 4.6, 7639 | "categories": [ 7640 | "Web Application Icons", 7641 | "Accessibility Icons" 7642 | ] 7643 | }, 7644 | { 7645 | "name": "Assistive Listening Systems", 7646 | "id": "assistive-listening-systems", 7647 | "unicode": "f2a2", 7648 | "created": 4.6, 7649 | "categories": [ 7650 | "Web Application Icons", 7651 | "Accessibility Icons" 7652 | ] 7653 | }, 7654 | { 7655 | "name": "American Sign Language Interpreting", 7656 | "id": "american-sign-language-interpreting", 7657 | "unicode": "f2a3", 7658 | "created": 4.6, 7659 | "aliases": [ 7660 | "asl-interpreting" 7661 | ], 7662 | "categories": [ 7663 | "Web Application Icons", 7664 | "Accessibility Icons" 7665 | ] 7666 | }, 7667 | { 7668 | "name": "Deaf", 7669 | "id": "deaf", 7670 | "unicode": "f2a4", 7671 | "created": 4.6, 7672 | "aliases": [ 7673 | "deafness", 7674 | "hard-of-hearing" 7675 | ], 7676 | "categories": [ 7677 | "Web Application Icons", 7678 | "Accessibility Icons" 7679 | ] 7680 | }, 7681 | { 7682 | "name": "Glide", 7683 | "id": "glide", 7684 | "unicode": "f2a5", 7685 | "created": 4.6, 7686 | "categories": [ 7687 | "Brand Icons" 7688 | ] 7689 | }, 7690 | { 7691 | "name": "Glide G", 7692 | "id": "glide-g", 7693 | "unicode": "f2a6", 7694 | "created": 4.6, 7695 | "categories": [ 7696 | "Brand Icons" 7697 | ] 7698 | }, 7699 | { 7700 | "name": "Sign Language", 7701 | "id": "sign-language", 7702 | "unicode": "f2a7", 7703 | "created": 4.6, 7704 | "aliases": [ 7705 | "signing" 7706 | ], 7707 | "categories": [ 7708 | "Web Application Icons", 7709 | "Accessibility Icons" 7710 | ] 7711 | }, 7712 | { 7713 | "name": "Low Vision", 7714 | "id": "low-vision", 7715 | "unicode": "f2a8", 7716 | "created": 4.6, 7717 | "categories": [ 7718 | "Web Application Icons", 7719 | "Accessibility Icons" 7720 | ] 7721 | }, 7722 | { 7723 | "name": "Viadeo", 7724 | "id": "viadeo", 7725 | "unicode": "f2a9", 7726 | "created": 4.6, 7727 | "categories": [ 7728 | "Brand Icons" 7729 | ] 7730 | }, 7731 | { 7732 | "name": "Viadeo Square", 7733 | "id": "viadeo-square", 7734 | "unicode": "f2aa", 7735 | "created": 4.6, 7736 | "categories": [ 7737 | "Brand Icons" 7738 | ] 7739 | }, 7740 | { 7741 | "name": "Snapchat", 7742 | "id": "snapchat", 7743 | "unicode": "f2ab", 7744 | "created": 4.6, 7745 | "categories": [ 7746 | "Brand Icons" 7747 | ] 7748 | }, 7749 | { 7750 | "name": "Snapchat Ghost", 7751 | "id": "snapchat-ghost", 7752 | "unicode": "f2ac", 7753 | "created": 4.6, 7754 | "categories": [ 7755 | "Brand Icons" 7756 | ] 7757 | }, 7758 | { 7759 | "name": "Snapchat Square", 7760 | "id": "snapchat-square", 7761 | "unicode": "f2ad", 7762 | "created": 4.6, 7763 | "categories": [ 7764 | "Brand Icons" 7765 | ] 7766 | }, 7767 | { 7768 | "name": "Pied Piper Logo", 7769 | "id": "pied-piper", 7770 | "unicode": "f2ae", 7771 | "created": 4.6, 7772 | "categories": [ 7773 | "Brand Icons" 7774 | ] 7775 | }, 7776 | { 7777 | "name": "First Order", 7778 | "id": "first-order", 7779 | "unicode": "f2b0", 7780 | "created": 4.6, 7781 | "categories": [ 7782 | "Brand Icons" 7783 | ] 7784 | }, 7785 | { 7786 | "name": "Yoast", 7787 | "id": "yoast", 7788 | "unicode": "f2b1", 7789 | "created": 4.6, 7790 | "url": "yoast.com", 7791 | "categories": [ 7792 | "Brand Icons" 7793 | ] 7794 | }, 7795 | { 7796 | "name": "ThemeIsle", 7797 | "id": "themeisle", 7798 | "unicode": "f2b2", 7799 | "created": 4.6, 7800 | "url": "themeisle.com", 7801 | "categories": [ 7802 | "Brand Icons" 7803 | ] 7804 | }, 7805 | { 7806 | "name": "Google Plus Official", 7807 | "id": "google-plus-official", 7808 | "unicode": "f2b3", 7809 | "created": 4.6, 7810 | "aliases": [ 7811 | "google-plus-circle" 7812 | ], 7813 | "categories": [ 7814 | "Brand Icons" 7815 | ] 7816 | }, 7817 | { 7818 | "name": "Font Awesome", 7819 | "id": "font-awesome", 7820 | "unicode": "f2b4", 7821 | "created": 4.6, 7822 | "aliases": [ 7823 | "fa" 7824 | ], 7825 | "categories": [ 7826 | "Brand Icons" 7827 | ] 7828 | } 7829 | ] 7830 | } -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/add_icon.cocoascript: -------------------------------------------------------------------------------- 1 | @import "library.cocoascript"; 2 | 3 | var onRun = function(context) { 4 | 5 | var doc = context.document // the current document (MSDocument) 6 | var plugin = context.plugin // the plugin (MSPluginBundle) 7 | var page = [doc currentPage] // the current page (MSPage) 8 | var icon_source = [plugin urlForResourceNamed:"icons.json"] 9 | 10 | // call getIcons function from library file. 11 | var icons = Library.getIcons(icon_source) 12 | var icon_list = Library.iconValues(icons) 13 | 14 | // create a wrapper window 15 | var mainwindow = Library.components.window("Font Awesome - Add an icon with input", "Write an icon name") 16 | var wrapper = mainwindow[0] 17 | var content = mainwindow[1] 18 | 19 | var selectedItemIndex = selectedItemIndex || 0 20 | 21 | var searchbox = [[NSTextField alloc] initWithFrame:NSMakeRect(40,175,150,24)] 22 | [searchbox setBackgroundColor: [NSColor clearColor]]; 23 | [content addSubview:searchbox] 24 | 25 | // copy button for icon name 26 | submitButton = Library.components.submit("Submit",NSMakeRect(250, 150, 200, 50)) 27 | submitButton.setWantsLayer(true) 28 | 29 | // submit button layer 30 | var buttonlayer = [CATextLayer layer] 31 | [buttonlayer setBackgroundColor:[NSColor blackColor]] 32 | [buttonlayer setForegroundColor:CGColorCreateGenericRGB(215/255, 159/255, 0/255, 1.0)] 33 | [buttonlayer setFontSize:18]; 34 | 35 | // [buttonlayer setFont:[NSFont boldSystemFontOfSize:12]] 36 | buttonlayer.contentsScale = [[NSScreen mainScreen] backingScaleFactor]; 37 | buttonlayer.string = "+ Add/Change Icon" 38 | [submitButton setLayer:buttonlayer] 39 | [submitButton setCOSJSTargetFunction:function(sender) { 40 | [wrapper orderOut:nil] 41 | [NSApp stopModalWithCode:NSOKButton] 42 | }]; 43 | [content addSubview:submitButton] 44 | 45 | [NSApp activateIgnoringOtherApps:true] 46 | var response = [NSApp runModalForWindow:wrapper]; 47 | var input_value = [searchbox stringValue]; 48 | var finded_icon = Library.searchAlias([input_value lowercaseString],icons) 49 | 50 | // if is the response is ok, add icon to the layer 51 | if (response == NSOKButton) { 52 | if (finded_icon.alias != undefined) { 53 | var icon_name = finded_icon.alias 54 | var get_selected_icon = Library.escapeUnicode('\\u' + finded_icon.unicode) 55 | // select the text layer 56 | var selection = doc ? doc.findSelectedLayers() : nil 57 | var textLayer = [selection firstObject] 58 | textLayer = textLayer instanceof MSTextLayer ? textLayer : nil 59 | // if is it a text layer run it. if it is not give an error. 60 | if (textLayer && [textLayer stringValue]) { 61 | // set selected icon as the layer's value 62 | [textLayer setStringValue: get_selected_icon]; 63 | // set icon name as the layer's name 64 | [textLayer setName: icon_name]; 65 | } else { 66 | textLayer = Library.addTextLayer(page, {"text": get_selected_icon, "name": icon_name}); 67 | } 68 | // set icon font 69 | [textLayer setFontPostscriptName:'FontAwesome']; 70 | } else { 71 | // give an error to write an icon 72 | Library.components.alert('You need to write a correct icon name','Please try again that.') 73 | } 74 | } 75 | 76 | }; 77 | -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/add_icon_combobox.cocoascript: -------------------------------------------------------------------------------- 1 | @import "library.cocoascript"; 2 | 3 | var onRun = function(context) { 4 | https://github.com/matt-curtis/MochaJSDelegate/ 5 | var doc = context.document // the current document (MSDocument) 6 | var plugin = context.plugin // the plugin (MSPluginBundle) 7 | var page = [doc currentPage] // the current page (MSPage) 8 | var icon_source = [plugin urlForResourceNamed:"icons.json"] 9 | 10 | // call getIcons function from library file. 11 | var icons = Library.getIcons(icon_source) 12 | var icon_list = Library.iconValues(icons) 13 | 14 | // create a wrapper window 15 | var mainwindow = Library.components.window("Font Awesome - Add an icon with combobox", "Choose an icon") 16 | var wrapper = mainwindow[0] 17 | var content = mainwindow[1] 18 | 19 | var selectedItemIndex = selectedItemIndex || 0 20 | 21 | // create combobox 22 | var selectbox = [[NSComboBox alloc] initWithFrame:NSMakeRect(50,160,100,50)] 23 | [selectbox setFont:[NSFont fontWithName:@'FontAwesome' size:24.0]] 24 | [selectbox setBackgroundColor: [NSColor clearColor]]; 25 | [selectbox setTextColor:[NSColor blackColor]] 26 | [selectbox addItemsWithObjectValues:icon_list[0]] 27 | [selectbox setItemHeight:50] 28 | [selectbox setButtonBordered:false] 29 | [selectbox setIntercellSpacing:NSMakeSize(50.0, 30.0)] 30 | [selectbox selectItemAtIndex:selectedItemIndex] 31 | [selectbox setEditable:false]; 32 | [content addSubview:selectbox] 33 | 34 | // copy button for icon name 35 | submitButton = Library.components.submit("Submit",NSMakeRect(200, 147, 200, 50)) 36 | submitButton.setWantsLayer(true) 37 | // submit button layer 38 | var buttonlayer = [CATextLayer layer] 39 | [buttonlayer setBackgroundColor:[NSColor blackColor]] 40 | [buttonlayer setForegroundColor:CGColorCreateGenericRGB(215/255, 159/255, 0/255, 1.0)] 41 | [buttonlayer setFontSize:18]; 42 | // [buttonlayer setFont:[NSFont boldSystemFontOfSize:12]] 43 | buttonlayer.contentsScale = [[NSScreen mainScreen] backingScaleFactor]; 44 | buttonlayer.string = "+ Add/Change Icon" 45 | [submitButton setLayer:buttonlayer] 46 | [submitButton setCOSJSTargetFunction:function(sender) { 47 | [wrapper orderOut:nil] 48 | [NSApp stopModalWithCode:NSOKButton] 49 | }]; 50 | [content addSubview:submitButton] 51 | 52 | var response = [NSApp runModalForWindow:wrapper]; 53 | var selected_icon = [selectbox indexOfSelectedItem] 54 | var icon_name = icon_list[1][selected_icon] 55 | var get_selected_icon = [selectbox objectValueOfSelectedItem] 56 | 57 | // if is the response is ok, add icon to the layer 58 | if (response == NSOKButton) { 59 | // select the text layer 60 | var selection = doc ? doc.findSelectedLayers() : nil 61 | var textLayer = [selection firstObject] 62 | textLayer = textLayer instanceof MSTextLayer ? textLayer : nil 63 | 64 | // if is it a text layer run it. if it is not give an error. 65 | if (textLayer && [textLayer stringValue]) { 66 | // set selected icon as the layer's value 67 | [textLayer setStringValue: get_selected_icon]; 68 | // set icon name as the layer's name 69 | [textLayer setName: icon_name]; 70 | } else { 71 | textLayer = Library.addTextLayer(page, {"text": get_selected_icon, "name": icon_name}); 72 | } 73 | 74 | // set icon font 75 | [textLayer setFontPostscriptName:'FontAwesome']; 76 | } 77 | 78 | }; 79 | -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/add_icon_radiolist.cocoascript: -------------------------------------------------------------------------------- 1 | @import "library.cocoascript"; 2 | 3 | var onRun = function(context) { 4 | 5 | var doc = context.document // the current document (MSDocument) 6 | var plugin = context.plugin // the plugin (MSPluginBundle) 7 | var page = [doc currentPage] // the current page (MSPage) 8 | var icon_source = [plugin urlForResourceNamed:"icons.json"] 9 | 10 | // call getIcons function from library file. 11 | var icons = Library.getIcons(icon_source) 12 | var icon_list = Library.iconValues(icons) 13 | var icon_count = icon_list[0].length; 14 | // row count and height calculate 15 | var row_count = Math.ceil(icon_count / 11); 16 | var list_height = Math.ceil(row_count * 50); 17 | 18 | // create a wrapper window 19 | var mainwindow = Library.components.window("Font Awesome - Add an icon from table", "Choose an icon") 20 | var wrapper = mainwindow[0] 21 | var content = mainwindow[1] 22 | 23 | var selectedItemIndex = selectedItemIndex || 0 24 | 25 | var listContainer = [[NSScrollView alloc] initWithFrame:NSMakeRect(25,25,554,260)] 26 | 27 | var prototype = [[NSButtonCell alloc] init]; 28 | [prototype setButtonType:NSToggleButton]; 29 | [prototype setTitle:"-"]; 30 | // [prototype setAlternateTitle:"3"]; 31 | [prototype setBezeled:true] 32 | [prototype setBezelStyle:NSThickSquareBezelStyle] 33 | 34 | var iconMatrix = [[NSMatrix alloc] initWithFrame:NSMakeRect(0, 45, 545, list_height) 35 | mode:NSListModeMatrix prototype:prototype numberOfRows:row_count numberOfColumns:11]; 36 | var cellArray = [iconMatrix cells]; 37 | [iconMatrix setFont:[NSFont fontWithName:@'FontAwesome' size:20.0]] 38 | [iconMatrix setCellSize:NSMakeSize(47, 47)]; 39 | [iconMatrix setIntercellSpacing:NSMakeSize(2, 2)]; 40 | for (var k=0; k < icon_count; k++) 41 | { 42 | [[cellArray objectAtIndex:k] setTitle:icon_list[0][k]]; 43 | [[cellArray objectAtIndex:k] setAlternateTitle:""+k]; 44 | } 45 | [listContainer setDocumentView:iconMatrix]; 46 | [listContainer setHasVerticalScroller:true]; 47 | [content addSubview:listContainer] 48 | 49 | // copy button for icon name 50 | submitButton = Library.components.submit("Submit",NSMakeRect(440, 274, 200, 50)) 51 | submitButton.setWantsLayer(true) 52 | // submit button layer 53 | var buttonlayer = [CATextLayer layer] 54 | [buttonlayer setBackgroundColor:[NSColor blackColor]] 55 | [buttonlayer setForegroundColor:CGColorCreateGenericRGB(215/255, 159/255, 0/255, 1.0)] 56 | [buttonlayer setFontSize:16] 57 | buttonlayer.contentsScale = [[NSScreen mainScreen] backingScaleFactor]; 58 | buttonlayer.string = "+ Add/Change Icon" 59 | [submitButton setLayer:buttonlayer] 60 | [submitButton setCOSJSTargetFunction:function(sender) { 61 | [wrapper orderOut:nil] 62 | [NSApp stopModalWithCode:NSOKButton] 63 | }]; 64 | [content addSubview:submitButton] 65 | 66 | var response = [NSApp runModalForWindow:wrapper]; 67 | var selected_icons = [iconMatrix selectedCells] 68 | 69 | // if is the response is ok, add icon to the layer 70 | if (response == NSOKButton) { 71 | 72 | // select the text layer 73 | var selection = doc ? doc.findSelectedLayers() : nil 74 | var textLayer = [selection firstObject] 75 | textLayer = textLayer instanceof MSTextLayer ? textLayer : nil 76 | 77 | if ([selected_icons count] == 1 && textLayer) { 78 | var selected_icon = [[selected_icons firstObject] alternateTitle] 79 | var icon_name = icon_list[1][selected_icon] 80 | var get_selected_icon = [[selected_icons firstObject] title]; 81 | 82 | // set selected icon as the layer's value 83 | [textLayer setStringValue: get_selected_icon]; 84 | // set icon name as the layer's name 85 | [textLayer setName: icon_name]; 86 | 87 | // set icon font 88 | [textLayer setFontPostscriptName:'FontAwesome']; 89 | } else { 90 | for (var i=0; i < [selected_icons count]; i++) { 91 | var selected_icon = [[selected_icons objectAtIndex:i] alternateTitle] 92 | var icon_name = icon_list[1][selected_icon] 93 | var get_selected_icon = [[selected_icons objectAtIndex:i] title]; 94 | 95 | textLayer = Library.addTextLayer(page, {"text": get_selected_icon, "name": icon_name}); 96 | 97 | // set icon font 98 | [textLayer setFontPostscriptName:'FontAwesome']; 99 | } 100 | } 101 | } 102 | 103 | }; 104 | -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/add_icon_table.cocoascript: -------------------------------------------------------------------------------- 1 | @import "library.cocoascript"; 2 | 3 | var onRun = function(context) { 4 | 5 | var doc = context.document // the current document (MSDocument) 6 | var plugin = context.plugin // the plugin (MSPluginBundle) 7 | var page = [doc currentPage] // the current page (MSPage) 8 | var icon_source = [plugin urlForResourceNamed:"icons.json"] 9 | 10 | // call getIcons function from library file. 11 | var icons = Library.getIcons(icon_source) 12 | var icon_list = Library.iconValues(icons) 13 | 14 | // var dataSource = { 15 | // objectValueForItemAtIndex: function(foo,bar){ 16 | // log(foo) 17 | // log(bar) 18 | // }, 19 | // numberOfItemsInComboBox: function(){ 20 | // return icon_list[0].length; 21 | // } 22 | // } 23 | 24 | var dataSource = { 25 | objectValueForItemAtIndex: function(index){ 26 | return icon_list[0][index]; 27 | }, 28 | numberOfItemsInComboBox: function(){ 29 | return icon_list[0].length; 30 | } 31 | } 32 | 33 | // log("asdfasdfasfsdf") 34 | log(dataSource.objectValueForItemAtIndex) 35 | 36 | // var dataSource = [[NSTableViewDataSource alloc] init] 37 | 38 | // create a wrapper window 39 | var mainwindow = Library.components.window("Font Awesome - Add an icon from table", "Choose an icon") 40 | var wrapper = mainwindow[0] 41 | var content = mainwindow[1] 42 | 43 | var selectedItemIndex = selectedItemIndex || 0 44 | 45 | var tableContainer = [[NSScrollView alloc] initWithFrame:NSMakeRect(50,50,364,150)] 46 | var tableView = [[NSTableView alloc] initWithFrame:NSMakeRect(0, 0, 364, 150)]; 47 | // column1 = [[NSTableColumn alloc] initWithIdentifier:@"Col1"]; 48 | // [tableView addTableColumn:column1]; 49 | 50 | [tableView setDataSource:dataSource]; 51 | 52 | [tableContainer setDocumentView:tableView]; 53 | [tableContainer setHasVerticalScroller:true]; 54 | [content addSubview:tableContainer] 55 | // copy button for icon name 56 | submitButton = Library.components.submit("Submit",NSMakeRect(200, 147, 200, 50)) 57 | submitButton.setWantsLayer(true) 58 | // submit button layer 59 | var buttonlayer = [CATextLayer layer] 60 | [buttonlayer setBackgroundColor:[NSColor blackColor]] 61 | [buttonlayer setForegroundColor:[NSColor purpleColor]] 62 | [buttonlayer setFontSize:18]; 63 | // [buttonlayer setFont:[NSFont boldSystemFontOfSize:12]] 64 | buttonlayer.contentsScale = [[NSScreen mainScreen] backingScaleFactor]; 65 | buttonlayer.string = "Add/Change Icon" 66 | [submitButton setLayer:buttonlayer] 67 | [submitButton setCOSJSTargetFunction:function(sender) { 68 | [wrapper orderOut:nil] 69 | [NSApp stopModalWithCode:NSOKButton] 70 | }]; 71 | // [content addSubview:submitButton] 72 | 73 | var response = [NSApp runModalForWindow:wrapper]; 74 | var selected_icon = "a" 75 | var icon_name = icon_list[1][selected_icon] 76 | var get_selected_icon = "b" 77 | 78 | // if is the response is ok, add icon to the layer 79 | if (response == NSOKButton) { 80 | // select the text layer 81 | var selection = doc ? doc.findSelectedLayers() : nil 82 | var textLayer = [selection firstObject] 83 | textLayer = textLayer instanceof MSTextLayer ? textLayer : nil 84 | 85 | // if is it a text layer run it. if it is not give an error. 86 | if (textLayer && [textLayer stringValue]) { 87 | // set selected icon as the layer's value 88 | [textLayer setStringValue: get_selected_icon]; 89 | // set icon name as the layer's name 90 | [textLayer setName: icon_name]; 91 | } else { 92 | textLayer = Library.addTextLayer(page, {"text": get_selected_icon, "name": icon_name}); 93 | } 94 | 95 | // set icon font 96 | [textLayer setFontPostscriptName:'FontAwesome']; 97 | } 98 | 99 | }; 100 | -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/learn_icon_name.cocoascript: -------------------------------------------------------------------------------- 1 | @import "library.cocoascript"; 2 | 3 | var onRun = function(context) { 4 | 5 | var doc = context.document // the current document (MSDocument) 6 | var plugin = context.plugin // the plugin (MSPluginBundle) 7 | var page = [doc currentPage] // the current page (MSPage) 8 | var icon_source = [plugin urlForResourceNamed:"icons.json"] 9 | 10 | // call getIcons function from library file. 11 | var icons = Library.getIcons(icon_source) 12 | 13 | // select the text layer 14 | var textLayer = page.selectedLayers().firstObject() 15 | 16 | // if is it a text layer run it. if it is not give an error. 17 | if (textLayer && [textLayer stringValue]) { 18 | // get value of the the layer 19 | var layer_text = [textLayer stringValue] 20 | // get hex code of the layer text 21 | var unicode = Library.parseHex(layer_text) 22 | // learn icon's name with a match function / Search unicode in Icon List 23 | var matched_icon = Library.searchUnicode(unicode,icons) 24 | // get only icon name 25 | var icon_name = matched_icon.alias 26 | // get only icon unicode 27 | var icon_alias = '\\u' + matched_icon.unicode 28 | 29 | if (icon_name != "" && icon_name != undefined) { 30 | 31 | // escaped icon 32 | var escapedicon = Library.escapeUnicode(icon_alias) 33 | 34 | // icon with html 35 | var wrappedicon = ''; 36 | 37 | // create a wrapper window 38 | var mainwindow = Library.components.window("Font Awesome - What is the icon's name?", "fa-"+icon_name, plugin) 39 | var wrapper = mainwindow[0] 40 | var content = mainwindow[1] 41 | 42 | // copy button for icon name 43 | copybutton1 = Library.components.copy(icon_name,NSMakeRect(400, 290, 100, 30)) 44 | [content addSubview:copybutton1] 45 | 46 | // copy button for html wrapper icon 47 | copybutton2 = Library.components.copy(wrappedicon,NSMakeRect(400, 190, 100, 30)) 48 | [content addSubview:copybutton2] 49 | 50 | // copy button for icon unicode 51 | copybutton3 = Library.components.copy(escapedicon,NSMakeRect(400, 70, 100, 30)) 52 | [content addSubview:copybutton3] 53 | 54 | // create a code area 55 | var iconCode = [[NSTextField alloc] initWithFrame:NSMakeRect(25, 190, 240, 30)] 56 | [iconCode setEditable:false] 57 | [iconCode setBezeled:true] 58 | [iconCode setBezelStyle:NSRoundedBezelStyle] 59 | [iconCode setFont:[NSFont systemFontOfSize:13]] 60 | [iconCode setStringValue:wrappedicon] 61 | [content addSubview:iconCode] 62 | 63 | // show icon 64 | var iconField = [[NSTextField alloc] initWithFrame:NSMakeRect(25, 70, 300, 50)] 65 | [iconField setEditable:false] 66 | [iconField setBordered:false] 67 | [iconField setDrawsBackground:false] 68 | [iconField setFont:[NSFont fontWithName:@"FontAwesome" size:40]] 69 | [iconField setStringValue:escapedicon] 70 | [content addSubview:iconField] 71 | 72 | [NSApp runModalForWindow:wrapper]; 73 | 74 | } 75 | 76 | // final code to show icon informations. 77 | 78 | } else { 79 | // give an error to select an icon 80 | Library.components.alert('Select an icon','Please firstly select a text layer which contains an icon.') 81 | } 82 | 83 | }; 84 | -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/library.cocoascript: -------------------------------------------------------------------------------- 1 | var Library = { 2 | // 3 | // Get Icons 4 | // valid types for source is 'text' 5 | // 6 | "getIcons": function(source) { 7 | var icons_json = [NSData dataWithContentsOfFile: source]; 8 | var icons_parse = [NSJSONSerialization JSONObjectWithData:icons_json options:nil error:nil]; 9 | return icons_parse; 10 | }, 11 | // 12 | // Parse Hexcode to Unicode 13 | // valid types for layer_text is 'text' 14 | // 15 | "parseHex": function(layer_text) { 16 | var code = layer_text.charCodeAt(0); 17 | var hex = code.toString(16); 18 | while (hex.length < 4) { 19 | hex = '0' + hex; 20 | } 21 | return hex; 22 | }, 23 | // 24 | "iconValues": function(icons) { 25 | var list = [icons objectForKey:@"icons"]; 26 | var icons = []; 27 | var names = []; 28 | 29 | for (var i=0 ; i < [list count]; i++) 30 | { 31 | var hexcode = this.escapeUnicode('\\u' + list[i]["unicode"]); 32 | var icon_name = list[i]["id"] + ' - fontawesome'; 33 | names.push(icon_name); 34 | icons.push(hexcode); 35 | } 36 | 37 | return [icons, names]; 38 | }, 39 | // 40 | // escape hexcode 41 | // 42 | // 43 | "escapeUnicode": function(unicode) { 44 | var r = /\\u([\d\w]{4})/gi; 45 | x = unicode.replace(r, function (match, grp) { 46 | return String.fromCharCode(parseInt(grp, 16)); } 47 | ); 48 | return unescape(x); 49 | }, 50 | // 51 | // Search Unicode in Icon List 52 | // valid types for unicode is 'text' 53 | // valid types for icon_list is 'JSON' 54 | // 55 | "searchUnicode": function(unicode,icon_list) { 56 | var result = [[NSObject alloc] init]; 57 | var list = [icon_list objectForKey:@"icons"]; 58 | 59 | for (var i=0 ; i < [list count]; i++) 60 | { 61 | if (list[i].unicode == unicode) { 62 | result.alias = list[i]["id"]; 63 | result.unicode = list[i]["unicode"]; 64 | } 65 | } 66 | 67 | // if we had an icon id, show it in a window. 68 | if (result.alias == "" || result.alias == undefined) { 69 | this.components.alert('Select a fontawesome icon','It is not a font awesome icon. We did not find its name.'); 70 | } 71 | 72 | return result; 73 | }, 74 | // 75 | // 76 | // 77 | // 78 | // 79 | "searchAlias": function(alias,icon_list) { 80 | var result = [[NSObject alloc] init]; 81 | var list = [icon_list objectForKey:@"icons"]; 82 | 83 | for (var i=0 ; i < [list count]; i++) 84 | { 85 | if (list[i].id == alias) { 86 | result.alias = list[i]["id"]; 87 | result.unicode = list[i]["unicode"]; 88 | } 89 | } 90 | 91 | return result; 92 | }, 93 | // Adds a new layer as a child of `container` with the given type 94 | // Valid types are 'group', 'text', 'image' and 'rectangle' 95 | // parameters is an optional dictionary containing zero or more of the 96 | // following keys: 97 | // name (a string) 98 | // rect (an NSRect) 99 | // color (an MSColor) 100 | // returns the newly created layer 101 | "addLayer": function (container, type, parameters) { 102 | var layer = container.addLayerOfType(type); 103 | if (typeof(parameters.name) !== 'undefined') layer.name = parameters.name; 104 | if (typeof(parameters.rect) !== 'undefined') layer.rect = parameters.rect; 105 | if (typeof(parameters.color) !== 'undefined') { 106 | this.util.setFillColor(layer, parameters.color); 107 | } 108 | return layer; 109 | }, 110 | // Adds a new group (MSLayerGroup) as a child of `container` 111 | // See `addLayer` for a discussion of `parameters` 112 | // returns the newly created group 113 | "addLayerGroup": function (container, parameters) { 114 | return this.addLayer(container, "group", parameters); 115 | }, 116 | // Adds a new text layer (MSTextLayer) as a child of `container` 117 | // In addition to the keys described in `addLayer`, `parameters` may also 118 | // contain the following keys: 119 | // text (a string) 120 | // fontSize (a number) 121 | // returns the newly created text layer 122 | "addTextLayer": function (container, parameters) { 123 | var textLayer = this.addLayer(container, "text", parameters); 124 | if (typeof(parameters.text) !== 'undefined') { 125 | textLayer.stringValue = parameters.text; 126 | if (typeof(parameters.name) == 'undefined') { 127 | textLayer.name = parameters.text; 128 | } 129 | } 130 | if (typeof(parameters.fontSize) !== 'undefined') textLayer.fontSize = parameters.fontSize; 131 | textLayer.adjustFrameToFit(); 132 | return textLayer; 133 | }, 134 | "components": { 135 | "window": function (title, subtitle) { 136 | // create a wrapper window 137 | var wrapper = [[NSWindow alloc] init] 138 | [wrapper setToolbar:nil] 139 | [wrapper makeKeyWindow] 140 | [wrapper becomeKeyWindow] 141 | [wrapper setAnimationBehavior:NSWindowAnimationBehaviorNone] 142 | // I had problems with NSBorderlessWindowMask and setIsVisible solution. 143 | // [wrapper setIsVisible:true] 144 | // [wrapper becomeFirstResponder:true] 145 | // [wrapper orderFront:nil]; 146 | // [wrapper makeKeyAndOrderFront:self]; 147 | // [wrapper setStyleMask:NSBorderlessWindowMask] 148 | [wrapper setFrame:[[NSScreen mainScreen] frame] display: true] 149 | [wrapper setHasShadow:false] 150 | [wrapper setOpaque:false] 151 | [wrapper setBackgroundColor:NSColor.clearColor()] 152 | 153 | var x = ([[NSScreen mainScreen] frame].size.width / 2) - 320; 154 | var y = ([[NSScreen mainScreen] frame].size.height / 2) - 200; 155 | 156 | // create a body 157 | var body = [[NSView alloc] initWithFrame:NSMakeRect(500, 0, 640, 480)] 158 | body.setWantsLayer(true) 159 | 160 | // create a header 161 | var header = [[NSView alloc] initWithFrame:NSMakeRect(x, y+352, 600, 48)] 162 | header.setWantsLayer(true) 163 | 164 | // header fixer 165 | var headerfixer = [[NSView alloc] initWithFrame:NSMakeRect(0, 352, 600, 20)] 166 | headerfixer.setWantsLayer(true) 167 | var fixbg = [CALayer layer] 168 | [fixbg setBackgroundColor:CGColorCreateGenericRGB(255/255, 189/255, 0/255, 1.0)] 169 | [headerfixer setLayer:fixbg] 170 | 171 | // create a content area 172 | var content = [[NSView alloc] initWithFrame:NSMakeRect(x, y, 600, 400)] 173 | content.setWantsLayer(true) 174 | 175 | [content addSubview:headerfixer] 176 | 177 | // create a layer to content 178 | var contentLayer = [CALayer layer] 179 | [contentLayer setBackgroundColor:CGColorCreateGenericRGB(255/255, 255/255, 255/255, 1.0)] //RGB plus Alpha Channel 180 | [contentLayer setMasksToBounds: true] 181 | [contentLayer setCornerRadius: 6.0] 182 | [content setLayer:contentLayer] 183 | 184 | // content area shadow 185 | dropShadow = [[[NSShadow alloc] init] autorelease]; 186 | [dropShadow setShadowColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.4]]; 187 | [dropShadow setShadowBlurRadius:8]; 188 | [dropShadow setShadowOffset:NSMakeSize(0,0)]; 189 | [content setShadow: dropShadow]; 190 | 191 | // content append to body 192 | [body addSubview:content] 193 | 194 | // set body as content view of wrapper 195 | [wrapper setContentView:body]; 196 | 197 | // title add to header 198 | var titleField = Library.components.title(title,14,[NSColor blackColor],NSMakeRect(16, 5, 400, 30)); 199 | [titleField setAlphaValue:0.6] 200 | [header addSubview:titleField] 201 | 202 | // set background to header 203 | var headerBG = [CALayer layer] 204 | [headerBG setBackgroundColor:CGColorCreateGenericRGB(255/255, 189/255, 0/255, 1.0)] //RGB plus Alpha Channel 205 | [headerBG setMasksToBounds:true] 206 | [headerBG setCornerRadius:6.0] 207 | [header setClipsToBounds:true] 208 | [header setLayer:headerBG] 209 | 210 | // subtitle in window 211 | var subTitleField = Library.components.title(subtitle,22,[NSColor blackColor],NSMakeRect(x+25, y+300, 300, 30)); 212 | [[wrapper contentView] addSubview:subTitleField] 213 | 214 | // create a cancel button 215 | var cancelbuttonimage = [NSImage imageNamed:NSImageNameStopProgressTemplate]; 216 | // call custom function to build cancel button 217 | var cancelButton = Library.components.custombutton(cancelbuttonimage,NSMakeRect(556, 5, 36, 36)); 218 | [cancelButton setCOSJSTargetFunction:function(sender) { 219 | [wrapper orderOut:nil] 220 | [NSApp stopModal] 221 | }]; 222 | 223 | [header addSubview:cancelButton] 224 | 225 | // create a help button 226 | var helpbuttonimage = [NSImage imageNamed:NSImageNameBookmarksTemplate]; 227 | // call custom function to build help button 228 | var helpButton = Library.components.custombutton(helpbuttonimage,NSMakeRect(520, 5, 36, 36)); 229 | [helpButton setCOSJSTargetFunction:function(sender) { 230 | var url = [NSURL URLWithString:@"https://github.com/keremciu/sketch-use-fontawesome/blob/master/HELP.md"] 231 | if( ![[NSWorkspace sharedWorkspace] openURL:url] ){ 232 | sketchLog(@"Failed to open url:" + [url description]) 233 | } 234 | }]; 235 | [header addSubview:helpButton] 236 | 237 | [wrapper setAlphaValue:0.95] 238 | 239 | // push buttons view to wrapper 240 | [[wrapper contentView] addSubview:header]; 241 | 242 | return [wrapper, content]; 243 | }, 244 | "copy": function (copied,rect) { 245 | var copyButton = [[NSButton alloc] initWithFrame:rect] 246 | [copyButton setTitle:"Copy It"] 247 | [copyButton setBezelStyle:NSRoundedBezelStyle] 248 | [copyButton setCOSJSTargetFunction:function(sender) { 249 | Library.components.clipboard.set(copied); 250 | }]; 251 | [copyButton setAction:"callAction:"] 252 | return copyButton; 253 | }, 254 | "submit": function (title,rect) { 255 | var copyButton = [[NSButton alloc] initWithFrame:rect] 256 | [copyButton setTitle:title] 257 | [copyButton setAction:"callAction:"] 258 | return copyButton; 259 | }, 260 | "alert": function (title, text) { 261 | var app = [NSApplication sharedApplication]; 262 | [app displayDialog:text withTitle:title] 263 | }, 264 | "custombutton": function(image,rect) { 265 | customButton = [[NSButton alloc] initWithFrame:rect] 266 | customButtonCell = [customButton cell] 267 | [customButtonCell setImage:image] 268 | [customButtonCell setImageScaling:NSScaleProportionally] 269 | [customButton setTitle:nil] 270 | [customButton setBordered:false] 271 | [customButton setBezelStyle:NSCircularBezelStyle] 272 | [customButton setAlphaValue:0.8] 273 | [customButton setAction:"callAction:"] 274 | return customButton; 275 | }, 276 | "title": function(title,fontsize,color,rect) { 277 | var titlearea = [[NSTextField alloc] initWithFrame:rect] 278 | [titlearea setEditable:false] 279 | [titlearea setBordered:false] 280 | [titlearea setDrawsBackground:false] 281 | [titlearea setFont:[NSFont systemFontOfSize:fontsize]] 282 | [titlearea setTextColor:color]; 283 | [titlearea setStringValue:title] 284 | return titlearea; 285 | }, 286 | "clipboard": { 287 | init : function() 288 | { 289 | this.pasteBoard = NSPasteboard.generalPasteboard(); 290 | }, 291 | "set": function(text) { 292 | if( typeof text === 'undefined' ) return null; 293 | 294 | if( !this.pasteBoard ) 295 | this.init(); 296 | 297 | this.pasteBoard.declareTypes_owner( [ NSPasteboardTypeString ], null ); 298 | this.pasteBoard.setString_forType( text, NSPasteboardTypeString ); 299 | 300 | return true; 301 | } 302 | }, 303 | }, 304 | "util": { 305 | // Returns an MSImageData object for `image` (NSImage) 306 | "imageDataFromImage": function(container, image) { 307 | var imageCollection = [[container documentData] images]; 308 | return [imageCollection addImage:image convertColourspace:false]; 309 | }, 310 | 311 | // Returns an MSImageData object for `url` (NSURL) 312 | "imageDataFromURL": function(container, url) { 313 | var image = [[NSImage alloc] initWithContentsOfURL:url]; 314 | var imageData = undefined; 315 | if (typeof(image) !== 'undefined') { 316 | imageData = this.imageDataFromImage(container, image); 317 | } 318 | return imageData; 319 | }, 320 | 321 | // Centers `layer` at `point`. If point is not specified `layer` 322 | // is centered at the origin (0,0) 323 | "centerLayer": function(layer, point) { 324 | var center = (typeof(point) !== 'undefined') ? point : CGPointMake(0,0); 325 | var rect = [layer rect]; 326 | rect.origin.x = center.x-(CGRectGetWidth(rect)/2.0); 327 | rect.origin.y = center.y-(CGRectGetHeight(rect)/2.0); 328 | [layer setRect:rect]; 329 | }, 330 | 331 | // Sets the fill color for `layer` to `color` (MSColor) 332 | "setFillColor": function(layer, color) { 333 | var fill = [[[layer style] fills] addNewStylePart]; 334 | [fill setColor: color]; 335 | } 336 | } 337 | }; -------------------------------------------------------------------------------- /fontawesome.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "Font Awesomeasdfasdfs", 3 | "description" : "Its a nice plugin to use fontawesome in Sketch for developers and designers.", 4 | "version" : "1.0", 5 | "commands" : [ 6 | { 7 | "script" : "learn_icon_name.cocoascript", 8 | "handler" : "onRun", 9 | "shortcut" : "cmd ctrl u", 10 | "name" : "What is the icon's name?", 11 | "identifier" : "learn_icon_name" 12 | }, 13 | { 14 | "script" : "add_icon.cocoascript", 15 | "handler" : "onRun", 16 | "shortcut" : "cmd ctrl i", 17 | "name" : "Add an icon with name", 18 | "identifier" : "add_icon" 19 | }, 20 | { 21 | "script" : "add_icon_combobox.cocoascript", 22 | "handler" : "onRun", 23 | "shortcut" : "cmd ctrl c", 24 | "name" : "Add an icon with combobox", 25 | "identifier" : "add_icon_combobox" 26 | }, 27 | { 28 | "script" : "add_icon_radiolist.cocoascript", 29 | "handler" : "onRun", 30 | "shortcut" : "cmd ctrl l", 31 | "name" : "Add an icon with list", 32 | "identifier" : "add_icon_radiolist" 33 | } 34 | ], 35 | "menu": { 36 | "title" : "Font Awesome", 37 | "items": [ 38 | "learn_icon_name", 39 | "add_icon", 40 | "add_icon_combobox", 41 | "add_icon_radiolist" 42 | ], 43 | }, 44 | "identifier" : "com.keremciu.sketch.fontawesome", 45 | "author" : "Kerem Sevencan", 46 | "authorEmail" : "info@kerem.ws", 47 | } 48 | --------------------------------------------------------------------------------