python-lucide 0.5.1__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.
- {python_lucide-0.5.1 → python_lucide-0.5.2}/PKG-INFO +1 -1
- python_lucide-0.5.2/pyproject.toml +183 -0
- python_lucide-0.5.1/pyproject.toml → python_lucide-0.5.2/pyproject.toml.orig +2 -2
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/config.py +1 -1
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/data/gemini-icon-descriptions.jsonl +37 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/data/lucide-icon-clusters.json +4747 -4557
- python_lucide-0.5.2/src/lucide/data/lucide-icons.db +0 -0
- python_lucide-0.5.1/src/lucide/data/lucide-icons.db +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/README.md +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/__init__.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/build_clusters.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/build_search.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/cli.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/core.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/data/__init__.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/db.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/dev_utils.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/src/lucide/search.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/__init__.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/build_clusters_test.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/build_search_test.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/cli_test.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/conftest.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/core_test.py +0 -0
- {python_lucide-0.5.1 → python_lucide-0.5.2}/tests/search_test.py +0 -0
|
@@ -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.
|
|
3
|
+
requires = ["uv_build>=0.8.3,<0.13.0"]
|
|
4
4
|
|
|
5
5
|
[dependency-groups]
|
|
6
6
|
dev = [
|
|
@@ -46,7 +46,7 @@ license = {text = "MIT"}
|
|
|
46
46
|
name = "python-lucide"
|
|
47
47
|
readme = "README.md"
|
|
48
48
|
requires-python = ">=3.10"
|
|
49
|
-
version = "0.5.
|
|
49
|
+
version = "0.5.2"
|
|
50
50
|
|
|
51
51
|
[project.optional-dependencies]
|
|
52
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.
|
|
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
|
|
@@ -1766,3 +1766,40 @@
|
|
|
1766
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
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
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"}
|