Generate AI tags (#1273)
@ -8,7 +8,7 @@ const data = JSON.parse(fs.readFileSync(join(HOME_DIR, 'new/tags.json'), 'utf-8'
|
||||
|
||||
for (const [key, tags] of Object.entries(data)) {
|
||||
|
||||
const filename = join(HOME_DIR, `src/_icons/${key}.svg`), tagsInline = tags
|
||||
const filename = join(HOME_DIR, `icons/outline/${key}.svg`), tagsInline = tags
|
||||
.join(' ')
|
||||
.toLowerCase()
|
||||
.split(' ')
|
||||
@ -17,10 +17,10 @@ for (const [key, tags] of Object.entries(data)) {
|
||||
|
||||
if (key && tags.length) {
|
||||
let data = fs.readFileSync(filename).toString()
|
||||
data = data.replace(/(---[\s\S]+?---)/, function (m, headerContent) {
|
||||
data = data.replace(/(\<\!--[\s\S]+?-->)/, function (m, headerContent) {
|
||||
|
||||
headerContent = headerContent.replace(/tags: .*\n/, '')
|
||||
headerContent = headerContent.replace(/---/, `---\ntags: [${tagsInline}]`)
|
||||
headerContent = headerContent.replace(/\<\!--/, `<!--\ntags: [${tagsInline}]`)
|
||||
|
||||
return headerContent
|
||||
})
|
||||
|
36
ai.mjs
Normal file
@ -0,0 +1,36 @@
|
||||
import OpenAI from 'openai';
|
||||
import { getAllIcons } from './.build/helpers.mjs';
|
||||
import { writeFileSync } from 'fs';
|
||||
|
||||
const client = new OpenAI();
|
||||
|
||||
const allIcons = getAllIcons();
|
||||
|
||||
let withoutTags = [];
|
||||
for (const icon of allIcons.outline) {
|
||||
if (icon.tags.length == 0 && withoutTags.length < 30) {
|
||||
withoutTags.push(icon.name);
|
||||
}
|
||||
}
|
||||
|
||||
async function main() {
|
||||
const completion = await client.chat.completions.create({
|
||||
model: 'gpt-4o',
|
||||
messages: [{
|
||||
role: 'user',
|
||||
content: `generate few tags for icon which represent for each icon: ${withoutTags.join(', ')}. Tags should be one world, lowercase and separated by comma. Generate minimum 10 tags for each icon. Write as json. Use original key. Tag should be different than original key. Tags should be array of strings.`
|
||||
}],
|
||||
response_format: {
|
||||
type: 'json_object',
|
||||
}
|
||||
});
|
||||
|
||||
console.log(completion.choices[0].message.content);
|
||||
|
||||
writeFileSync('./new/tags.json', completion.choices[0].message.content);
|
||||
}
|
||||
|
||||
|
||||
if (withoutTags.length > 0) {
|
||||
main();
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, tweak, modify, electric, lightning, power, energy, zap, volt, charge]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f7fb"
|
||||
|
Before Width: | Height: | Size: 590 B After Width: | Height: | Size: 677 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, dismiss, terminate, abort, halt, cease, stop, reject, refuse, deny]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f7fc"
|
||||
|
Before Width: | Height: | Size: 641 B After Width: | Height: | Size: 726 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, verify, confirm, approve, validate, tick, accept, okay, affirm, correct]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f7fd"
|
||||
|
Before Width: | Height: | Size: 565 B After Width: | Height: | Size: 655 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, program, develop, script, software, cypher, encrypt, decode, compile, syntax]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f7fe"
|
||||
|
Before Width: | Height: | Size: 622 B After Width: | Height: | Size: 717 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, gear, mechanism, machinery, wheel, engine, operation, control, process, system]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f7ff"
|
||||
|
Before Width: | Height: | Size: 826 B After Width: | Height: | Size: 923 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, currency, finance, money, cash, funds, economy, bank, wealth, coin]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f800"
|
||||
|
Before Width: | Height: | Size: 657 B After Width: | Height: | Size: 742 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, decrease, lessen, reduce, lower, diminish, drop, fall, descend, deplete]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f801"
|
||||
|
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 703 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, alert, warn, caution, important, urgent, notice, attention, highlight, notify]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f802"
|
||||
|
Before Width: | Height: | Size: 606 B After Width: | Height: | Size: 702 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, love, affection, passion, romance, emotion, fondness, devotion, cherish, admire]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f803"
|
||||
|
Before Width: | Height: | Size: 674 B After Width: | Height: | Size: 772 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, subtract, reduce, remove, delete, lower, decrease, deduct, takeaway, less]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f804"
|
||||
|
Before Width: | Height: | Size: 582 B After Width: | Height: | Size: 674 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, break, halt, stop, temporary, wait, intermission, hold, suspend, interruption]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f805"
|
||||
|
Before Width: | Height: | Size: 606 B After Width: | Height: | Size: 702 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, attach, fix, secure, lock, hold, fasten, anchor, nail, clip]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f806"
|
||||
|
Before Width: | Height: | Size: 705 B After Width: | Height: | Size: 783 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, add, increase, expand, enlarge, inflate, grow, gain, boost, more]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f807"
|
||||
|
Before Width: | Height: | Size: 606 B After Width: | Height: | Size: 689 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, inquire, ask, query, probe, interrogate, wonder, puzzle, doubt, uncertain]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f808"
|
||||
|
Before Width: | Height: | Size: 661 B After Width: | Height: | Size: 753 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, find, explore, seek, look, discover, examine, investigate, probe, inspect]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f809"
|
||||
|
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 708 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, distribute, spread, transmit, broadcast, impart, exchange, pass, disseminate, convey]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f80a"
|
||||
|
Before Width: | Height: | Size: 617 B After Width: | Height: | Size: 720 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, favorite, highlight, feature, mark, promote, shine, emphasize, reward, special]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f80b"
|
||||
|
Before Width: | Height: | Size: 761 B After Width: | Height: | Size: 858 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, increase, raise, grow, ascend, elevate, boost, uplift, rise, amplify]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f80c"
|
||||
|
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 703 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, close, exit, delete, remove, cancel, eliminate, terminate, block, reject]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f80d"
|
||||
|
Before Width: | Height: | Size: 612 B After Width: | Height: | Size: 703 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [aviation, guidance, navigation, flight, monitor, manage, tower, signal, route, supervise]
|
||||
category: Map
|
||||
version: "2.25"
|
||||
unicode: "fb01"
|
||||
|
Before Width: | Height: | Size: 519 B After Width: | Height: | Size: 616 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [warning, muted, caution, inactive, silent, unalerted, disabled, quiet, off, dormant]
|
||||
category: System
|
||||
version: "2.33"
|
||||
unicode: "fc66"
|
||||
|
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 755 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [warning, caution, hex, notify, alert, danger, precaution, risk, crime, signal]
|
||||
version: "2.10"
|
||||
unicode: "f80e"
|
||||
category: System
|
||||
|
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 671 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [notification, muted, disable, quiet, silent, suppressed, inactive, off, halt, interrupted]
|
||||
category: System
|
||||
version: "2.33"
|
||||
unicode: "fc67"
|
||||
|
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 439 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [notification, prompt, hint, notify, remind, update, jingle, ping, beep, flash]
|
||||
version: "2.10"
|
||||
unicode: "f80f"
|
||||
category: System
|
||||
|
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 401 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [warning, muted, precaution, inactive, suppressed, silent, dormant, deactivated, off, disabled]
|
||||
category: System
|
||||
version: "2.33"
|
||||
unicode: "fc68"
|
||||
|
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 657 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [warning, attention, caution, inform, notify, square, alarm, signal, warn, alert]
|
||||
version: "2.10"
|
||||
unicode: "f810"
|
||||
category: System
|
||||
|
Before Width: | Height: | Size: 391 B After Width: | Height: | Size: 479 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [warning, notify, warn, caution, danger, message, inform, alarm, signal, square]
|
||||
version: "2.10"
|
||||
unicode: "f811"
|
||||
category: System
|
||||
|
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 497 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [arrange, organize, align, middle, bottom, balance, center, layout, adjust, format]
|
||||
category: Text
|
||||
version: "2.22"
|
||||
unicode: "facb"
|
||||
|
Before Width: | Height: | Size: 431 B After Width: | Height: | Size: 521 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [distribute, organize, align, stretch, center, balance, expand, even, layout, arrange]
|
||||
category: Text
|
||||
version: "2.22"
|
||||
unicode: "facc"
|
||||
|
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 523 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [balance, arrange, organize, top, center, align, layout, position, format, adjust]
|
||||
category: Text
|
||||
version: "2.22"
|
||||
unicode: "facd"
|
||||
|
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 519 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [layout, position, padding, design, interface, spacing, css, align, flex, grid]
|
||||
category: Text
|
||||
version: "2.22"
|
||||
unicode: "face"
|
||||
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 518 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [layout, position, padding, design, interface, spacing, css, align, flex, grid]
|
||||
category: Text
|
||||
version: "2.22"
|
||||
unicode: "facf"
|
||||
|
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 516 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [language, writing, text, script, culture, letters, font, arab, linguistics, communication]
|
||||
category: Text
|
||||
unicode: "ff2f"
|
||||
version: "3.8"
|
||||
|
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 584 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, return, reverse, double, path, symbol, interface, ui, gesture]
|
||||
version: "2.11"
|
||||
unicode: "f9ec"
|
||||
category: Arrows
|
||||
|
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 464 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [direction, bar, navigation, symbol, indicator, bi-directional, interface, ui, path, flow]
|
||||
category: Arrows
|
||||
version: "2.23"
|
||||
unicode: "fadd"
|
||||
|
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 501 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shape, direction, style, navigation, symbol, design, indicator, ui, interface, guide]
|
||||
category: Arrows
|
||||
version: "2.23"
|
||||
unicode: "fade"
|
||||
|
Before Width: | Height: | Size: 354 B After Width: | Height: | Size: 447 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, symbol, downward, arch, flow, guide, movement, path, down]
|
||||
version: "2.46"
|
||||
unicode: "fd86"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 432 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, symbol, downward, arch, flow, path, guide, interface, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd87"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 342 B After Width: | Height: | Size: 430 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [bend, direction, turn, left, symbol, path, navigation, interface, ui, route]
|
||||
version: "2.11"
|
||||
unicode: "f9ed"
|
||||
category: Arrows
|
||||
|
Before Width: | Height: | Size: 321 B After Width: | Height: | Size: 405 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [bend, direction, turn, right, symbol, path, navigation, interface, ui, route]
|
||||
version: "2.11"
|
||||
unicode: "f9ee"
|
||||
category: Arrows
|
||||
|
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 411 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, upward, advance, double, path, symbol, interface, ui, movement]
|
||||
version: "2.11"
|
||||
unicode: "f9ef"
|
||||
category: Arrows
|
||||
|
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 467 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, leftward, arch, symbol, interface, path, flow, guide, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd88"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 342 B After Width: | Height: | Size: 430 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, leftward, arch, symbol, interface, path, flow, guide, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd89"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 432 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, rightward, arch, symbol, interface, path, flow, guide, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd8a"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 342 B After Width: | Height: | Size: 431 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, rightward, arch, symbol, interface, path, flow, guide, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd8b"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 430 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, upward, arch, symbol, flow, guide, path, interface, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd8c"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 427 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [navigation, direction, upward, arch, symbol, flow, guide, path, interface, ui]
|
||||
version: "2.46"
|
||||
unicode: "fd8d"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 429 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [transfer, exchange, direction, vertical, upward, downward, flow, guide, ui, interface]
|
||||
unicode: "ffac"
|
||||
version: "3.12"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 455 B After Width: | Height: | Size: 549 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [transmission, gear, vehicle, automation, system, car, drive, mechanism, engage, control]
|
||||
category: Vehicles
|
||||
version: "2.35"
|
||||
unicode: "fc89"
|
||||
|
Before Width: | Height: | Size: 498 B After Width: | Height: | Size: 594 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [technology, process, efficiency, machine, control, system, software, robotics, engineering, industry]
|
||||
unicode: "fef8"
|
||||
version: "3.5"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 778 B After Width: | Height: | Size: 887 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [fruit, food, green, nutrition, healthy, ingredient, diet, vegetable, meal, snack]
|
||||
version: "2.46"
|
||||
unicode: "fd8e"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [symbol, character, typography, escape, code, text, programming, syntax, keyboard, punctuation]
|
||||
category: Math
|
||||
version: "2.21"
|
||||
unicode: "fab9"
|
||||
|
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 392 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, electronics, purchase, energy, charge, store, goods, buy, lightning]
|
||||
version: "2.28"
|
||||
unicode: "fb43"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 610 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, purchase, remove, cross, store, abandon, goods, buy, decision]
|
||||
version: "2.28"
|
||||
unicode: "fb44"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 566 B After Width: | Height: | Size: 652 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, confirm, purchase, approval, store, goods, buy, decision, success]
|
||||
version: "2.28"
|
||||
unicode: "fb45"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 516 B After Width: | Height: | Size: 606 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, programming, digital, purchase, store, goods, technology, buy, code]
|
||||
version: "2.28"
|
||||
unicode: "fb46"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 571 B After Width: | Height: | Size: 663 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, settings, configuration, gear, store, purchase, goods, buy, mechanism]
|
||||
version: "2.28"
|
||||
unicode: "fb47"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 845 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, sale, offer, purchase, store, goods, buy, voucher, bargain]
|
||||
version: "2.28"
|
||||
unicode: "fb48"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 568 B After Width: | Height: | Size: 651 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, money, currency, purchase, store, goods, finance, buy, cost]
|
||||
version: "2.28"
|
||||
unicode: "fb49"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 574 B After Width: | Height: | Size: 658 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shopping, cart, purchase, lower, store, goods, buy, drop, offload, inventory]
|
||||
version: "2.28"
|
||||
unicode: "fb4a"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 542 B After Width: | Height: | Size: 627 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [alert, notification, warning, caution, attention, danger, notice, error, urgent, emergency]
|
||||
version: "2.28"
|
||||
unicode: "fb4b"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 534 B After Width: | Height: | Size: 633 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [love, favorites, wishlist, affection, romance, adore, preferences, passion, cherish, devotion]
|
||||
version: "2.28"
|
||||
unicode: "fb4c"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 678 B After Width: | Height: | Size: 780 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [subtract, remove, deduct, decrease, reduce, lessen, takeaway, withdraw, decline, diminish]
|
||||
version: "2.28"
|
||||
unicode: "fb4d"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 606 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [stop, halt, break, interruption, delay, wait, suspend, cease, rest, hold]
|
||||
version: "2.28"
|
||||
unicode: "fb4e"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 614 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [attach, fix, fasten, stick, tack, secure, affix, anchor, bind, clasp]
|
||||
version: "2.28"
|
||||
unicode: "fb4f"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 630 B After Width: | Height: | Size: 707 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [add, increase, augment, expand, supplement, boost, enhance, enlarge, grow, magnify]
|
||||
version: "2.28"
|
||||
unicode: "fb50"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 624 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [inquire, ask, query, doubt, wonder, ponder, probe, investigate, interrogate, examine]
|
||||
version: "2.28"
|
||||
unicode: "fb51"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 684 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [find, explore, look, seek, discover, detect, locate, track, scout, probe]
|
||||
version: "2.28"
|
||||
unicode: "fb52"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 658 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [distribute, circulate, spread, disseminate, broadcast, divulge, reveal, partake, impart, pass]
|
||||
version: "2.28"
|
||||
unicode: "fb53"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 534 B After Width: | Height: | Size: 636 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [favorite, highlight, emphasize, promote, feature, showcase, priority, premier, foremost, select]
|
||||
version: "2.28"
|
||||
unicode: "fb54"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 767 B After Width: | Height: | Size: 871 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [ascend, rise, elevate, climb, increase, lift, soar, boost, advance, uplift]
|
||||
version: "2.28"
|
||||
unicode: "fb55"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 542 B After Width: | Height: | Size: 625 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [close, dismiss, cancel, terminate, end, reject, abort, eliminate, halt, stop]
|
||||
version: "2.28"
|
||||
unicode: "fb56"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 541 B After Width: | Height: | Size: 626 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [lightning, electric, power, shock, zap, charge, energy, surge, spark, flash]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f812"
|
||||
|
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 520 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [stop, end, terminate, close, reject, eliminate, annul, void, abolish, halt]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f813"
|
||||
|
Before Width: | Height: | Size: 478 B After Width: | Height: | Size: 561 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [confirm, verify, approve, acknowledge, validate, authenticate, certify, affirm, assure, ratify]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f814"
|
||||
|
Before Width: | Height: | Size: 464 B After Width: | Height: | Size: 567 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [program, script, develop, software, algorithm, compile, debug, cipher, encrypt, decode]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f815"
|
||||
|
Before Width: | Height: | Size: 467 B After Width: | Height: | Size: 562 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [settings, options, preferences, configuration, adjust, tweak, calibrate, modulate, fine-tune, customize]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f816"
|
||||
|
Before Width: | Height: | Size: 658 B After Width: | Height: | Size: 770 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [money, finance, currency, cash, wealth, income, revenue, funds, earnings, budget]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f817"
|
||||
|
Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 593 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [descend, drop, fall, lower, decrease, diminish, reduce, sink, plunge, decline]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f818"
|
||||
|
Before Width: | Height: | Size: 460 B After Width: | Height: | Size: 546 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [alert, warning, danger, notice, attention, critical, caution, emphasis, highlight, prominence]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f819"
|
||||
|
Before Width: | Height: | Size: 447 B After Width: | Height: | Size: 549 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [love, affection, passion, adoration, care, fondness, devotion, attachment, tenderness, warmth]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f81a"
|
||||
|
Before Width: | Height: | Size: 593 B After Width: | Height: | Size: 695 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [stop, halt, break, suspend, delay, interruption, wait, cease, rest, hold]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f81b"
|
||||
|
Before Width: | Height: | Size: 447 B After Width: | Height: | Size: 528 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [attach, secure, fix, fasten, anchor, tack, bind, affix, clasp, stick]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f81c"
|
||||
|
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 620 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [ask, inquire, query, investigate, probe, examine, doubt, wonder, ponder, interrogate]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f81d"
|
||||
|
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 599 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [find, look, seek, explore, detect, discover, locate, track, scout, investigate]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f81e"
|
||||
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 574 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [distribute, spread, circulate, divulge, broadcast, impart, reveal, pass, disseminate, partake]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f81f"
|
||||
|
Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 558 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [favorite, emphasize, highlight, promote, feature, showcase, priority, premier, foremost, select]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f820"
|
||||
|
Before Width: | Height: | Size: 681 B After Width: | Height: | Size: 785 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [ascend, rise, elevate, climb, boost, increase, uplift, soar, advance, lift]
|
||||
category: System
|
||||
version: "2.10"
|
||||
unicode: "f821"
|
||||
|
Before Width: | Height: | Size: 459 B After Width: | Height: | Size: 542 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [merge, mix, combine, fuse, integrate, unify, amalgamate, blend, harmonize, synthesize]
|
||||
category: Design
|
||||
unicode: "feb0"
|
||||
version: "3.1"
|
||||
|
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 501 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [shape, form, mass, clump, bulk, group, cluster, lump, patch, chunk]
|
||||
unicode: "feaf"
|
||||
version: "3.1"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 608 B After Width: | Height: | Size: 683 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [modify, adjust, change, revise, update, alter, customize, rework, tweak, enhance]
|
||||
category: Document
|
||||
version: "2.17"
|
||||
unicode: "fa5e"
|
||||
|
Before Width: | Height: | Size: 413 B After Width: | Height: | Size: 502 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [remove, delete, subtract, reduce, decrease, takeaway, eliminate, lessen, deduct, trim]
|
||||
category: Document
|
||||
version: "2.17"
|
||||
unicode: "fa5f"
|
||||
|
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 450 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [add, insert, increase, augment, expand, include, amplify, append, boost, enlarge]
|
||||
category: Document
|
||||
version: "2.17"
|
||||
unicode: "fa60"
|
||||
|
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 469 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [inquire, ask, query, puzzle, unclear, mystify, wonder, interrogate, probe, scrutinize]
|
||||
category: Document
|
||||
version: "2.17"
|
||||
unicode: "fa61"
|
||||
|
Before Width: | Height: | Size: 444 B After Width: | Height: | Size: 538 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [blast, explosion, bang, detonation, burst, erupt, shockwave, blowup, kaboom, boom]
|
||||
unicode: "fdbe"
|
||||
version: "3.0"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 513 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [add, bottom, increase, augment, expand, enclose, edge, underline, extend, boost]
|
||||
unicode: "fdbd"
|
||||
version: "3.0"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 605 B After Width: | Height: | Size: 693 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [apple, iphone, style, device, technology, interface, ios, smartphone, design, theme]
|
||||
version: "2.47"
|
||||
unicode: "fd98"
|
||||
-->
|
||||
|
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 455 B |
@ -1,4 +1,5 @@
|
||||
<!--
|
||||
tags: [curved, round, oval, smooth, rounded, arc, capsule, edge, contour, bend]
|
||||
category: Design
|
||||
version: "2.44"
|
||||
unicode: "fd62"
|
||||
|
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 398 B |