python-lucide 0.5.0__tar.gz → 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {python_lucide-0.5.0 → python_lucide-0.5.2}/PKG-INFO +1 -1
  2. python_lucide-0.5.2/pyproject.toml +183 -0
  3. python_lucide-0.5.0/pyproject.toml → python_lucide-0.5.2/pyproject.toml.orig +8 -3
  4. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/config.py +1 -1
  5. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/data/gemini-icon-descriptions.jsonl +72 -0
  6. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/data/lucide-icon-clusters.json +5016 -4671
  7. python_lucide-0.5.2/src/lucide/data/lucide-icons.db +0 -0
  8. python_lucide-0.5.0/src/lucide/data/lucide-icons.db +0 -0
  9. {python_lucide-0.5.0 → python_lucide-0.5.2}/README.md +0 -0
  10. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/__init__.py +0 -0
  11. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/build_clusters.py +0 -0
  12. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/build_search.py +0 -0
  13. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/cli.py +0 -0
  14. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/core.py +0 -0
  15. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/data/__init__.py +0 -0
  16. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/db.py +0 -0
  17. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/dev_utils.py +0 -0
  18. {python_lucide-0.5.0 → python_lucide-0.5.2}/src/lucide/search.py +0 -0
  19. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/__init__.py +0 -0
  20. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/build_clusters_test.py +0 -0
  21. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/build_search_test.py +0 -0
  22. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/cli_test.py +0 -0
  23. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/conftest.py +0 -0
  24. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/core_test.py +0 -0
  25. {python_lucide-0.5.0 → python_lucide-0.5.2}/tests/search_test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-lucide
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: A Python package for working with Lucide icons
5
5
  Keywords: lucide,icons,svg,sqlite
6
6
  Author: Mike Macpherson
@@ -0,0 +1,183 @@
1
+ [build-system]
2
+ build-backend = "uv_build"
3
+ requires = ["uv_build>=0.8.3,<0.13.0"]
4
+
5
+ [dependency-groups]
6
+ dev = [
7
+ "cairosvg>=2.7.0",
8
+ "fastembed>=0.4.0",
9
+ "hdbscan>=0.8.0",
10
+ "mypy-extensions>=1.0.0",
11
+ "mypy>=1.0.0",
12
+ "numba>=0.60",
13
+ "plotly>=5.0.0",
14
+ "pre-commit>=3.0.0",
15
+ "pydantic-ai-slim[google]>=1.0.0,<2",
16
+ "pytest-cov>=4.0.0",
17
+ "pytest>=7.0.0",
18
+ "ruff>=0.1.0",
19
+ "types-setuptools>=80.9.0.20250529",
20
+ "typing-extensions>=4.1.0",
21
+ "umap-learn>=0.5.0",
22
+ ]
23
+
24
+ [project]
25
+ classifiers = [
26
+ "Development Status :: 4 - Beta",
27
+ "Intended Audience :: Developers",
28
+ "License :: OSI Approved :: MIT License",
29
+ "Programming Language :: Python :: 3",
30
+ "Programming Language :: Python :: 3.10",
31
+ "Programming Language :: Python :: 3.11",
32
+ "Programming Language :: Python :: 3.12",
33
+ "Programming Language :: Python :: 3.13",
34
+ "Programming Language :: Python :: 3.14",
35
+ "Topic :: Software Development :: Libraries :: Python Modules",
36
+ ]
37
+ dependencies = []
38
+ description = "A Python package for working with Lucide icons"
39
+ keywords = [
40
+ "lucide",
41
+ "icons",
42
+ "svg",
43
+ "sqlite",
44
+ ]
45
+ name = "python-lucide"
46
+ readme = "README.md"
47
+ requires-python = ">=3.10"
48
+ version = "0.5.2"
49
+
50
+ [[project.authors]]
51
+ name = "Mike Macpherson"
52
+
53
+ [project.license]
54
+ text = "MIT"
55
+
56
+ [project.optional-dependencies]
57
+ search = [
58
+ "cairosvg>=2.7.0",
59
+ "fastembed>=0.4.0",
60
+ ]
61
+
62
+ [project.scripts]
63
+ check-lucide-version = "lucide.dev_utils:print_version_status"
64
+ lucide = "lucide.cli:main"
65
+ lucide-db = "lucide.cli:main_legacy_db"
66
+
67
+ [project.urls]
68
+ "Bug Tracker" = "https://github.com/mmacpherson/python-lucide/issues"
69
+ Homepage = "https://github.com/mmacpherson/python-lucide"
70
+ "Source Code" = "https://github.com/mmacpherson/python-lucide"
71
+
72
+ [tool.mypy]
73
+ check_untyped_defs = true
74
+ disallow_incomplete_defs = true
75
+ disallow_untyped_calls = false
76
+ disallow_untyped_decorators = true
77
+ disallow_untyped_defs = true
78
+ ignore_missing_imports = true
79
+ no_implicit_optional = true
80
+ python_version = "3.10"
81
+ show_column_numbers = true
82
+ show_error_context = true
83
+ strict_optional = true
84
+ warn_no_return = true
85
+ warn_redundant_casts = true
86
+ warn_return_any = true
87
+ warn_unreachable = true
88
+ warn_unused_configs = true
89
+ warn_unused_ignores = true
90
+
91
+ [[tool.mypy.overrides]]
92
+ check_untyped_defs = true
93
+ disallow_incomplete_defs = false
94
+ disallow_untyped_defs = false
95
+ module = "tests.*"
96
+
97
+ [tool.pytest.ini_options]
98
+ addopts = "--cov=lucide --cov-report=term-missing --cov-report=xml --cov-report=html"
99
+ pythonpath = ["src"]
100
+ testpaths = ["tests"]
101
+ xfail_strict = true
102
+
103
+ [tool.ruff]
104
+ line-length = 88
105
+ target-version = "py310"
106
+
107
+ [tool.ruff.format]
108
+ docstring-code-format = true
109
+ indent-style = "space"
110
+ line-ending = "lf"
111
+ quote-style = "double"
112
+
113
+ [tool.ruff.lint]
114
+ ignore = [
115
+ "D203",
116
+ "D213",
117
+ ]
118
+ select = [
119
+ "E",
120
+ "F",
121
+ "I",
122
+ "N",
123
+ "UP",
124
+ "B",
125
+ "C4",
126
+ "SIM",
127
+ "ARG",
128
+ "ERA",
129
+ "PL",
130
+ "RET",
131
+ "SLF",
132
+ "RUF",
133
+ "D",
134
+ ]
135
+ unfixable = [
136
+ "F401",
137
+ "F841",
138
+ ]
139
+
140
+ [tool.ruff.lint.isort]
141
+ known-first-party = ["lucide"]
142
+ section-order = [
143
+ "future",
144
+ "standard-library",
145
+ "third-party",
146
+ "first-party",
147
+ "local-folder",
148
+ ]
149
+
150
+ [tool.ruff.lint.per-file-ignores]
151
+ "**/__init__.py" = ["F401"]
152
+ "scripts/**/*.py" = [
153
+ "D",
154
+ "SLF001",
155
+ "PLR2004",
156
+ "PLR0915",
157
+ "PLC0415",
158
+ "ERA001",
159
+ "E741",
160
+ "C408",
161
+ ]
162
+ "tests/**/*.py" = [
163
+ "D",
164
+ "SLF001",
165
+ "PLR2004",
166
+ "ARG005",
167
+ ]
168
+
169
+ [tool.ruff.lint.pydocstyle]
170
+ convention = "google"
171
+
172
+ [tool.uv.build-backend]
173
+ module-name = "lucide"
174
+ source-exclude = ["src/lucide/data/lucide-search.db"]
175
+ source-include = [
176
+ "tests/**",
177
+ "src/lucide/data/lucide-icons.db",
178
+ ]
179
+ wheel-exclude = [
180
+ "lucide/data/lucide-search.db",
181
+ "lucide/data/gemini-icon-descriptions.jsonl",
182
+ "lucide/data/lucide-icon-clusters.json",
183
+ ]
@@ -1,6 +1,6 @@
1
1
  [build-system]
2
2
  build-backend = "uv_build"
3
- requires = ["uv_build>=0.8.3,<0.12.0"]
3
+ requires = ["uv_build>=0.8.3,<0.13.0"]
4
4
 
5
5
  [dependency-groups]
6
6
  dev = [
@@ -9,9 +9,14 @@ dev = [
9
9
  "hdbscan>=0.8.0",
10
10
  "mypy-extensions>=1.0.0",
11
11
  "mypy>=1.0.0",
12
+ # Floor keeps the resolver off ancient numba/llvmlite, which fail to build
13
+ # from source when numpy resolves above modern numba's cap.
14
+ "numba>=0.60",
12
15
  "plotly>=5.0.0",
13
16
  "pre-commit>=3.0.0",
14
- "pydantic-ai-slim[google]>=1.0.0",
17
+ # Cap below 2: pydantic-ai v2 removed Agent(output_retries=...), which
18
+ # build_clusters.py relies on. Lift the cap when migrating to the v2 API.
19
+ "pydantic-ai-slim[google]>=1.0.0,<2",
15
20
  "pytest-cov>=4.0.0",
16
21
  "pytest>=7.0.0",
17
22
  "ruff>=0.1.0",
@@ -41,7 +46,7 @@ license = {text = "MIT"}
41
46
  name = "python-lucide"
42
47
  readme = "README.md"
43
48
  requires-python = ">=3.10"
44
- version = "0.5.0"
49
+ version = "0.5.2"
45
50
 
46
51
  [project.optional-dependencies]
47
52
  search = ["cairosvg>=2.7.0", "fastembed>=0.4.0"]
@@ -6,7 +6,7 @@ This module contains default configuration values used throughout the package.
6
6
  from dataclasses import dataclass
7
7
 
8
8
  # Default Lucide tag to use when building the icon database
9
- DEFAULT_LUCIDE_TAG = "1.17.0"
9
+ DEFAULT_LUCIDE_TAG = "1.33.0"
10
10
 
11
11
  # Default size for the LRU cache used by lucide_icon function
12
12
  DEFAULT_ICON_CACHE_SIZE = 128
@@ -1731,3 +1731,75 @@
1731
1731
  {"name": "astroid", "description": "This icon depicts a stylized four-pointed star with smooth, curved edges, resembling a rounded diamond. It symbolizes abstract shapes, mathematical concepts, and perhaps the spark of artificial intelligence or innovation.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.17.0", "tags": ["star", "math", "shape", "curve", "sharp", "four-pointed", "hypocycloid", "ai", "artificial intelligence"], "categories": ["shapes", "math"], "timestamp": "2026-06-10T05:07:55.847698+00:00"}
1732
1732
  {"name": "heart-x", "description": "This icon depicts a heart shape with a large \"X\" superimposed on its right side. It visually represents the removal or cancellation of a liked or favored item, signifying rejection, dismissal, or the act of clearing a selection.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.17.0", "tags": ["unlike", "unfavorite", "remove", "reject", "dismiss", "delete", "clear"], "categories": ["social", "multimedia", "design", "shapes"], "timestamp": "2026-06-10T05:07:56.077791+00:00"}
1733
1733
  {"name": "waves-vertical", "description": "Three wavy vertical lines ascend, representing rising steam or heat. This icon conveys concepts of warmth, boiling, and the presence of vapor or smoke, suggesting a hot or steamy environment.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.17.0", "tags": ["steam", "warmth", "temperature", "burn", "hot", "boiling", "heat", "smoke", "vapor", "smell", "aroma", "sauna"], "categories": ["weather", "sustainability"], "timestamp": "2026-06-10T05:07:56.583232+00:00"}
1734
+ {"name": "banknote-check", "description": "This icon depicts a banknote with a checkmark. It represents successful financial transactions, verified payments, or the completion of a monetary task. It conveys a sense of approval, accuracy, and completion in financial contexts.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["banknote", "bill", "currency", "payment", "money", "finance", "document", "verification", "tick", "verified", "accepted", "done", "complete", "found", "paid", "task", "check", "success"], "categories": ["finance"], "timestamp": "2026-07-20T17:53:14.910658+00:00"}
1735
+ {"name": "list-sort-ascending", "description": "This icon visually depicts three horizontal lines of increasing length, stacked from shortest to longest. It represents the concept of ascending order, arranging items from smallest to largest, or a rising sequence.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["list", "order", "arrangement", "organization", "sequence", "ranking", "categories", "presentation", "filter", "sort", "ascending", "descending", "increasing", "decreasing", "rising", "falling"], "categories": ["text", "layout"], "timestamp": "2026-07-20T17:53:14.963694+00:00"}
1736
+ {"name": "pencil-sparkles", "description": "This icon visually depicts a pencil with subtle sparkles. It represents creativity, inspiration, and the magical touch of artistry in editing, writing, or design. It evokes a sense of enhanced creation and effortless ingenuity.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["edit", "ai", "tools", "smart", "create", "draw", "sketch", "draft", "writer", "writing", "stationery", "artist", "magic", "wizard", "magician"], "categories": ["design", "cursors", "tools", "text", "photography"], "timestamp": "2026-07-20T17:53:15.018806+00:00"}
1737
+ {"name": "ad", "description": "This icon visually represents a bordered rectangle containing the bold letters \"AD\". It symbolizes advertising, promotions, and paid content, often associated with marketing campaigns, monetization, and brand partnerships.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["advert", "affiliate", "brand", "campaign", "commercial", "marketing", "monetize", "paid", "partner", "promo", "sponsor"], "categories": ["multimedia", "notifications"], "timestamp": "2026-07-20T17:53:15.032154+00:00"}
1738
+ {"name": "phi", "description": "This icon visually represents the Greek letter Phi (Φ or φ). It symbolizes mathematical constants like the golden ratio, representing harmony and proportion, and concepts in physics such as magnetic flux. It evokes ideas of balance, flow, and fundamental scientific principles.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["math", "golden-ratio", "symbol", "greek", "letter", "typography", "constant", "flux", "magnetic-flux"], "categories": ["math", "science"], "timestamp": "2026-07-20T17:53:15.065751+00:00"}
1739
+ {"name": "clock-arrow-right", "description": "This icon visually represents a clock face with its second hand transformed into an arrow pointing right. It symbolizes the passage of time, moving forward, or a time-based action to be completed.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["time", "watch", "alarm", "range", "unassign"], "categories": ["time", "people", "arrows"], "timestamp": "2026-07-20T17:53:15.099878+00:00"}
1740
+ {"name": "circle-euro", "description": "This icon features the euro symbol (€) enclosed within a circle. It visually represents the European currency, symbolizing finance, economics, and transactions related to money and payments within the European context.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["symbol", "economy", "banking", "europe", "€", "euro", "currency", "money", "payment", "coin", "finance", "financial", "exchange"], "categories": ["shopping", "finance"], "timestamp": "2026-07-20T17:53:15.100276+00:00"}
1741
+ {"name": "paper-bag", "description": "This icon visually represents a simple, folded paper bag with a handle. It conveys concepts of takeout food, packaging, storage, and eco-friendly shopping, suggesting a convenient way to carry goods or leftovers.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "package", "lunch", "takeout", "eco-friendly", "kraft", "retail", "doggybag"], "categories": ["food-beverage", "shopping"], "timestamp": "2026-07-20T17:53:15.118516+00:00"}
1742
+ {"name": "database-minus", "description": "This icon depicts a cylindrical database symbol with a horizontal line underneath, signifying removal. It represents actions like deleting data, reducing storage, or subtracting from a dataset, conveying a sense of data management and reduction.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "memory", "bytes", "server", "minus", "remove", "delete", "reduce"], "categories": ["devices", "development"], "timestamp": "2026-07-20T17:53:15.119427+00:00"}
1743
+ {"name": "database-arrow-down", "description": "This icon depicts a stack of database cylinders with an arrow pointing downwards from the lowest cylinder. It represents the action of downloading or exporting data from storage, signifying backup, retrieval, or data transfer operations.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "memory", "bytes", "server", "export", "download", "backup", "pull", "downsize"], "categories": ["devices", "development"], "timestamp": "2026-07-20T17:53:15.154519+00:00"}
1744
+ {"name": "database-check", "description": "This icon visually represents a database cylinder with a checkmark beside it. It signifies successful data storage, verification, confirmation, or completion of a database operation, conveying a sense of reliability and achieved validation.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "memory", "bytes", "server", "check", "success", "valid", "verified", "confirmed", "complete"], "categories": ["devices", "development"], "timestamp": "2026-07-20T17:53:15.167795+00:00"}
1745
+ {"name": "database-x", "description": "This icon depicts a database cylinder with a prominent \"x\" mark overlaid. It represents a corrupted, invalid, or inaccessible database, signifying an error, failure, or the act of denying or removing access to stored information.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "memory", "bytes", "server", "x", "error", "failed", "invalid", "rejected", "denied", "clear", "remove", "disconnect"], "categories": ["devices", "development"], "timestamp": "2026-07-20T17:53:15.168865+00:00"}
1746
+ {"name": "eye-dashed", "description": "This icon visually represents an eye with a dashed outline, suggesting something obscured or partially visible. It evokes concepts of hiddenness, invisibility, or a protected view, hinting at concealed information or the act of masking something from sight.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["view", "watch", "see", "hide", "conceal", "mask", "hidden", "invisible", "visibility", "vision"], "categories": ["accessibility", "photography", "design", "security"], "timestamp": "2026-07-20T17:53:15.200901+00:00"}
1747
+ {"name": "podium", "description": "This icon depicts a three-tiered podium with the number \"1\" prominently displayed above the highest step. It symbolizes victory, achievement, and recognition of top rankings in competitions, representing success and the celebration of winners.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["award", "stage", "winner", "celebration", "performance", "medal", "success", "achievement", "highlight", "ranking", "winning", "place", "placing", "leaderboard", "first", "second", "third", "gold", "silver", "bronze"], "categories": ["sports", "gaming"], "timestamp": "2026-07-20T17:53:15.202102+00:00"}
1748
+ {"name": "database-arrow-up", "description": "This icon depicts a stack of database cylinders with an upward-pointing arrow emerging from them. It visually represents the action of uploading, backing up, or importing data from a storage source, signifying data transfer and data augmentation.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "memory", "bytes", "server", "import", "upload", "backup", "push", "upscale"], "categories": ["devices", "development"], "timestamp": "2026-07-20T17:53:15.223015+00:00"}
1749
+ {"name": "clock-arrow-left", "description": "This icon visually represents a clock face with an arrow pointing counter-clockwise. It symbolizes the concept of time moving backward, or a rewind action. It can also suggest returning to a previous state or a reset of time.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["time", "watch", "alarm", "assign", "range"], "categories": ["time"], "timestamp": "2026-07-20T17:53:15.235044+00:00"}
1750
+ {"name": "database-plus", "description": "This icon depicts a stacked database cylinder with a plus symbol. It represents the act of adding new data or expanding storage capacity, signifying creation and new entries for a server or memory system.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["storage", "memory", "bytes", "server", "plus", "add", "create", "insert", "new", "expand"], "categories": ["devices", "development"], "timestamp": "2026-07-20T17:53:15.235119+00:00"}
1751
+ {"name": "play-off", "description": "This icon depicts a play button with a diagonal line through it. It visually signifies that playback is off, disabled, or forbidden. It represents a state of being unable to start or run an audio or video function.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["audio", "video", "music", "start", "run", "off", "disabled", "blocked", "forbidden"], "categories": ["multimedia"], "timestamp": "2026-07-20T17:53:15.253653+00:00"}
1752
+ {"name": "bone-fracture", "description": "This icon visually represents a fractured bone, depicted as two distinct pieces with radiating lines suggesting impact or breakage. It signifies injury, trauma, and the concept of a broken bone, commonly associated with medical contexts, orthopedics, and veterinary care.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["bone", "fracture", "injury", "orthopedic", "medical", "anatomy", "skeletal", "broken", "xray", "trauma", "health", "vet", "veterinary", "crack", "break", "damage"], "categories": ["medical", "animals"], "timestamp": "2026-07-20T17:53:15.255641+00:00"}
1753
+ {"name": "list-sort-descending", "description": "This icon shows three horizontal lines of decreasing length, stacked vertically. It represents descending order, filtering, or arranging content from largest to smallest. It signifies a structured decrease in size or rank.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["list", "order", "arrangement", "organization", "sequence", "ranking", "categories", "presentation", "filter", "sort", "ascending", "descending", "increasing", "decreasing", "rising", "falling"], "categories": ["text", "layout"], "timestamp": "2026-07-20T17:53:15.422187+00:00"}
1754
+ {"name": "star-minus", "description": "This icon depicts a stylized star with a minus sign attached to its lower right. It represents the action of removing a favorite item, deselecting a rating, or reducing a score. It signifies taking away from a positive or valued element.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["bookmark", "favorite", "like", "review", "rating", "minus", "remove", "deselect", "star"], "categories": ["account", "social", "shapes", "multimedia", "weather", "emoji", "gaming"], "timestamp": "2026-07-20T17:53:15.796047+00:00"}
1755
+ {"name": "scan-box", "description": "This icon visually depicts a 3D cube framed by corner brackets, suggesting a scanning or capture process. It represents augmented reality, object detection, and spatial computing, symbolizing the identification, mapping, and recognition of objects in three-dimensional space.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["ar", "augmented reality", "3d", "object detection", "object recognition", "tracking", "spatial computing", "capture", "cube", "bounding box", "camera", "frame", "shape", "boundary", "lidar", "depth", "scanning", "mapping", "placement"], "categories": ["design", "devices", "shopping", "gaming"], "timestamp": "2026-07-20T17:53:15.813023+00:00"}
1756
+ {"name": "save-pen", "description": "This icon depicts a document or file being edited. It represents the action of modifying, updating, or saving changes to text or data. The imagery evokes concepts of writing, editing, and the finalization of content.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["floppy disk", "directory", "rename"], "categories": ["text", "files"], "timestamp": "2026-07-20T17:53:15.829837+00:00"}
1757
+ {"name": "save-check", "description": "This icon depicts a document with a checkmark, symbolizing a successful save or confirmation. It represents the action of storing information, indicating completion, validation, or that data has been securely recorded. It conveys a sense of accomplishment and finality.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["save", "save-check", "floppy-disk", "saved", "check", "save-success"], "categories": ["text", "files", "development"], "timestamp": "2026-07-20T17:53:15.832582+00:00"}
1758
+ {"name": "server-plus", "description": "This icon depicts two stacked server racks with a plus symbol overlaid on the right. It represents adding or creating new server resources, symbolizing expansion, growth, and the addition of new components to a computing or storage system.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["add", "create", "new", "cloud", "storage", "computing"], "categories": ["development", "devices"], "timestamp": "2026-07-20T17:53:15.881080+00:00"}
1759
+ {"name": "star-check", "description": "This icon depicts a stylized star with a checkmark integrated into its lower right corner. It represents completion, validation, or a positive affirmation of a favorite item, rating, or a successfully bookmarked selection.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["bookmark", "favorite", "like", "review", "rating", "check", "star"], "categories": ["account", "social", "shapes", "multimedia", "weather", "emoji", "gaming"], "timestamp": "2026-07-20T17:53:15.930729+00:00"}
1760
+ {"name": "tag-plus", "description": "This icon visually represents a tag or label with a plus sign, suggesting the addition of a new item. It conveys concepts of creating, marking, or labeling something, often indicating a new addition or a way to categorize.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["label", "badge", "ticket", "mark", "new", "add", "create", "+"], "categories": ["account"], "timestamp": "2026-07-20T17:53:15.965525+00:00"}
1761
+ {"name": "webcam-off", "description": "This icon depicts a webcam with a diagonal line through it, indicating it is disabled or not functioning. It represents the concept of privacy, the absence of visual recording, or a device being turned off and unavailable for video transmission.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["camera", "security"], "categories": ["connectivity", "devices", "communication"], "timestamp": "2026-07-20T17:53:15.982681+00:00"}
1762
+ {"name": "star-x", "description": "This icon features a five-pointed star with an \"X\" symbol superimposed on its right side. It signifies the removal or cancellation of a favorite, a rejected rating, or the unmarking of something previously designated as special.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["mark", "symbol", "shape", "vector", "design", "graphic", "bookmark", "favorite", "like", "review", "rating", "x", "cancel", "reject", "star"], "categories": ["account", "social", "shapes", "multimedia", "weather", "emoji", "gaming"], "timestamp": "2026-07-20T17:53:15.985835+00:00"}
1763
+ {"name": "save-plus", "description": "This icon visually combines a document or file symbol with a plus sign. It represents the action of saving new content, adding a file, creating a document, or updating existing information with a new version or entry.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["floppy disk", "save", "plus", "add", "update", "create"], "categories": ["text", "files"], "timestamp": "2026-07-20T17:53:15.999587+00:00"}
1764
+ {"name": "summary", "description": "The icon visually represents a stack of horizontal lines, suggesting text or data, with an arrow pointing outwards from the right. It signifies a concise overview, abstract, or condensed version of information, implying summarization and extraction of key points.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["brief", "abstract", "synopsis", "report", "digest", "outline", "recap", "condensation", "summary", "ai", "text", "overview"], "categories": ["text"], "timestamp": "2026-07-20T17:53:16.017688+00:00"}
1765
+ {"name": "wrench-off", "description": "This icon depicts a wrench crossed out by a diagonal line, symbolizing the deactivation or unavailability of tools, maintenance, or settings. It represents a state of being off, disabled, or not in service, suggesting a pause in work or a feature that is currently inactive.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["account", "settings", "spanner", "diy", "toolbox", "build", "construction", "off", "service", "maintenance", "disabled"], "categories": ["account", "development", "tools"], "timestamp": "2026-07-20T17:53:16.068219+00:00"}
1766
+ {"name": "tag-x", "description": "This icon visually represents a tag or label with an \"X\" mark overlaid. It signifies actions like removing, deleting, or canceling a tag, label, or item. It conveys a sense of dismissal or negation related to identification.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["label", "badge", "ticket", "mark", "x", "delete", "remove"], "categories": ["account"], "timestamp": "2026-07-20T17:53:16.071366+00:00"}
1767
+ {"name": "user-round-arrow-left", "description": "This icon depicts a stylized human figure with an arrow pointing inwards towards it. It represents concepts like receiving, assignment, or a return to self. It can signify an incoming item or action directed towards a person or profile.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["person", "assign", "move", "give", "setup", "self", "me", "myself", "profile", "avatar", "incoming", "recipient", "assignee", "inbound"], "categories": ["account", "people", "arrows"], "timestamp": "2026-07-20T17:53:16.086902+00:00"}
1768
+ {"name": "star-plus", "description": "This icon visually represents a star outline with a plus symbol integrated into its lower right corner. It signifies adding a favorite, bookmarking an item, expressing a liking, or enhancing a rating. It also conveys the concept of joining or increasing something positive.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.25.0", "tags": ["bookmark", "favorite", "like", "review", "rating", "plus", "add", "join", "star"], "categories": ["account", "social", "shapes", "multimedia", "weather", "emoji", "gaming"], "timestamp": "2026-07-20T17:53:16.103103+00:00"}
1769
+ {"name": "layer-arrow-up", "description": "This icon depicts an upward-pointing arrow emerging from a shallow, open box. It symbolizes concepts of raising, lifting, promoting, and advancing elements, suggesting an increase in elevation or importance within a layered or stacked arrangement.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["move forward", "forward", "raise", "lift", "promote", "advance", "step forward", "reorder", "arrange", "stack", "stacking", "z-index", "depth", "graphics", "design"], "categories": ["design", "layout"], "timestamp": "2026-08-23T12:51:05.895198+00:00"}
1770
+ {"name": "face-neutral", "description": "This icon depicts a simple, circular face with two small dots for eyes and a straight horizontal line for a mouth. It represents a lack of strong emotion, conveying neutrality, indifference, or a blank stare, often used to suggest a deadpan or unexpressive state.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["emoji", "neutral", "emotion", "meh", "blank stare", "social masking", "irritation", "concern", "deadpan"], "categories": ["emoji"], "timestamp": "2026-08-23T12:51:05.967437+00:00"}
1771
+ {"name": "face-slightly-smiling", "description": "This icon visually depicts a simple, circular face with two dots for eyes and a gently curved line for a mouth, suggesting a subtle smile. It conveys feelings of mild happiness, contentment, or friendly approval, often with a touch of gentle humor or even sarcasm.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["smile", "happy", "happiness", "good", "positive", "friendly", "patronizing", "passive aggressive", "ironic", "emoji", "emotion"], "categories": ["emoji", "account"], "timestamp": "2026-08-23T12:51:05.968818+00:00"}
1772
+ {"name": "layers-arrow-down", "description": "This icon visually represents stacked layers with a downward-pointing arrow. It signifies moving elements to the back, lowering their position in a stack, or arranging them in a layered composition. It conveys actions of reordering, de-emphasis, or sending items to a background.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["send to back", "send backward", "back", "background", "bottom", "bottommost", "lower", "demote", "behind", "reorder", "arrange", "stack", "stacking", "z-index", "depth", "graphics", "design"], "categories": ["design", "layout"], "timestamp": "2026-08-23T12:51:05.969625+00:00"}
1773
+ {"name": "layers-arrow-up", "description": "This icon visually represents stacked layers with an upward-pointing arrow emerging from the top. It symbolizes bringing elements to the front, raising them to a higher position, or promoting them within a layered structure, indicating an upward movement or elevation in design.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["bring to front", "bring forward", "front", "foreground", "top", "topmost", "raise", "lift", "promote", "reorder", "arrange", "stack", "stacking", "z-index", "depth", "graphics", "design"], "categories": ["design", "layout", "arrows"], "timestamp": "2026-08-23T12:51:05.969967+00:00"}
1774
+ {"name": "layout-freeform", "description": "This icon shows three unaligned, rounded squares. It represents freeform arrangement, absolute positioning, or scattered blocks, suggesting a flexible or unconstrained layout where elements can be placed anywhere on a canvas.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["layout", "freeform", "free", "absolute", "position", "auto layout", "unaligned", "scattered", "arrange", "blocks", "canvas", "frame"], "categories": ["design", "layout"], "timestamp": "2026-08-23T12:51:05.978073+00:00"}
1775
+ {"name": "angle", "description": "This icon visually represents a corner or an angle formed by two perpendicular lines, with a curved arc indicating measurement. It symbolizes geometric concepts, precision, measurement, and mathematical calculations, often associated with drafting, design, and orientation.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["angle", "degree", "corner", "geometry", "measure", "math", "rotate", "vertex", "slope", "protractor", "measurement", "dimension", "arc", "drafting", "cad"], "categories": ["math", "design"], "timestamp": "2026-08-23T12:51:05.979766+00:00"}
1776
+ {"name": "broom", "description": "This icon visually depicts a simple broom, characterized by its bristled head and long handle. It symbolizes cleaning, tidiness, and the removal of dust or debris. The image can also evoke a sense of magic or Halloween due to the iconic association of brooms with witches.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["broomstick", "brush", "sweep", "sweeping", "floor", "cleaning", "housekeeping", "chores", "tidy", "spotless", "dust", "debris", "bristles", "handle", "janitor", "maintenance", "witch", "halloween"], "categories": ["tools", "home", "gaming"], "timestamp": "2026-08-23T12:51:05.981908+00:00"}
1777
+ {"name": "face-slightly-frowning", "description": "This icon depicts a simple circular face with two dot eyes and a downward-curving line for a mouth, indicating a slight frown. It represents mild negative emotions such as sadness, concern, or disappointment, conveying a subtle sense of displeasure or unease.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["emoji", "bad", "sadness", "emotion", "concern", "disappointment"], "categories": ["emoji", "account"], "timestamp": "2026-08-23T12:51:05.992682+00:00"}
1778
+ {"name": "face-expressionless", "description": "A simple circular face with two horizontal lines for eyes and a single horizontal line for a mouth. It conveys a lack of emotion, neutrality, or mild annoyance and frustration.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["nuisance", "annoyed", "annoyance", "frustration", "emoji", "emotion"], "categories": ["emoji"], "timestamp": "2026-08-23T12:51:06.003535+00:00"}
1779
+ {"name": "audio-lines-x", "description": "This icon visually represents a sound waveform with a prominent \"X\" overlay. It signifies the absence or cancellation of audio, indicating muting, silence, or a disabled sound function, conveying concepts of stopping, removal, or unavailability.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["sound", "noise", "mute", "silence", "disabled", "cancel", "remove", "unavailable", "listen", "hearing", "equalizer", "equaliser", "hertz", "frequency", "wavelength", "vibrate", "sine", "waveform", "synthesizer", "synthesiser", "levels", "track", "music", "playback", "radio", "broadcast", "airwaves", "voice", "vocals", "singer", "song"], "categories": ["multimedia", "communication"], "timestamp": "2026-08-23T12:51:06.015021+00:00"}
1780
+ {"name": "face-slightly-smiling-plus", "description": "This icon depicts a simple smiley face enclosed in a circle. A plus sign is positioned above and to the right of the face. It represents positive sentiment, happiness, agreement, or the addition of a good reaction.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["smile", "happy", "good", "react", "reaction", "emoji", "add", "emotion"], "categories": ["emoji", "social", "notifications", "communication"], "timestamp": "2026-08-23T12:51:06.016383+00:00"}
1781
+ {"name": "car-battery", "description": "This icon depicts a car battery with distinct positive and negative terminals. It symbolizes energy storage, power, electrical charge, and the essential component for vehicle operation and transportation. It represents the concept of readiness and power for vehicles.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["battery", "automobile", "powercell", "electric", "power", "electricity", "energy", "accumulator", "charge", "transport", "vehicle", "car"], "categories": ["connectivity", "transportation"], "timestamp": "2026-08-23T12:51:06.017108+00:00"}
1782
+ {"name": "face-grinning", "description": "This icon depicts a simple, round face with two dots for eyes and a wide, open-mouthed grin. It represents extreme happiness, joy, laughter, and immense pleasure, conveying a sense of good cheer and lighthearted amusement.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["happy", "happiness", "good", "laugh", "broad smile", "pleasure", "good cheer", "humour", "funny", "emoji", "emotion"], "categories": ["emoji"], "timestamp": "2026-08-23T12:51:06.038578+00:00"}
1783
+ {"name": "face-angry", "description": "This icon depicts a simple, circular face with downward-sloping eyebrows and a frowning mouth. It visually represents strong negative emotions such as anger, rage, fury, irritation, and disgust, conveying a feeling of displeasure or resentment.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["anger", "rage", "fury", "resentment", "irritation", "disgust", "emoji", "emotion"], "categories": ["emoji"], "timestamp": "2026-08-23T12:51:06.057422+00:00"}
1784
+ {"name": "audio-lines-off", "description": "This icon visually represents a sound wave, indicated by vertical lines of varying lengths, intersected by a diagonal line. It symbolizes the concept of audio being turned off, muted, or silenced, signifying a lack of sound or a disabled audio function.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["audio", "sound", "noise", "mute", "silence", "off", "disabled", "inactive", "listen", "hearing", "equalizer", "equaliser", "hertz", "frequency", "wavelength", "vibrate", "sine", "waveform", "synthesizer", "synthesiser", "levels", "track", "music", "playback", "radio", "broadcast", "airwaves", "voice", "vocals", "singer", "song"], "categories": ["multimedia", "communication"], "timestamp": "2026-08-23T12:51:06.080228+00:00"}
1785
+ {"name": "list-clock", "description": "This icon visually represents a list of items with a clock attached. It symbolizes tracking time, managing schedules, or reviewing recent activities and updates. It conveys concepts of history, logs, and auditing processes.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["history", "log", "clock", "time", "recent", "updated", "revision", "activity", "timestamp", "audit", "list"], "categories": ["text", "time", "notifications"], "timestamp": "2026-08-23T12:51:06.081988+00:00"}
1786
+ {"name": "eject", "description": "This icon visually depicts a triangle pointing upwards, resting on a horizontal rectangle. It represents the action of ejecting or removing media, like a disc from a drive, symbolizing extraction and unmounting.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["disc", "drive", "dvd", "blu-ray", "cd", "media", "optical", "optical drive", "removable media", "storage", "tray", "unmount", "usb"], "categories": ["devices", "files", "multimedia"], "timestamp": "2026-08-23T12:51:06.093914+00:00"}
1787
+ {"name": "broom-sparkles", "description": "This icon shows a broom, with its bristles angled upwards, surrounded by four small, bright sparkles. It represents magical cleaning, effortless tidiness, and a sense of pristine, spotless results achieved through a touch of enchantment or smart automation.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["broomstick", "brush", "sweep", "sweeping", "floor", "cleaning", "ai", "magic", "sparkle", "smart", "automation", "housekeeping", "chores", "tidy", "spotless", "pristine", "dust", "debris", "bristles", "handle", "janitor", "maintenance", "witch", "halloween"], "categories": ["tools", "home", "gaming"], "timestamp": "2026-08-23T12:51:06.141357+00:00"}
1788
+ {"name": "layer-arrow-down", "description": "An arrow points downward from within an open, angled shape, resembling a downward-facing chevron or a flattened box. This icon represents moving an element backward, lowering its position, or decreasing its depth within a layered composition or stack. It conveys actions like demotion or reordering.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["move back", "backward", "lower", "demote", "step back", "behind", "reorder", "arrange", "layer", "layers", "stack", "stacking", "z-index", "depth", "graphics", "design"], "categories": ["design", "layout"], "timestamp": "2026-08-23T12:51:06.197090+00:00"}
1789
+ {"name": "mic-audio-lines", "description": "This icon features a stylized microphone with emanating audio lines, representing sound waves and broadcast signals. It symbolizes voice recording, audio streaming, and the act of speaking or communicating through sound.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["podcast", "audio", "waveform", "sound waves", "microphone", "talk", "voice", "speech", "stream", "recording", "transcription", "dictation", "voice assistant", "noise cancellation", "sound processing"], "categories": ["devices", "communication", "multimedia"], "timestamp": "2026-08-23T12:51:06.615840+00:00"}
1790
+ {"name": "mail-badge", "description": "This icon shows an open envelope with a seal or badge attached, suggesting a letter or message that has been officially certified or verified. It represents secure communication, official correspondence, or a validated delivery.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["email", "message", "letter", "certified", "registered", "seal", "stamp", "verified", "envelope", "rosette", "signed", "official", "delivery"], "categories": ["mail", "communication", "security"], "timestamp": "2026-08-23T12:51:06.626667+00:00"}
1791
+ {"name": "shield-lock", "description": "This icon visually combines a shield with a padlock, symbolizing robust security and protection. It represents concepts of safety, safeguarding sensitive information, and ensuring privacy through secure access or encrypted data.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["antivirus", "authentication", "authorization", "credentials", "cybersecurity", "data protection", "defense", "encryption", "guard", "login", "password", "privacy", "safeguard", "ssl", "tls", "two-factor authentication", "verification", "vpn"], "categories": ["security"], "timestamp": "2026-08-23T12:51:06.638313+00:00"}
1792
+ {"name": "square-off", "description": "This icon visually depicts a square with a diagonal line crossing through it. It symbolizes negation, unavailability, or being turned off. The crossed-out square conveys a sense of prohibition, cancellation, or an inactive state.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["/", "not", "slash", "off", "disabled", "inactive", "cancel", "none", "block", "forbidden", "unavailable", "stopped", "checkbox", "unchecked", "toggle", "negation", "form", "ui"], "categories": ["shapes", "design"], "timestamp": "2026-08-23T12:51:06.695558+00:00"}
1793
+ {"name": "mic-signal", "description": "This icon visually represents a microphone with radiating signal waves, symbolizing audio transmission and broadcasting. It conveys concepts of voice, speech, and wireless communication, such as podcasts, live streaming, or radio waves.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["podcast", "audio", "broadcast", "signal", "wireless", "radio", "airwaves", "microphone", "talk", "voice", "speech", "stream", "live", "voice chat", "push to talk", "transmission"], "categories": ["devices", "communication", "connectivity", "multimedia"], "timestamp": "2026-08-23T12:51:06.718902+00:00"}
1794
+ {"name": "mop", "description": "This icon visually represents a mop with a rounded head and a long handle. It symbolizes cleaning, tidying, and domestic chores, evoking a sense of hygiene and a pristine, spotless environment. It also conveys actions like sweeping, scrubbing, and washing floors.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["cleaning", "sweeping", "scrubbing", "housekeeping", "hygiene", "sanitation", "chores", "swab", "tidy", "floor", "janitor", "maintenance", "wash", "wipe", "spotless", "pristine", "disinfect"], "categories": ["home", "tools"], "timestamp": "2026-08-23T12:51:06.741338+00:00"}
1795
+ {"name": "rotate-ccw-clock", "description": "The icon shows a clock face with hands pointing roughly to the 10 and 2 o'clock positions. A curved arrow, forming a counter-clockwise loop, originates from the clock's outline and points back towards the left. It represents reversing time, going back to a previous state, or undoing an action.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["history", "time", "redo", "undo", "rewind", "timeline", "version", "time machine", "backup", "ccw"], "categories": ["arrows", "time"], "timestamp": "2026-08-23T12:51:06.753404+00:00"}
1796
+ {"name": "square-dimensions", "description": "This icon depicts a square with outward-pointing corner brackets, visually representing the concept of defining or measuring dimensions. It symbolizes setting size, adjusting proportions, and defining boundaries or scope.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["ratio", "size", "width", "height", "resize", "scale", "frame", "proportions", "aspect", "bounds", "measurements", "canvas"], "categories": ["design", "layout"], "timestamp": "2026-08-23T12:51:06.779845+00:00"}
1797
+ {"name": "square-text", "description": "This icon visually represents a square containing three horizontal lines, suggesting text or content. It evokes concepts of writing, documentation, a block of text, or a structured piece of information. It signifies organized data or editable content within a defined space.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["text", "paragraph", "content", "note", "document", "body", "copy", "article", "square", "container", "block", "card", "placeholder", "log", "page", "paper", "sheet", "list", "script", "code", "editor"], "categories": ["text", "shapes", "development"], "timestamp": "2026-08-23T12:51:06.807214+00:00"}
1798
+ {"name": "usb-c-port", "description": "This icon visually represents the symmetrical, oval-shaped port of a USB-C connector. It symbolizes universal connectivity, modern data transfer, and the ability to input or output information seamlessly between devices.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["universal", "serial", "bus", "controller", "connector", "interface", "socket", "plug", "slot", "data", "input", "output"], "categories": ["devices", "multimedia", "home", "gaming"], "timestamp": "2026-08-23T12:51:06.839507+00:00"}
1799
+ {"name": "mosque", "description": "This icon visually depicts a stylized mosque, featuring a prominent dome and a tall minaret topped with a crescent moon. It represents Islam, prayer, worship, and sacred spaces, evoking feelings of faith, community, and spiritual devotion.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["mosque", "masjid", "islam", "muslim", "ramadan", "eid", "prayer", "worship", "building", "minaret", "dome", "architecture", "faith", "religion", "holy", "sacred", "landmark", "community", "spiritual", "tourism", "map", "heritage"], "categories": ["buildings", "navigation", "travel"], "timestamp": "2026-08-23T12:51:06.849523+00:00"}
1800
+ {"name": "scan-square", "description": "This icon visually depicts a square within a larger square, with corner brackets suggesting a frame or viewfinder. It represents actions like scanning, selecting, or focusing on an object, symbolizing detection, recognition, and the capture of an area.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["scan", "square", "detect", "recognition", "select", "frame", "object", "viewfinder", "capture", "shape", "boundary", "camera", "scanner", "overlay", "focus", "crop", "marker"], "categories": ["photography", "design", "development"], "timestamp": "2026-08-23T12:51:06.850207+00:00"}
1801
+ {"name": "user-shield", "description": "This icon depicts a stylized person standing beside a shield. It represents user security, privacy, and protection, symbolizing safeguarding personal data or access rights, often associated with administrative roles and permissions.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["user", "shield", "admin", "protected", "guard", "profile", "security", "privacy", "permissions", "role"], "categories": ["account", "security", "development", "people"], "timestamp": "2026-08-23T12:51:06.884864+00:00"}
1802
+ {"name": "shield-keyhole", "description": "A shield, a symbol of protection and defense, contains a keyhole, representing access, verification, and secure entry. It embodies cybersecurity, the strength to ward off threats, and the assurance of safety through controlled access.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["cybersecurity", "secure", "safety", "protection", "defense", "defence", "defender", "block", "threat", "prevention", "antivirus", "vigilance", "vigilant", "detection", "scan", "find", "strength", "strong", "tough", "invincible", "invincibility", "invulnerable", "undamaged", "audit", "admin", "verification", "crest", "bravery", "trooper", "pawn"], "categories": ["account", "security", "development", "files"], "timestamp": "2026-08-23T12:51:06.929254+00:00"}
1803
+ {"name": "midi-port", "description": "This icon depicts a circular port with five holes arranged in a semi-circle and a distinct keyway. It represents digital audio connectivity, specifically a MIDI interface for musical instruments and electronic devices, symbolizing input and output for musical creation.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["musical instrument digital interface", "port", "connector", "socket", "jack", "din", "5-pin", "audio", "music", "synthesizer", "keyboard", "controller", "interface", "input", "output", "io"], "categories": ["multimedia", "connectivity", "devices"], "timestamp": "2026-08-23T12:51:06.974758+00:00"}
1804
+ {"name": "mop-sparkles", "description": "A stylized mop is depicted, actively cleaning a surface. Surrounding it are small, radiating sparkles, signifying a pristine, spotless, and magically clean result. This icon represents efficient and thorough tidying, suggesting a smart or automated approach to housekeeping and hygiene.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["cleaning", "scrubbing", "sweeping", "ai", "magic", "sparkle", "smart", "automation", "housekeeping", "hygiene", "sanitation", "chores", "swab", "tidy", "floor", "spotless", "pristine", "polish", "sanitize", "disinfect"], "categories": ["home", "tools", "design"], "timestamp": "2026-08-23T12:51:07.036281+00:00"}
1805
+ {"name": "rotate-cw-fading-clock", "description": "This icon depicts a clock with a circular arrow indicating rotation. It suggests a continuous process, ongoing action, or a cyclical nature of time, representing loading, pending tasks, or a waiting period.", "model": "gemini-2.5-flash-lite", "prompt_template_hash": "7ae15a902cba", "lucide_version": "1.33.0", "tags": ["clock", "waiting", "schedule", "hourglass", "loading", "pause", "pending", "time", "watch"], "categories": ["time"], "timestamp": "2026-08-23T12:51:07.109118+00:00"}