decantr 0.9.0
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.
- package/AGENTS.md +868 -0
- package/CHANGELOG.md +255 -0
- package/CLAUDE.md +178 -0
- package/LICENSE +21 -0
- package/README.md +229 -0
- package/cli/art.js +127 -0
- package/cli/commands/a11y.js +61 -0
- package/cli/commands/audit.js +225 -0
- package/cli/commands/build.js +38 -0
- package/cli/commands/dev.js +18 -0
- package/cli/commands/doctor.js +197 -0
- package/cli/commands/figma-sync.js +48 -0
- package/cli/commands/figma-tokens.js +55 -0
- package/cli/commands/generate.js +26 -0
- package/cli/commands/init.js +116 -0
- package/cli/commands/lint.js +209 -0
- package/cli/commands/mcp.js +530 -0
- package/cli/commands/migrate.js +175 -0
- package/cli/commands/test.js +38 -0
- package/cli/commands/validate.js +354 -0
- package/cli/index.js +113 -0
- package/package.json +95 -0
- package/reference/atoms.md +517 -0
- package/reference/behaviors.md +384 -0
- package/reference/build-tooling.md +275 -0
- package/reference/color-guidelines.md +965 -0
- package/reference/component-lifecycle.md +137 -0
- package/reference/compound-spacing.md +95 -0
- package/reference/decantation-process.md +499 -0
- package/reference/dev-server-routes.md +93 -0
- package/reference/form-system.md +253 -0
- package/reference/i18n.md +336 -0
- package/reference/icons.md +576 -0
- package/reference/llm-primer.md +953 -0
- package/reference/plugins.md +252 -0
- package/reference/registry-consumption.md +76 -0
- package/reference/router.md +217 -0
- package/reference/shells.md +116 -0
- package/reference/spatial-guidelines.md +541 -0
- package/reference/ssr.md +234 -0
- package/reference/state-data.md +215 -0
- package/reference/state-patterns.md +166 -0
- package/reference/state.md +194 -0
- package/reference/style-system.md +110 -0
- package/reference/tokens.md +460 -0
- package/src/app.js +19 -0
- package/src/chart/_animate.js +266 -0
- package/src/chart/_base.js +109 -0
- package/src/chart/_data.js +209 -0
- package/src/chart/_format.js +106 -0
- package/src/chart/_interact.js +364 -0
- package/src/chart/_palette.js +105 -0
- package/src/chart/_renderer.js +52 -0
- package/src/chart/_scene.js +262 -0
- package/src/chart/_shared.js +371 -0
- package/src/chart/index.js +637 -0
- package/src/chart/layouts/_layout-base.js +328 -0
- package/src/chart/layouts/cartesian.js +148 -0
- package/src/chart/layouts/hierarchy.js +562 -0
- package/src/chart/layouts/polar.js +101 -0
- package/src/chart/renderers/canvas.js +179 -0
- package/src/chart/renderers/svg.js +256 -0
- package/src/chart/renderers/webgpu.js +715 -0
- package/src/chart/types/_type-base.js +26 -0
- package/src/chart/types/area.js +134 -0
- package/src/chart/types/bar.js +173 -0
- package/src/chart/types/box-plot.js +125 -0
- package/src/chart/types/bubble.js +63 -0
- package/src/chart/types/candlestick.js +115 -0
- package/src/chart/types/chord.js +85 -0
- package/src/chart/types/combination.js +108 -0
- package/src/chart/types/funnel.js +68 -0
- package/src/chart/types/gauge.js +163 -0
- package/src/chart/types/heatmap.js +98 -0
- package/src/chart/types/histogram.js +71 -0
- package/src/chart/types/line.js +111 -0
- package/src/chart/types/org-chart.js +93 -0
- package/src/chart/types/pie.js +81 -0
- package/src/chart/types/radar.js +96 -0
- package/src/chart/types/radial.js +68 -0
- package/src/chart/types/range-area.js +55 -0
- package/src/chart/types/range-bar.js +61 -0
- package/src/chart/types/sankey.js +73 -0
- package/src/chart/types/scatter.js +66 -0
- package/src/chart/types/sparkline.js +81 -0
- package/src/chart/types/sunburst.js +69 -0
- package/src/chart/types/swimlane.js +88 -0
- package/src/chart/types/treemap.js +62 -0
- package/src/chart/types/waterfall.js +100 -0
- package/src/components/_base.js +1658 -0
- package/src/components/_behaviors.js +1140 -0
- package/src/components/_primitives.js +534 -0
- package/src/components/_qr-encoder.js +539 -0
- package/src/components/accordion.js +207 -0
- package/src/components/affix.js +62 -0
- package/src/components/alert-dialog.js +75 -0
- package/src/components/alert.js +47 -0
- package/src/components/aspect-ratio.js +24 -0
- package/src/components/avatar-group.js +55 -0
- package/src/components/avatar.js +38 -0
- package/src/components/back-top.js +75 -0
- package/src/components/badge.js +74 -0
- package/src/components/banner.js +68 -0
- package/src/components/breadcrumb.js +162 -0
- package/src/components/button.js +115 -0
- package/src/components/calendar.js +131 -0
- package/src/components/card.js +192 -0
- package/src/components/carousel.js +98 -0
- package/src/components/cascader.js +261 -0
- package/src/components/checkbox.js +80 -0
- package/src/components/chip.js +81 -0
- package/src/components/code-block.js +82 -0
- package/src/components/collapsible.js +50 -0
- package/src/components/color-palette.js +438 -0
- package/src/components/color-picker.js +314 -0
- package/src/components/combobox.js +181 -0
- package/src/components/command.js +174 -0
- package/src/components/comment.js +206 -0
- package/src/components/context-menu.js +76 -0
- package/src/components/data-table.js +724 -0
- package/src/components/date-picker.js +217 -0
- package/src/components/date-range-picker.js +244 -0
- package/src/components/datetime-picker.js +271 -0
- package/src/components/descriptions.js +68 -0
- package/src/components/drawer.js +179 -0
- package/src/components/dropdown.js +88 -0
- package/src/components/empty.js +41 -0
- package/src/components/float-button.js +90 -0
- package/src/components/form.js +106 -0
- package/src/components/hover-card.js +49 -0
- package/src/components/icon.js +87 -0
- package/src/components/image.js +97 -0
- package/src/components/index.js +117 -0
- package/src/components/input-group.js +75 -0
- package/src/components/input-number.js +155 -0
- package/src/components/input-otp.js +178 -0
- package/src/components/input.js +91 -0
- package/src/components/kbd.js +36 -0
- package/src/components/label.js +25 -0
- package/src/components/list.js +118 -0
- package/src/components/masked-input.js +236 -0
- package/src/components/mentions.js +165 -0
- package/src/components/menu.js +259 -0
- package/src/components/message.js +80 -0
- package/src/components/modal.js +147 -0
- package/src/components/navigation-menu.js +166 -0
- package/src/components/notification.js +84 -0
- package/src/components/pagination.js +104 -0
- package/src/components/placeholder.js +132 -0
- package/src/components/popconfirm.js +70 -0
- package/src/components/popover.js +58 -0
- package/src/components/progress.js +61 -0
- package/src/components/qrcode.js +251 -0
- package/src/components/radiogroup.js +120 -0
- package/src/components/range-slider.js +176 -0
- package/src/components/rate.js +186 -0
- package/src/components/resizable.js +83 -0
- package/src/components/result.js +57 -0
- package/src/components/scroll-area.js +43 -0
- package/src/components/segmented.js +97 -0
- package/src/components/select.js +165 -0
- package/src/components/separator.js +31 -0
- package/src/components/shell.js +407 -0
- package/src/components/skeleton.js +39 -0
- package/src/components/slider.js +141 -0
- package/src/components/sortable-list.js +176 -0
- package/src/components/space.js +42 -0
- package/src/components/spinner.js +112 -0
- package/src/components/splitter.js +147 -0
- package/src/components/statistic.js +136 -0
- package/src/components/steps.js +99 -0
- package/src/components/switch.js +95 -0
- package/src/components/table.js +44 -0
- package/src/components/tabs.js +216 -0
- package/src/components/tag.js +115 -0
- package/src/components/textarea.js +82 -0
- package/src/components/time-picker.js +153 -0
- package/src/components/time-range-picker.js +170 -0
- package/src/components/timeline.js +226 -0
- package/src/components/toast.js +71 -0
- package/src/components/toggle.js +213 -0
- package/src/components/tooltip.js +57 -0
- package/src/components/tour.js +159 -0
- package/src/components/transfer.js +163 -0
- package/src/components/tree-select.js +274 -0
- package/src/components/tree.js +141 -0
- package/src/components/typography.js +136 -0
- package/src/components/upload.js +118 -0
- package/src/components/visually-hidden.js +20 -0
- package/src/components/watermark.js +124 -0
- package/src/core/index.js +539 -0
- package/src/core/lifecycle.js +69 -0
- package/src/css/atoms.js +651 -0
- package/src/css/components.js +940 -0
- package/src/css/derive.js +1296 -0
- package/src/css/index.js +265 -0
- package/src/css/runtime.js +268 -0
- package/src/css/styles/addons/bioluminescent.js +93 -0
- package/src/css/styles/addons/clay.js +70 -0
- package/src/css/styles/addons/clean.js +57 -0
- package/src/css/styles/addons/command-center.js +143 -0
- package/src/css/styles/addons/dopamine.js +83 -0
- package/src/css/styles/addons/editorial.js +80 -0
- package/src/css/styles/addons/glassmorphism.js +99 -0
- package/src/css/styles/addons/liquid-glass.js +105 -0
- package/src/css/styles/addons/prismatic.js +100 -0
- package/src/css/styles/addons/retro.js +63 -0
- package/src/css/styles/auradecantism.js +96 -0
- package/src/css/theme-registry.js +444 -0
- package/src/data/entity.js +281 -0
- package/src/data/index.js +13 -0
- package/src/data/persist.js +225 -0
- package/src/data/query.js +839 -0
- package/src/data/realtime.js +299 -0
- package/src/data/url.js +177 -0
- package/src/data/worker.js +134 -0
- package/src/explorer/archetypes.js +243 -0
- package/src/explorer/atoms.js +228 -0
- package/src/explorer/charts.js +497 -0
- package/src/explorer/components.js +129 -0
- package/src/explorer/foundations.js +949 -0
- package/src/explorer/icons.js +178 -0
- package/src/explorer/patterns.js +247 -0
- package/src/explorer/recipes.js +194 -0
- package/src/explorer/shared/pattern-examples.js +1337 -0
- package/src/explorer/shared/showcase-renderer.js +958 -0
- package/src/explorer/shared/spec-table.js +41 -0
- package/src/explorer/shared/usage-links.js +87 -0
- package/src/explorer/shell-config.js +10 -0
- package/src/explorer/shells.js +551 -0
- package/src/explorer/styles.js +161 -0
- package/src/explorer/tokens.js +262 -0
- package/src/explorer/tools.js +525 -0
- package/src/form/index.js +804 -0
- package/src/i18n/index.js +251 -0
- package/src/icons/essential.js +479 -0
- package/src/icons/index.js +53 -0
- package/src/plugins/index.js +282 -0
- package/src/registry/archetypes/content-site.json +71 -0
- package/src/registry/archetypes/docs-explorer.json +23 -0
- package/src/registry/archetypes/ecommerce.json +104 -0
- package/src/registry/archetypes/financial-dashboard.json +77 -0
- package/src/registry/archetypes/index.json +41 -0
- package/src/registry/archetypes/portfolio.json +82 -0
- package/src/registry/archetypes/recipe-community.json +159 -0
- package/src/registry/archetypes/saas-dashboard.json +86 -0
- package/src/registry/architect/cross-cutting.json +45 -0
- package/src/registry/architect/domains/ecommerce.json +294 -0
- package/src/registry/architect/domains/financial-services.json +302 -0
- package/src/registry/architect/index.json +26 -0
- package/src/registry/architect/traits.json +379 -0
- package/src/registry/atoms.json +16 -0
- package/src/registry/chart-showcase.json +160 -0
- package/src/registry/chart.json +136 -0
- package/src/registry/components.json +8616 -0
- package/src/registry/core.json +216 -0
- package/src/registry/css.json +319 -0
- package/src/registry/data.json +135 -0
- package/src/registry/foundations.json +11 -0
- package/src/registry/icons.json +463 -0
- package/src/registry/index.json +101 -0
- package/src/registry/patterns/activity-feed.json +37 -0
- package/src/registry/patterns/article-content.json +27 -0
- package/src/registry/patterns/auth-form.json +37 -0
- package/src/registry/patterns/author-card.json +20 -0
- package/src/registry/patterns/card-grid.json +127 -0
- package/src/registry/patterns/category-nav.json +26 -0
- package/src/registry/patterns/chart-grid.json +36 -0
- package/src/registry/patterns/chat-interface.json +37 -0
- package/src/registry/patterns/checklist-card.json +55 -0
- package/src/registry/patterns/comparison-panel.json +27 -0
- package/src/registry/patterns/component-showcase.json +24 -0
- package/src/registry/patterns/contact-form.json +31 -0
- package/src/registry/patterns/cta-section.json +20 -0
- package/src/registry/patterns/data-table.json +37 -0
- package/src/registry/patterns/detail-header.json +83 -0
- package/src/registry/patterns/detail-panel.json +27 -0
- package/src/registry/patterns/explorer-shell.json +22 -0
- package/src/registry/patterns/filter-bar.json +33 -0
- package/src/registry/patterns/filter-sidebar.json +27 -0
- package/src/registry/patterns/form-sections.json +110 -0
- package/src/registry/patterns/goal-tracker.json +27 -0
- package/src/registry/patterns/hero.json +107 -0
- package/src/registry/patterns/index.json +47 -0
- package/src/registry/patterns/kpi-grid.json +36 -0
- package/src/registry/patterns/media-gallery.json +20 -0
- package/src/registry/patterns/order-history.json +20 -0
- package/src/registry/patterns/pagination.json +19 -0
- package/src/registry/patterns/photo-to-recipe.json +36 -0
- package/src/registry/patterns/pipeline-tracker.json +28 -0
- package/src/registry/patterns/post-list.json +27 -0
- package/src/registry/patterns/pricing-table.json +32 -0
- package/src/registry/patterns/scorecard.json +28 -0
- package/src/registry/patterns/search-bar.json +20 -0
- package/src/registry/patterns/specimen-grid.json +19 -0
- package/src/registry/patterns/stat-card.json +55 -0
- package/src/registry/patterns/stats-bar.json +55 -0
- package/src/registry/patterns/steps-card.json +55 -0
- package/src/registry/patterns/table-of-contents.json +19 -0
- package/src/registry/patterns/testimonials.json +21 -0
- package/src/registry/patterns/timeline.json +27 -0
- package/src/registry/patterns/token-inspector.json +21 -0
- package/src/registry/patterns/wizard.json +27 -0
- package/src/registry/recipe-auradecantism.json +69 -0
- package/src/registry/recipe-clean.json +65 -0
- package/src/registry/recipe-command-center.json +78 -0
- package/src/registry/router.json +73 -0
- package/src/registry/schema/README.md +197 -0
- package/src/registry/skeletons.json +259 -0
- package/src/registry/state.json +137 -0
- package/src/registry/tokens.json +40 -0
- package/src/router/hash.js +17 -0
- package/src/router/history.js +18 -0
- package/src/router/index.js +598 -0
- package/src/ssr/index.js +922 -0
- package/src/state/arrays.js +181 -0
- package/src/state/devtools.js +647 -0
- package/src/state/index.js +498 -0
- package/src/state/middleware.js +288 -0
- package/src/state/scheduler.js +206 -0
- package/src/state/store.js +300 -0
- package/src/tags/index.js +19 -0
- package/src/tannins/auth.js +396 -0
- package/src/test/dom.js +352 -0
- package/src/test/index.js +62 -0
- package/src/test/state.js +306 -0
- package/tools/a11y-audit.js +487 -0
- package/tools/analyzer.js +315 -0
- package/tools/audit.js +706 -0
- package/tools/builder.js +1422 -0
- package/tools/css-extract.js +188 -0
- package/tools/dev-server.js +316 -0
- package/tools/dts-gen.js +1260 -0
- package/tools/figma-components.js +329 -0
- package/tools/figma-patterns.js +516 -0
- package/tools/figma-plugin/code.js +453 -0
- package/tools/figma-plugin/manifest.json +14 -0
- package/tools/figma-plugin/ui.html +268 -0
- package/tools/figma-render.js +293 -0
- package/tools/figma-tokens.js +712 -0
- package/tools/figma-upload.js +318 -0
- package/tools/generate.js +738 -0
- package/tools/icons.js +133 -0
- package/tools/init-templates.js +265 -0
- package/tools/install-hooks.sh +5 -0
- package/tools/migrations/0.5.0.js +53 -0
- package/tools/migrations/0.6.0.js +95 -0
- package/tools/minify.js +170 -0
- package/tools/pre-commit +4 -0
- package/tools/registry.js +662 -0
- package/tools/reset-playground.js +61 -0
- package/tools/starter-templates/content-site/app.js +49 -0
- package/tools/starter-templates/content-site/essence.js +19 -0
- package/tools/starter-templates/content-site/pages.js +31 -0
- package/tools/starter-templates/ecommerce/app.js +50 -0
- package/tools/starter-templates/ecommerce/essence.js +19 -0
- package/tools/starter-templates/ecommerce/pages.js +31 -0
- package/tools/starter-templates/landing-page/app.js +38 -0
- package/tools/starter-templates/landing-page/essence.js +18 -0
- package/tools/starter-templates/landing-page/pages.js +21 -0
- package/tools/starter-templates/portfolio/app.js +45 -0
- package/tools/starter-templates/portfolio/essence.js +19 -0
- package/tools/starter-templates/portfolio/pages.js +33 -0
- package/tools/starter-templates/saas-dashboard/app.js +70 -0
- package/tools/starter-templates/saas-dashboard/essence.js +19 -0
- package/tools/starter-templates/saas-dashboard/pages.js +31 -0
- package/tools/verify-pack.js +203 -0
- package/types/chart.d.ts +77 -0
- package/types/components.d.ts +587 -0
- package/types/core.d.ts +89 -0
- package/types/css.d.ts +149 -0
- package/types/data.d.ts +238 -0
- package/types/form.d.ts +164 -0
- package/types/i18n.d.ts +51 -0
- package/types/icons.d.ts +27 -0
- package/types/index.d.ts +13 -0
- package/types/router.d.ts +116 -0
- package/types/ssr.d.ts +102 -0
- package/types/state.d.ts +83 -0
- package/types/tags.d.ts +62 -0
- package/types/tannins.d.ts +63 -0
- package/types/test.d.ts +48 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
// Decantr essential icons — original SVG paths on 24×24 grid
|
|
2
|
+
// Stroke-based: fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
|
3
|
+
export const ESSENTIAL = {
|
|
4
|
+
// ── Navigation ──────────────────────────────────────────────
|
|
5
|
+
'check': '<polyline points="20 6 9 17 4 12"/>',
|
|
6
|
+
'x': '<line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/>',
|
|
7
|
+
'plus': '<line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/>',
|
|
8
|
+
'minus': '<line x1="5" y1="12" x2="19" y2="12"/>',
|
|
9
|
+
'chevron-down': '<polyline points="6 9 12 15 18 9"/>',
|
|
10
|
+
'chevron-up': '<polyline points="6 15 12 9 18 15"/>',
|
|
11
|
+
'chevron-left': '<polyline points="15 18 9 12 15 6"/>',
|
|
12
|
+
'chevron-right': '<polyline points="9 6 15 12 9 18"/>',
|
|
13
|
+
'chevrons-left': '<polyline points="11 17 6 12 11 7"/><polyline points="18 17 13 12 18 7"/>',
|
|
14
|
+
'chevrons-right': '<polyline points="13 7 18 12 13 17"/><polyline points="6 7 11 12 6 17"/>',
|
|
15
|
+
'arrow-left': '<line x1="19" y1="12" x2="5" y2="12"/><polyline points="12 19 5 12 12 5"/>',
|
|
16
|
+
'arrow-right': '<line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/>',
|
|
17
|
+
'arrow-up': '<line x1="12" y1="19" x2="12" y2="5"/><polyline points="5 12 12 5 19 12"/>',
|
|
18
|
+
'arrow-down': '<line x1="12" y1="5" x2="12" y2="19"/><polyline points="19 12 12 19 5 12"/>',
|
|
19
|
+
|
|
20
|
+
// ── Common UI ───────────────────────────────────────────────
|
|
21
|
+
'search': '<circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/>',
|
|
22
|
+
'menu': '<line x1="4" y1="6" x2="20" y2="6"/><line x1="4" y1="12" x2="20" y2="12"/><line x1="4" y1="18" x2="20" y2="18"/>',
|
|
23
|
+
'more-horizontal': '<circle cx="5" cy="12" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="19" cy="12" r="1.5"/>',
|
|
24
|
+
'more-vertical': '<circle cx="12" cy="5" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="12" cy="19" r="1.5"/>',
|
|
25
|
+
'external-link': '<path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/>',
|
|
26
|
+
'home': '<path d="M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/>',
|
|
27
|
+
'bell': '<path d="M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M14 21a2 2 0 01-4 0"/>',
|
|
28
|
+
'settings': '<line x1="4" y1="6" x2="20" y2="6"/><line x1="4" y1="12" x2="20" y2="12"/><line x1="4" y1="18" x2="20" y2="18"/><circle cx="8" cy="6" r="2"/><circle cx="16" cy="12" r="2"/><circle cx="10" cy="18" r="2"/>',
|
|
29
|
+
'star': '<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26"/>',
|
|
30
|
+
'edit': '<path d="M17 3a2.83 2.83 0 114 4L7.5 20.5 2 22l1.5-5.5z"/>',
|
|
31
|
+
'trash': '<polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/><line x1="10" y1="11" x2="10" y2="17"/><line x1="14" y1="11" x2="14" y2="17"/>',
|
|
32
|
+
'copy': '<rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"/>',
|
|
33
|
+
'eye': '<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/>',
|
|
34
|
+
'eye-off': '<path d="M17.94 17.94A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94m3.06-2.31A8.69 8.69 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19m-6.72-1.07a3 3 0 01-4.24-4.24"/><line x1="1" y1="1" x2="23" y2="23"/>',
|
|
35
|
+
'filter': '<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46"/>',
|
|
36
|
+
'download': '<path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/>',
|
|
37
|
+
'upload': '<path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/><polyline points="17 8 12 3 7 8"/><line x1="12" y1="3" x2="12" y2="15"/>',
|
|
38
|
+
'refresh': '<polyline points="23 4 23 10 17 10"/><polyline points="1 20 1 14 7 14"/><path d="M3.51 9a9 9 0 0114.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0020.49 15"/>',
|
|
39
|
+
'loader': '<line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/>',
|
|
40
|
+
'log-out': '<path d="M9 21H5a2 2 0 01-2-2V5a2 2 0 012-2h4"/><polyline points="16 17 21 12 16 7"/><line x1="21" y1="12" x2="9" y2="12"/>',
|
|
41
|
+
'log-in': '<path d="M15 3h4a2 2 0 012 2v14a2 2 0 01-2 2h-4"/><polyline points="10 17 15 12 10 7"/><line x1="15" y1="12" x2="3" y2="12"/>',
|
|
42
|
+
'user': '<path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"/><circle cx="12" cy="7" r="4"/>',
|
|
43
|
+
|
|
44
|
+
// ── Feedback ────────────────────────────────────────────────
|
|
45
|
+
'info': '<circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/>',
|
|
46
|
+
'alert-triangle': '<path d="M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z"/><line x1="12" y1="9" x2="12" y2="13"/><line x1="12" y1="17" x2="12.01" y2="17"/>',
|
|
47
|
+
'alert-circle': '<circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/>',
|
|
48
|
+
'check-circle': '<path d="M22 11.08V12a10 10 0 11-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/>',
|
|
49
|
+
'x-circle': '<circle cx="12" cy="12" r="10"/><line x1="15" y1="9" x2="9" y2="15"/><line x1="9" y1="9" x2="15" y2="15"/>',
|
|
50
|
+
|
|
51
|
+
// ── Layout / Data ───────────────────────────────────────────
|
|
52
|
+
'layout-dashboard': '<rect x="3" y="3" width="7" height="9" rx="1"/><rect x="14" y="3" width="7" height="5" rx="1"/><rect x="14" y="12" width="7" height="9" rx="1"/><rect x="3" y="16" width="7" height="5" rx="1"/>',
|
|
53
|
+
'calendar': '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/>',
|
|
54
|
+
'clock': '<circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/>',
|
|
55
|
+
'mail': '<path d="M4 4h16a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2z"/><polyline points="22 6 12 13 2 6"/>',
|
|
56
|
+
'image': '<rect x="3" y="3" width="18" height="18" rx="2"/><circle cx="8.5" cy="8.5" r="1.5"/><polyline points="21 15 16 10 5 21"/>',
|
|
57
|
+
'file': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/>',
|
|
58
|
+
'folder': '<path d="M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z"/>',
|
|
59
|
+
'grip-vertical': '<circle cx="9" cy="5" r="1"/><circle cx="9" cy="12" r="1"/><circle cx="9" cy="19" r="1"/><circle cx="15" cy="5" r="1"/><circle cx="15" cy="12" r="1"/><circle cx="15" cy="19" r="1"/>',
|
|
60
|
+
'move': '<polyline points="5 9 2 12 5 15"/><polyline points="9 5 12 2 15 5"/><polyline points="15 19 12 22 9 19"/><polyline points="19 9 22 12 19 15"/><line x1="2" y1="12" x2="22" y2="12"/><line x1="12" y1="2" x2="12" y2="22"/>',
|
|
61
|
+
|
|
62
|
+
// ── Users & Permissions ─────────────────────────────────────
|
|
63
|
+
'users': '<path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87"/><path d="M16 3.13a4 4 0 010 7.75"/>',
|
|
64
|
+
'user-plus': '<path d="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="8.5" cy="7" r="4"/><line x1="20" y1="8" x2="20" y2="14"/><line x1="23" y1="11" x2="17" y2="11"/>',
|
|
65
|
+
'user-minus': '<path d="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="8.5" cy="7" r="4"/><line x1="23" y1="11" x2="17" y2="11"/>',
|
|
66
|
+
'shield': '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>',
|
|
67
|
+
'lock': '<rect x="3" y="11" width="18" height="11" rx="2"/><path d="M7 11V7a5 5 0 0110 0v4"/>',
|
|
68
|
+
'unlock': '<rect x="3" y="11" width="18" height="11" rx="2"/><path d="M7 11V7a5 5 0 019.9-1"/>',
|
|
69
|
+
'key': '<path d="M21 2l-2 2m-7.61 7.61a5.5 5.5 0 11-7.78 7.78 5.5 5.5 0 017.78-7.78zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"/>',
|
|
70
|
+
|
|
71
|
+
// ── Documents & Data ────────────────────────────────────────
|
|
72
|
+
'file-text': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/>',
|
|
73
|
+
'save': '<path d="M19 21H5a2 2 0 01-2-2V5a2 2 0 012-2h11l5 5v11a2 2 0 01-2 2z"/><polyline points="17 21 17 13 7 13 7 21"/><polyline points="7 3 7 8 15 8"/>',
|
|
74
|
+
'printer': '<polyline points="6 9 6 2 18 2 18 9"/><path d="M6 18H4a2 2 0 01-2-2v-5a2 2 0 012-2h16a2 2 0 012 2v5a2 2 0 01-2 2h-2"/><rect x="6" y="14" width="12" height="8"/>',
|
|
75
|
+
'bookmark': '<path d="M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z"/>',
|
|
76
|
+
'archive': '<polyline points="21 8 21 21 3 21 3 8"/><rect x="1" y="3" width="22" height="5"/><line x1="10" y1="12" x2="14" y2="12"/>',
|
|
77
|
+
'clipboard': '<path d="M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2"/><rect x="8" y="2" width="8" height="4" rx="1"/>',
|
|
78
|
+
'paperclip': '<path d="M21.44 11.05l-9.19 9.19a6 6 0 01-8.49-8.49l9.19-9.19a4 4 0 015.66 5.66l-9.2 9.19a2 2 0 01-2.83-2.83l8.49-8.48"/>',
|
|
79
|
+
'link': '<path d="M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71"/>',
|
|
80
|
+
'hash': '<line x1="4" y1="9" x2="20" y2="9"/><line x1="4" y1="15" x2="20" y2="15"/><line x1="10" y1="3" x2="8" y2="21"/><line x1="16" y1="3" x2="14" y2="21"/>',
|
|
81
|
+
'tag': '<path d="M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z"/><line x1="7" y1="7" x2="7.01" y2="7"/>',
|
|
82
|
+
|
|
83
|
+
// ── Communication ───────────────────────────────────────────
|
|
84
|
+
'phone': '<path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z"/>',
|
|
85
|
+
'video': '<polygon points="23 7 16 12 23 17 23 7"/><rect x="1" y="5" width="15" height="14" rx="2"/>',
|
|
86
|
+
'send': '<line x1="22" y1="2" x2="11" y2="13"/><polygon points="22 2 15 22 11 13 2 9 22 2"/>',
|
|
87
|
+
'at-sign': '<circle cx="12" cy="12" r="4"/><path d="M16 8v5a3 3 0 006 0v-1a10 10 0 10-3.92 7.94"/>',
|
|
88
|
+
'message-square': '<path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/>',
|
|
89
|
+
'reply': '<polyline points="9 17 4 12 9 7"/><path d="M20 18v-2a4 4 0 00-4-4H4"/>',
|
|
90
|
+
|
|
91
|
+
// ── Charts & Analytics ──────────────────────────────────────
|
|
92
|
+
'bar-chart': '<line x1="12" y1="20" x2="12" y2="10"/><line x1="18" y1="20" x2="18" y2="4"/><line x1="6" y1="20" x2="6" y2="16"/>',
|
|
93
|
+
'pie-chart': '<path d="M21.21 15.89A10 10 0 118 2.83"/><path d="M22 12A10 10 0 0012 2v10z"/>',
|
|
94
|
+
'trending-up': '<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"/><polyline points="17 6 23 6 23 12"/>',
|
|
95
|
+
'trending-down': '<polyline points="23 18 13.5 8.5 8.5 13.5 1 6"/><polyline points="17 18 23 18 23 12"/>',
|
|
96
|
+
'activity': '<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/>',
|
|
97
|
+
'percent': '<line x1="19" y1="5" x2="5" y2="19"/><circle cx="6.5" cy="6.5" r="2.5"/><circle cx="17.5" cy="17.5" r="2.5"/>',
|
|
98
|
+
'analytics': '<rect x="3" y="3" width="18" height="18" rx="2"/><polyline points="7 16 11 12 14 14 17 8"/><polyline points="14 8 17 8 17 11"/>',
|
|
99
|
+
'area-chart': '<line x1="3" y1="20" x2="3" y2="4"/><line x1="3" y1="20" x2="21" y2="20"/><path d="M3 16l5-5 4 3 5-7 4-2v15H3z"/>',
|
|
100
|
+
'bar-chart-horizontal': '<line x1="4" y1="3" x2="4" y2="21"/><line x1="4" y1="6" x2="16" y2="6"/><line x1="4" y1="12" x2="20" y2="12"/><line x1="4" y1="18" x2="12" y2="18"/>',
|
|
101
|
+
'benchmark': '<rect x="3" y="9" width="18" height="6" rx="1"/><line x1="14" y1="5" x2="14" y2="19"/><polyline points="12 5 14 3 16 5"/>',
|
|
102
|
+
'bubble-chart': '<line x1="3" y1="20" x2="3" y2="4"/><line x1="3" y1="20" x2="21" y2="20"/><circle cx="8" cy="14" r="2"/><circle cx="14" cy="9" r="3"/><circle cx="18" cy="15" r="1.5"/>',
|
|
103
|
+
'candlestick-chart': '<line x1="6" y1="4" x2="6" y2="20"/><rect x="4" y="8" width="4" height="6"/><line x1="12" y1="6" x2="12" y2="18"/><rect x="10" y="10" width="4" height="4"/><line x1="18" y1="3" x2="18" y2="20"/><rect x="16" y="7" width="4" height="8"/>',
|
|
104
|
+
'chart-comparison': '<line x1="3" y1="20" x2="3" y2="4"/><line x1="3" y1="20" x2="21" y2="20"/><polyline points="3 16 8 12 13 14 18 8"/><polyline points="3 14 8 10 13 16 18 6"/>',
|
|
105
|
+
'chart-correlation': '<line x1="4" y1="20" x2="20" y2="4"/><circle cx="6" cy="16" r="1.5"/><circle cx="9" cy="14" r="1.5"/><circle cx="11" cy="11" r="1.5"/><circle cx="15" cy="9" r="1.5"/><circle cx="17" cy="5" r="1.5"/><circle cx="13" cy="15" r="1.5"/>',
|
|
106
|
+
'chart-decline': '<path d="M4 4c2 6 8 12 16 16"/><polyline points="18 18 20 20 22 18"/>',
|
|
107
|
+
'chart-distribution': '<line x1="2" y1="20" x2="22" y2="20"/><path d="M3 20c0-2 2-16 9-16s9 14 9 16"/>',
|
|
108
|
+
'chart-donut': '<circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="5"/><line x1="12" y1="2" x2="12" y2="7"/><line x1="20.66" y1="17" x2="16.33" y2="14.5"/>',
|
|
109
|
+
'chart-forecast': '<polyline points="3 18 7 14 11 16 14 10"/><line x1="14" y1="4" x2="14" y2="20" stroke-dasharray="2 2"/><polyline points="14 10 17 7 21 5" stroke-dasharray="2 2"/>',
|
|
110
|
+
'chart-funnel': '<path d="M2 4h20l-6 8H8L2 4z"/><path d="M8 12l2 5h4l2-5"/><path d="M10 17l1 4h2l1-4"/>',
|
|
111
|
+
'chart-gantt': '<line x1="4" y1="3" x2="4" y2="21"/><line x1="4" y1="21" x2="21" y2="21"/><rect x="6" y="5" width="8" height="3" rx="1"/><rect x="10" y="11" width="10" height="3" rx="1"/><rect x="7" y="17" width="6" height="3" rx="1"/>',
|
|
112
|
+
'chart-growth': '<path d="M4 20c2-6 8-12 16-16"/><polyline points="18 6 20 4 22 6"/>',
|
|
113
|
+
'chart-heatmap': '<rect x="3" y="3" width="18" height="18"/><line x1="9" y1="3" x2="9" y2="21"/><line x1="15" y1="3" x2="15" y2="21"/><line x1="3" y1="9" x2="21" y2="9"/><line x1="3" y1="15" x2="21" y2="15"/>',
|
|
114
|
+
'chart-radar': '<polygon points="12 2 21 7 21 17 12 22 3 17 3 7"/><polygon points="12 7 16 9.5 16 14.5 12 17 8 14.5 8 9.5"/>',
|
|
115
|
+
'chart-sankey': '<path d="M2 5c5 0 5 2 10 2h10"/><path d="M2 12c5 0 5-5 10-5h10"/><path d="M2 19c5 0 5-5 10-5h10"/>',
|
|
116
|
+
'chart-scatter': '<line x1="3" y1="20" x2="3" y2="4"/><line x1="3" y1="20" x2="21" y2="20"/><circle cx="7" cy="16" r="1.5"/><circle cx="10" cy="10" r="1.5"/><circle cx="14" cy="14" r="1.5"/><circle cx="17" cy="8" r="1.5"/><circle cx="19" cy="12" r="1.5"/>',
|
|
117
|
+
'chart-treemap': '<rect x="3" y="3" width="18" height="18" rx="1"/><line x1="12" y1="3" x2="12" y2="21"/><line x1="3" y1="12" x2="12" y2="12"/><line x1="12" y1="9" x2="21" y2="9"/><line x1="12" y1="15" x2="21" y2="15"/>',
|
|
118
|
+
'chart-waterfall': '<line x1="3" y1="21" x2="21" y2="21"/><rect x="4" y="12" width="3" height="9"/><rect x="8" y="6" width="3" height="6"/><rect x="12" y="9" width="3" height="5"/><rect x="16" y="4" width="3" height="5"/>',
|
|
119
|
+
'histogram': '<line x1="2" y1="20" x2="22" y2="20"/><rect x="3" y="14" width="3" height="6"/><rect x="7" y="8" width="3" height="12"/><rect x="11" y="4" width="3" height="16"/><rect x="15" y="10" width="3" height="10"/><rect x="19" y="16" width="3" height="4"/>',
|
|
120
|
+
'kpi-card': '<rect x="3" y="3" width="18" height="18" rx="2"/><line x1="7" y1="10" x2="14" y2="10"/><line x1="7" y1="14" x2="11" y2="14"/><polyline points="15 16 18 12"/><polyline points="16 12 18 12 18 14"/>',
|
|
121
|
+
'line-chart': '<line x1="3" y1="20" x2="3" y2="4"/><line x1="3" y1="20" x2="21" y2="20"/><polyline points="3 16 8 11 13 14 18 6"/><circle cx="3" cy="16" r="1.5"/><circle cx="8" cy="11" r="1.5"/><circle cx="13" cy="14" r="1.5"/><circle cx="18" cy="6" r="1.5"/>',
|
|
122
|
+
'metric': '<circle cx="12" cy="12" r="10"/><polyline points="7 15 10 12 13 14 17 9"/><polyline points="14 9 17 9 17 12"/>',
|
|
123
|
+
'sparkline': '<polyline points="2 16 5 13 8 15 11 8 14 11 17 6 20 10 22 8"/>',
|
|
124
|
+
'stacked-bar-chart': '<line x1="2" y1="21" x2="22" y2="21"/><rect x="4" y="4" width="4" height="17"/><line x1="4" y1="12" x2="8" y2="12"/><rect x="10" y="8" width="4" height="13"/><line x1="10" y1="15" x2="14" y2="15"/><rect x="16" y="2" width="4" height="19"/><line x1="16" y1="10" x2="20" y2="10"/>',
|
|
125
|
+
'trendline': '<line x1="3" y1="19" x2="21" y2="5"/><circle cx="5" cy="15" r="1.5"/><circle cx="8" cy="14" r="1.5"/><circle cx="12" cy="10" r="1.5"/><circle cx="16" cy="9" r="1.5"/><circle cx="19" cy="7" r="1.5"/>',
|
|
126
|
+
|
|
127
|
+
// ── Status & Social ─────────────────────────────────────────
|
|
128
|
+
'circle-dot': '<circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="3"/>',
|
|
129
|
+
'flag': '<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"/><line x1="4" y1="22" x2="4" y2="15"/>',
|
|
130
|
+
'heart': '<path d="M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z"/>',
|
|
131
|
+
'thumbs-up': '<path d="M14 9V5a3 3 0 00-3-3l-4 9v11h11.28a2 2 0 002-1.7l1.38-9a2 2 0 00-2-2.3zM7 22H4a2 2 0 01-2-2v-7a2 2 0 012-2h3"/>',
|
|
132
|
+
'thumbs-down': '<path d="M10 15v4a3 3 0 003 3l4-9V2H5.72a2 2 0 00-2 1.7l-1.38 9a2 2 0 002 2.3zm7-13h2.67A2.31 2.31 0 0122 4v7a2.31 2.31 0 01-2.33 2H17"/>',
|
|
133
|
+
'ban': '<circle cx="12" cy="12" r="10"/><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"/>',
|
|
134
|
+
|
|
135
|
+
// ── Organization ────────────────────────────────────────────
|
|
136
|
+
'grip-vertical': '<circle cx="9" cy="5" r="1"/><circle cx="15" cy="5" r="1"/><circle cx="9" cy="12" r="1"/><circle cx="15" cy="12" r="1"/><circle cx="9" cy="19" r="1"/><circle cx="15" cy="19" r="1"/>',
|
|
137
|
+
'list': '<line x1="8" y1="6" x2="21" y2="6"/><line x1="8" y1="12" x2="21" y2="12"/><line x1="8" y1="18" x2="21" y2="18"/><line x1="3" y1="6" x2="3.01" y2="6"/><line x1="3" y1="12" x2="3.01" y2="12"/><line x1="3" y1="18" x2="3.01" y2="18"/>',
|
|
138
|
+
'list-ordered': '<line x1="10" y1="6" x2="21" y2="6"/><line x1="10" y1="12" x2="21" y2="12"/><line x1="10" y1="18" x2="21" y2="18"/><path d="M4 6h1v4"/><path d="M4 10h2"/><path d="M6 18H4c0-1 2-2 2-3s-1-1.5-2-1"/>',
|
|
139
|
+
'grid-3x3': '<rect x="3" y="3" width="5" height="5" rx="1"/><rect x="10" y="3" width="5" height="5" rx="1"/><rect x="17" y="3" width="5" height="5" rx="1"/><rect x="3" y="10" width="5" height="5" rx="1"/><rect x="10" y="10" width="5" height="5" rx="1"/><rect x="17" y="10" width="5" height="5" rx="1"/><rect x="3" y="17" width="5" height="5" rx="1"/><rect x="10" y="17" width="5" height="5" rx="1"/><rect x="17" y="17" width="5" height="5" rx="1"/>',
|
|
140
|
+
'inbox': '<polyline points="22 12 16 12 14 15 10 15 8 12 2 12"/><path d="M5.45 5.11L2 12v6a2 2 0 002 2h16a2 2 0 002-2v-6l-3.45-6.89A2 2 0 0016.76 4H7.24a2 2 0 00-1.79 1.11z"/>',
|
|
141
|
+
'layers': '<polygon points="12 2 2 7 12 12 22 7 12 2"/><polyline points="2 17 12 22 22 17"/><polyline points="2 12 12 17 22 12"/>',
|
|
142
|
+
'kanban': '<rect x="3" y="3" width="5" height="18" rx="1"/><rect x="10" y="3" width="5" height="12" rx="1"/><rect x="17" y="3" width="5" height="8" rx="1"/>',
|
|
143
|
+
|
|
144
|
+
// ── Navigation & Layout ─────────────────────────────────────
|
|
145
|
+
'sidebar': '<rect x="3" y="3" width="18" height="18" rx="2"/><line x1="9" y1="3" x2="9" y2="21"/>',
|
|
146
|
+
'panel-left': '<rect x="3" y="3" width="18" height="18" rx="2"/><line x1="9" y1="3" x2="9" y2="21"/>',
|
|
147
|
+
'panel-right': '<rect x="3" y="3" width="18" height="18" rx="2"/><line x1="15" y1="3" x2="15" y2="21"/>',
|
|
148
|
+
'maximize': '<polyline points="15 3 21 3 21 9"/><polyline points="9 21 3 21 3 15"/><line x1="21" y1="3" x2="14" y2="10"/><line x1="3" y1="21" x2="10" y2="14"/>',
|
|
149
|
+
'minimize': '<polyline points="4 14 10 14 10 20"/><polyline points="20 10 14 10 14 4"/><line x1="14" y1="10" x2="21" y2="3"/><line x1="3" y1="21" x2="10" y2="14"/>',
|
|
150
|
+
'expand': '<polyline points="15 3 21 3 21 9"/><polyline points="9 21 3 21 3 15"/><polyline points="21 3 14 10"/><polyline points="3 21 10 14"/>',
|
|
151
|
+
'shrink': '<polyline points="4 14 10 14 10 20"/><polyline points="20 10 14 10 14 4"/><line x1="14" y1="10" x2="21" y2="3"/><line x1="3" y1="21" x2="10" y2="14"/>',
|
|
152
|
+
|
|
153
|
+
// ── Dev & Infrastructure ────────────────────────────────────
|
|
154
|
+
'code': '<polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/>',
|
|
155
|
+
'terminal': '<polyline points="4 17 10 11 4 5"/><line x1="12" y1="19" x2="20" y2="19"/>',
|
|
156
|
+
'server': '<rect x="2" y="2" width="20" height="8" rx="2"/><rect x="2" y="14" width="20" height="8" rx="2"/><line x1="6" y1="6" x2="6.01" y2="6"/><line x1="6" y1="18" x2="6.01" y2="18"/>',
|
|
157
|
+
'database': '<ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M21 12c0 1.66-4.03 3-9 3s-9-1.34-9-3"/><path d="M3 5v14c0 1.66 4.03 3 9 3s9-1.34 9-3V5"/>',
|
|
158
|
+
'moon': '<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"/>',
|
|
159
|
+
'sun': '<circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/><line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>',
|
|
160
|
+
'cloud': '<path d="M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"/>',
|
|
161
|
+
'cloud-upload': '<path d="M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"/><polyline points="16 16 12 12 8 16"/><line x1="12" y1="12" x2="12" y2="21"/>',
|
|
162
|
+
'cloud-download': '<path d="M18 10h-1.26A8 8 0 109 20h9a5 5 0 000-10z"/><polyline points="8 17 12 21 16 17"/><line x1="12" y1="12" x2="12" y2="21"/>',
|
|
163
|
+
'wifi': '<path d="M5 12.55a11 11 0 0114.08 0"/><path d="M1.42 9a16 16 0 0121.16 0"/><path d="M8.53 16.11a6 6 0 016.95 0"/><line x1="12" y1="20" x2="12.01" y2="20"/>',
|
|
164
|
+
'wifi-off': '<line x1="1" y1="1" x2="23" y2="23"/><path d="M16.72 11.06A10.94 10.94 0 0119 12.55"/><path d="M5 12.55a10.94 10.94 0 015.17-2.39"/><path d="M10.71 5.05A16 16 0 0122.56 9"/><path d="M1.42 9a15.91 15.91 0 014.7-2.88"/><path d="M8.53 16.11a6 6 0 016.95 0"/><line x1="12" y1="20" x2="12.01" y2="20"/>',
|
|
165
|
+
|
|
166
|
+
// ── Commerce ────────────────────────────────────────────────
|
|
167
|
+
'credit-card': '<rect x="1" y="4" width="22" height="16" rx="2"/><line x1="1" y1="10" x2="23" y2="10"/>',
|
|
168
|
+
'shopping-cart': '<circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6"/>',
|
|
169
|
+
'dollar-sign': '<line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 000 7h5a3.5 3.5 0 010 7H6"/>',
|
|
170
|
+
'receipt': '<path d="M4 2v20l3-2 3 2 3-2 3 2 3-2 3 2V2l-3 2-3-2-3 2-3-2-3 2z"/><line x1="8" y1="8" x2="16" y2="8"/><line x1="8" y1="12" x2="16" y2="12"/><line x1="8" y1="16" x2="12" y2="16"/>',
|
|
171
|
+
'package': '<line x1="16.5" y1="9.4" x2="7.5" y2="4.21"/><path d="M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z"/><polyline points="3.27 6.96 12 12.01 20.73 6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/>',
|
|
172
|
+
|
|
173
|
+
// ── Actions ─────────────────────────────────────────────────
|
|
174
|
+
'undo': '<polyline points="1 4 1 10 7 10"/><path d="M3.51 15a9 9 0 102.13-9.36L1 10"/>',
|
|
175
|
+
'redo': '<polyline points="23 4 23 10 17 10"/><path d="M20.49 15a9 9 0 11-2.12-9.36L23 10"/>',
|
|
176
|
+
'share': '<circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"/><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"/>',
|
|
177
|
+
'rotate-cw': '<polyline points="23 4 23 10 17 10"/><path d="M20.49 15a9 9 0 11-2.12-9.36L23 10"/>',
|
|
178
|
+
'rotate-ccw': '<polyline points="1 4 1 10 7 10"/><path d="M3.51 15a9 9 0 102.13-9.36L1 10"/>',
|
|
179
|
+
'scissors': '<circle cx="6" cy="6" r="3"/><circle cx="6" cy="18" r="3"/><line x1="20" y1="4" x2="8.12" y2="15.88"/><line x1="14.47" y1="14.48" x2="20" y2="20"/><line x1="8.12" y1="8.12" x2="12" y2="12"/>',
|
|
180
|
+
'zap': '<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/>',
|
|
181
|
+
|
|
182
|
+
// ── Maps & Location ─────────────────────────────────────────
|
|
183
|
+
'globe': '<circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z"/>',
|
|
184
|
+
'map-pin': '<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z"/><circle cx="12" cy="10" r="3"/>',
|
|
185
|
+
|
|
186
|
+
// ── Social & Reactions ──────────────────────────────────────
|
|
187
|
+
'smile': '<circle cx="12" cy="12" r="10"/><path d="M8 14s1.5 2 4 2 4-2 4-2"/><line x1="9" y1="9" x2="9.01" y2="9"/><line x1="15" y1="9" x2="15.01" y2="9"/>',
|
|
188
|
+
'frown': '<circle cx="12" cy="12" r="10"/><path d="M16 16s-1.5-2-4-2-4 2-4 2"/><line x1="9" y1="9" x2="9.01" y2="9"/><line x1="15" y1="9" x2="15.01" y2="9"/>',
|
|
189
|
+
'meh': '<circle cx="12" cy="12" r="10"/><line x1="8" y1="15" x2="16" y2="15"/><line x1="9" y1="9" x2="9.01" y2="9"/><line x1="15" y1="9" x2="15.01" y2="9"/>',
|
|
190
|
+
'laugh': '<circle cx="12" cy="12" r="10"/><path d="M8 14s1.5 3 4 3 4-3 4-3"/><line x1="9" y1="9" x2="9.01" y2="9"/><line x1="15" y1="9" x2="15.01" y2="9"/>',
|
|
191
|
+
'angry': '<circle cx="12" cy="12" r="10"/><path d="M16 16s-1.5-2-4-2-4 2-4 2"/><line x1="7.5" y1="8" x2="10.5" y2="10"/><line x1="13.5" y1="10" x2="16.5" y2="8"/>',
|
|
192
|
+
'heart-crack': '<path d="M19.5 12.57l-7.5 7.43-7.5-7.43A5 5 0 0112 4.35a5 5 0 017.5 8.22z"/><path d="M12 8l-2 4h4l-2 4"/>',
|
|
193
|
+
'message-circle': '<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"/>',
|
|
194
|
+
'share-2': '<path d="M4 12v8a2 2 0 002 2h12a2 2 0 002-2v-8"/><polyline points="16 6 12 2 8 6"/><line x1="12" y1="2" x2="12" y2="15"/>',
|
|
195
|
+
'bookmark-plus': '<path d="M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z"/><line x1="12" y1="7" x2="12" y2="13"/><line x1="15" y1="10" x2="9" y2="10"/>',
|
|
196
|
+
'bell-ring': '<path d="M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M14 21a2 2 0 01-4 0"/><path d="M2 8c0-2.2.7-4.3 2-6"/><path d="M22 8a10 10 0 00-2-6"/>',
|
|
197
|
+
'award': '<circle cx="12" cy="8" r="7"/><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"/>',
|
|
198
|
+
|
|
199
|
+
// ── Ecommerce ───────────────────────────────────────────────
|
|
200
|
+
'store': '<path d="M3 9l1-4h16l1 4"/><path d="M3 9v11a1 1 0 001 1h16a1 1 0 001-1V9"/><path d="M9 21V13h6v8"/><path d="M3 9c0 1.1.9 2 2 2s2-.9 2-2"/><path d="M7 9c0 1.1.9 2 2 2s2-.9 2-2"/><path d="M11 9c0 1.1.9 2 2 2s2-.9 2-2"/><path d="M15 9c0 1.1.9 2 2 2s2-.9 2-2"/>',
|
|
201
|
+
'shopping-bag': '<path d="M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 01-8 0"/>',
|
|
202
|
+
'wallet': '<path d="M21 12V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2h14a2 2 0 002-2v-1"/><path d="M16 12h5v4h-5a2 2 0 010-4z"/>',
|
|
203
|
+
'truck': '<rect x="1" y="3" width="15" height="13"/><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"/><circle cx="5.5" cy="18.5" r="2.5"/><circle cx="18.5" cy="18.5" r="2.5"/>',
|
|
204
|
+
'gift': '<polyline points="20 12 20 22 4 22 4 12"/><rect x="2" y="7" width="20" height="5"/><line x1="12" y1="22" x2="12" y2="7"/><path d="M12 7H7.5a2.5 2.5 0 010-5C11 2 12 7 12 7z"/><path d="M12 7h4.5a2.5 2.5 0 000-5C13 2 12 7 12 7z"/>',
|
|
205
|
+
'coupon': '<path d="M2 9a3 3 0 013-3h14a3 3 0 013 3v0a3 3 0 01-3 3v0a3 3 0 013 3v0a3 3 0 01-3 3H5a3 3 0 01-3-3v0a3 3 0 013-3v0a3 3 0 01-3-3z"/><line x1="9" y1="6" x2="9" y2="18"/>',
|
|
206
|
+
'barcode': '<line x1="3" y1="3" x2="3" y2="21"/><line x1="6" y1="3" x2="6" y2="21"/><line x1="9" y1="3" x2="9" y2="21"/><line x1="13" y1="3" x2="13" y2="21"/><line x1="16" y1="3" x2="16" y2="21"/><line x1="21" y1="3" x2="21" y2="21"/>',
|
|
207
|
+
'qr-code': '<rect x="2" y="2" width="8" height="8" rx="1"/><rect x="14" y="2" width="8" height="8" rx="1"/><rect x="2" y="14" width="8" height="8" rx="1"/><rect x="14" y="14" width="4" height="4" rx="1"/><line x1="22" y1="18" x2="22" y2="22"/><line x1="18" y1="22" x2="22" y2="22"/>',
|
|
208
|
+
'price-tag': '<path d="M20.59 13.41l-7.17 7.17a2 2 0 01-2.83 0L2 12V2h10l8.59 8.59a2 2 0 010 2.82z"/><line x1="7" y1="7" x2="7.01" y2="7"/><line x1="12" y1="12" x2="17" y2="7"/>',
|
|
209
|
+
'percent-circle': '<circle cx="12" cy="12" r="10"/><line x1="15" y1="9" x2="9" y2="15"/><circle cx="9.5" cy="9.5" r="1.5"/><circle cx="14.5" cy="14.5" r="1.5"/>',
|
|
210
|
+
'shipping': '<rect x="1" y="6" width="15" height="12"/><polygon points="16 10 22 10 23 14 23 18 16 18 16 10"/><circle cx="6" cy="20" r="2"/><circle cx="20" cy="20" r="2"/>',
|
|
211
|
+
'returns': '<polyline points="1 4 1 10 7 10"/><path d="M3.51 15a9 9 0 102.13-9.36L1 10"/><polyline points="9 12 12 15 15 12"/><line x1="12" y1="8" x2="12" y2="15"/>',
|
|
212
|
+
|
|
213
|
+
// ── Tools & Config ──────────────────────────────────────────
|
|
214
|
+
'wrench': '<path d="M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z"/>',
|
|
215
|
+
'tool': '<path d="M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z"/>',
|
|
216
|
+
'hammer': '<path d="M15 12l-8.5 8.5a2.12 2.12 0 01-3-3L12 9"/><path d="M17.64 15L22 10.64"/><path d="M20.91 11.7a1 1 0 00-.17-1.36l-5.1-4.16a2 2 0 00-2.68.18L11 8.33"/>',
|
|
217
|
+
'screwdriver': '<path d="M14.4 2L18 5.6 9.6 14 6 10.4z"/><path d="M6 10.4l-3.2 3.2a2.26 2.26 0 003.2 3.2L9.2 13.6"/>',
|
|
218
|
+
'nut': '<path d="M12 2l8.5 5v10L12 22l-8.5-5V7z"/><circle cx="12" cy="12" r="4"/>',
|
|
219
|
+
'plug': '<path d="M12 22v-5"/><path d="M9 8V2"/><path d="M15 8V2"/><path d="M18 8v5a6 6 0 01-12 0V8z"/>',
|
|
220
|
+
'cog': '<path d="M12 20a8 8 0 100-16 8 8 0 000 16z"/><circle cx="12" cy="12" r="3"/><line x1="12" y1="4" x2="12" y2="2"/><line x1="12" y1="22" x2="12" y2="20"/><line x1="20" y1="12" x2="22" y2="12"/><line x1="2" y1="12" x2="4" y2="12"/><line x1="17.66" y1="6.34" x2="19.07" y2="4.93"/><line x1="4.93" y1="19.07" x2="6.34" y2="17.66"/><line x1="17.66" y1="17.66" x2="19.07" y2="19.07"/><line x1="4.93" y1="4.93" x2="6.34" y2="6.34"/>',
|
|
221
|
+
'sliders-horizontal': '<line x1="21" y1="4" x2="14" y2="4"/><line x1="10" y1="4" x2="3" y2="4"/><line x1="21" y1="12" x2="12" y2="12"/><line x1="8" y1="12" x2="3" y2="12"/><line x1="21" y1="20" x2="16" y2="20"/><line x1="12" y1="20" x2="3" y2="20"/><line x1="14" y1="2" x2="14" y2="6"/><line x1="8" y1="10" x2="8" y2="14"/><line x1="16" y1="18" x2="16" y2="22"/>',
|
|
222
|
+
'gauge': '<path d="M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10z"/><path d="M12 6v2"/><path d="M16.24 7.76l-1.42 1.42"/><path d="M18 12h-2"/><path d="M12 18v-4"/><circle cx="12" cy="14" r="1"/>',
|
|
223
|
+
'toggle-left': '<rect x="1" y="5" width="22" height="14" rx="7"/><circle cx="8" cy="12" r="3"/>',
|
|
224
|
+
'toggle-right': '<rect x="1" y="5" width="22" height="14" rx="7"/><circle cx="16" cy="12" r="3"/>',
|
|
225
|
+
'power': '<path d="M18.36 6.64a9 9 0 11-12.73 0"/><line x1="12" y1="2" x2="12" y2="12"/>',
|
|
226
|
+
'cpu': '<rect x="4" y="4" width="16" height="16" rx="2"/><rect x="9" y="9" width="6" height="6"/><line x1="9" y1="1" x2="9" y2="4"/><line x1="15" y1="1" x2="15" y2="4"/><line x1="9" y1="20" x2="9" y2="23"/><line x1="15" y1="20" x2="15" y2="23"/><line x1="20" y1="9" x2="23" y2="9"/><line x1="20" y1="14" x2="23" y2="14"/><line x1="1" y1="9" x2="4" y2="9"/><line x1="1" y1="14" x2="4" y2="14"/>',
|
|
227
|
+
'hard-drive': '<line x1="22" y1="12" x2="2" y2="12"/><path d="M5.45 5.11L2 12v6a2 2 0 002 2h16a2 2 0 002-2v-6l-3.45-6.89A2 2 0 0016.76 4H7.24a2 2 0 00-1.79 1.11z"/><line x1="6" y1="16" x2="6.01" y2="16"/><line x1="10" y1="16" x2="10.01" y2="16"/>',
|
|
228
|
+
|
|
229
|
+
// ── Buildings & Facilities ──────────────────────────────────
|
|
230
|
+
'building': '<rect x="4" y="2" width="16" height="20" rx="1"/><line x1="9" y1="22" x2="9" y2="16"/><line x1="15" y1="22" x2="15" y2="16"/><rect x="8" y="6" width="3" height="3"/><rect x="13" y="6" width="3" height="3"/><rect x="8" y="11" width="3" height="3"/><rect x="13" y="11" width="3" height="3"/>',
|
|
231
|
+
'building-2': '<path d="M6 22V4a2 2 0 012-2h8a2 2 0 012 2v18z"/><path d="M6 12H4a2 2 0 00-2 2v6a2 2 0 002 2h2"/><path d="M18 9h2a2 2 0 012 2v9a2 2 0 01-2 2h-2"/><line x1="10" y1="6" x2="14" y2="6"/><line x1="10" y1="10" x2="14" y2="10"/><line x1="10" y1="14" x2="14" y2="14"/><line x1="10" y1="18" x2="14" y2="18"/>',
|
|
232
|
+
'hospital': '<rect x="3" y="3" width="18" height="18" rx="2"/><line x1="9" y1="8" x2="15" y2="8"/><line x1="12" y1="5" x2="12" y2="11"/><line x1="9" y1="21" x2="9" y2="15"/><line x1="15" y1="21" x2="15" y2="15"/>',
|
|
233
|
+
'factory': '<path d="M2 20h20"/><path d="M5 20V8l5 4V8l5 4V4h3a2 2 0 012 2v14"/><line x1="8" y1="16" x2="8" y2="17"/><line x1="12" y1="16" x2="12" y2="17"/><line x1="16" y1="16" x2="16" y2="17"/>',
|
|
234
|
+
'warehouse': '<path d="M22 20H2V10l10-7 10 7z"/><line x1="6" y1="20" x2="6" y2="14"/><line x1="10" y1="20" x2="10" y2="14"/><line x1="14" y1="20" x2="14" y2="14"/><line x1="18" y1="20" x2="18" y2="14"/>',
|
|
235
|
+
'landmark': '<line x1="3" y1="22" x2="21" y2="22"/><line x1="6" y1="18" x2="6" y2="11"/><line x1="10" y1="18" x2="10" y2="11"/><line x1="14" y1="18" x2="14" y2="11"/><line x1="18" y1="18" x2="18" y2="11"/><polygon points="12 2 20 7 4 7"/>',
|
|
236
|
+
'door-open': '<path d="M13 4h3a2 2 0 012 2v14"/><path d="M2 20h3"/><path d="M13 20h9"/><path d="M10 12v.01"/><path d="M13 4.562v16.157a1 1 0 01-1.242.97L5 20V5.562a2 2 0 011.515-1.94l4.243-1.06A1 1 0 0113 4.561z"/>',
|
|
237
|
+
'garage': '<path d="M22 20H2V10l10-8 10 8z"/><rect x="6" y="13" width="12" height="7"/><line x1="6" y1="15" x2="18" y2="15"/><line x1="6" y1="17" x2="18" y2="17"/>',
|
|
238
|
+
'fence': '<line x1="2" y1="9" x2="22" y2="9"/><line x1="2" y1="15" x2="22" y2="15"/><line x1="5" y1="4" x2="5" y2="20"/><line x1="10" y1="4" x2="10" y2="20"/><line x1="15" y1="4" x2="15" y2="20"/><line x1="20" y1="4" x2="20" y2="20"/>',
|
|
239
|
+
'construction': '<rect x="2" y="6" width="20" height="4" rx="1"/><line x1="17" y1="14" x2="7" y2="14"/><line x1="19" y1="18" x2="5" y2="18"/><line x1="10" y1="10" x2="6" y2="22"/><line x1="14" y1="10" x2="18" y2="22"/>',
|
|
240
|
+
|
|
241
|
+
// ── Shipping & Logistics ────────────────────────────────────
|
|
242
|
+
'box': '<path d="M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z"/><polyline points="3.27 6.96 12 12.01 20.73 6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/>',
|
|
243
|
+
'boxes': '<path d="M2.97 12.92A2 2 0 002 14.63v3.24a2 2 0 001.02 1.74l3.5 2a2 2 0 001.96 0l3.5-2a2 2 0 001.02-1.74v-3.24a2 2 0 00-.97-1.71L8.5 11a2 2 0 00-2.03.01z"/><path d="M14.97 12.92a2 2 0 00-.97 1.71v3.24a2 2 0 001.02 1.74l3.5 2a2 2 0 001.96 0l3.5-2A2 2 0 0024 17.87v-3.24a2 2 0 00-.97-1.71L20.5 11a2 2 0 00-2.03.01z"/><path d="M8.97 1.92A2 2 0 008 3.63v3.24a2 2 0 001.02 1.74l3.5 2a2 2 0 001.96 0l3.5-2A2 2 0 0019 6.87V3.63a2 2 0 00-.97-1.71L15.5 0a2 2 0 00-2.03.01z"/>',
|
|
244
|
+
'container': '<rect x="2" y="7" width="20" height="14" rx="2"/><line x1="2" y1="11" x2="22" y2="11"/><line x1="6" y1="11" x2="6" y2="21"/><line x1="10" y1="11" x2="10" y2="21"/><line x1="14" y1="11" x2="14" y2="21"/><line x1="18" y1="11" x2="18" y2="21"/><polyline points="6 7 12 3 18 7"/>',
|
|
245
|
+
'pallet': '<rect x="2" y="14" width="20" height="4"/><line x1="5" y1="18" x2="5" y2="22"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="19" y1="18" x2="19" y2="22"/><rect x="4" y="6" width="16" height="8" rx="1"/>',
|
|
246
|
+
'forklift': '<path d="M5 17h4V6H5v11z"/><path d="M9 17h3V12h4"/><circle cx="6.5" cy="19.5" r="2.5"/><circle cx="16" cy="19.5" r="2.5"/><line x1="16" y1="12" x2="16" y2="6"/><line x1="16" y1="6" x2="20" y2="6"/><line x1="20" y1="6" x2="20" y2="12"/>',
|
|
247
|
+
'plane': '<path d="M17.8 19.2L16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"/>',
|
|
248
|
+
'anchor': '<circle cx="12" cy="5" r="3"/><line x1="12" y1="22" x2="12" y2="8"/><path d="M5 12H2a10 10 0 0020 0h-3"/>',
|
|
249
|
+
'map': '<polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"/><line x1="8" y1="2" x2="8" y2="18"/><line x1="16" y1="6" x2="16" y2="22"/>',
|
|
250
|
+
'compass': '<circle cx="12" cy="12" r="10"/><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"/>',
|
|
251
|
+
'route': '<circle cx="6" cy="19" r="3"/><path d="M9 19h8.5a3.5 3.5 0 000-7h-11a3.5 3.5 0 010-7H15"/><circle cx="18" cy="5" r="3"/>',
|
|
252
|
+
|
|
253
|
+
// ── Tables & Data Grids ─────────────────────────────────────
|
|
254
|
+
'table': '<rect x="2" y="3" width="20" height="18" rx="2"/><line x1="2" y1="9" x2="22" y2="9"/><line x1="2" y1="15" x2="22" y2="15"/><line x1="9" y1="3" x2="9" y2="21"/><line x1="15" y1="3" x2="15" y2="21"/>',
|
|
255
|
+
'table-rows': '<rect x="2" y="3" width="20" height="18" rx="2"/><line x1="2" y1="9" x2="22" y2="9"/><line x1="2" y1="15" x2="22" y2="15"/>',
|
|
256
|
+
'table-columns': '<rect x="2" y="3" width="20" height="18" rx="2"/><line x1="9" y1="3" x2="9" y2="21"/><line x1="15" y1="3" x2="15" y2="21"/>',
|
|
257
|
+
'table-cells': '<rect x="2" y="3" width="20" height="18" rx="2"/><line x1="2" y1="9" x2="22" y2="9"/><line x1="2" y1="15" x2="22" y2="15"/><line x1="8" y1="3" x2="8" y2="21"/><line x1="14" y1="3" x2="14" y2="21"/><line x1="20" y1="3" x2="20" y2="21"/>',
|
|
258
|
+
'columns': '<rect x="3" y="3" width="7" height="18" rx="1"/><rect x="14" y="3" width="7" height="18" rx="1"/>',
|
|
259
|
+
'rows': '<rect x="3" y="3" width="18" height="7" rx="1"/><rect x="3" y="14" width="18" height="7" rx="1"/>',
|
|
260
|
+
'layout-grid': '<rect x="3" y="3" width="7" height="7" rx="1"/><rect x="14" y="3" width="7" height="7" rx="1"/><rect x="3" y="14" width="7" height="7" rx="1"/><rect x="14" y="14" width="7" height="7" rx="1"/>',
|
|
261
|
+
'sort-asc': '<line x1="12" y1="5" x2="12" y2="19"/><polyline points="8 9 12 5 16 9"/>',
|
|
262
|
+
'sort-desc': '<line x1="12" y1="5" x2="12" y2="19"/><polyline points="16 15 12 19 8 15"/>',
|
|
263
|
+
'arrow-up-down': '<line x1="7" y1="3" x2="7" y2="21"/><polyline points="4 7 7 3 10 7"/><line x1="17" y1="21" x2="17" y2="3"/><polyline points="20 17 17 21 14 17"/>',
|
|
264
|
+
'filter-x': '<path d="M13.013 3H2l8 9.46V19l4 2v-8.54l.9-1.055"/><line x1="22" y1="3" x2="16" y2="9"/><line x1="16" y1="3" x2="22" y2="9"/>',
|
|
265
|
+
'group': '<rect x="2" y="4" width="8" height="7" rx="1"/><rect x="14" y="4" width="8" height="7" rx="1"/><rect x="8" y="13" width="8" height="7" rx="1"/>',
|
|
266
|
+
'ungroup': '<rect x="2" y="2" width="8" height="8" rx="1"/><rect x="14" y="2" width="8" height="8" rx="1"/><rect x="2" y="14" width="8" height="8" rx="1"/><rect x="14" y="14" width="8" height="8" rx="1"/>',
|
|
267
|
+
'spreadsheet': '<rect x="2" y="3" width="20" height="18" rx="2"/><line x1="2" y1="8" x2="22" y2="8"/><line x1="7" y1="3" x2="7" y2="21"/><line x1="2" y1="13" x2="22" y2="13"/><line x1="2" y1="18" x2="22" y2="18"/>',
|
|
268
|
+
'pivot-table': '<rect x="2" y="3" width="20" height="18" rx="2"/><line x1="2" y1="9" x2="22" y2="9"/><line x1="9" y1="3" x2="9" y2="21"/><path d="M14 14l3 3-3 3"/><line x1="12" y1="17" x2="17" y2="17"/>',
|
|
269
|
+
|
|
270
|
+
// ── Time & Scheduling ───────────────────────────────────────────
|
|
271
|
+
'timer': '<circle cx="12" cy="14" r="8"/><polyline points="12 10 12 14 15 11"/><line x1="10" y1="2" x2="14" y2="2"/><line x1="12" y1="2" x2="12" y2="6"/>',
|
|
272
|
+
'hourglass': '<path d="M5 3h14"/><path d="M5 21h14"/><path d="M7 3c0 4 2 6 5 9-3 3-5 5-5 9"/><path d="M17 3c0 4-2 6-5 9 3 3 5 5 5 9"/>',
|
|
273
|
+
'alarm-clock': '<circle cx="12" cy="13" r="8"/><polyline points="12 9 12 13 15 13"/><path d="M5 3L2 6"/><path d="M19 3l3 3"/><path d="M6 20l-2 2"/><path d="M18 20l2 2"/>',
|
|
274
|
+
'calendar-check': '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/><polyline points="9 16 11 18 15 14"/>',
|
|
275
|
+
'calendar-plus': '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/><line x1="12" y1="14" x2="12" y2="18"/><line x1="10" y1="16" x2="14" y2="16"/>',
|
|
276
|
+
'calendar-x': '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/><line x1="10" y1="14" x2="14" y2="18"/><line x1="14" y1="14" x2="10" y2="18"/>',
|
|
277
|
+
'history': '<polyline points="1 4 1 10 7 10"/><path d="M3.51 15a9 9 0 102.13-9.36L1 10"/><polyline points="12 7 12 12 15 14"/>',
|
|
278
|
+
'watch': '<circle cx="12" cy="12" r="6"/><polyline points="12 9 12 12 13.5 13.5"/><path d="M9 18h6v4H9z"/><path d="M9 6h6V2H9z"/>',
|
|
279
|
+
|
|
280
|
+
// ── Business & Finance ──────────────────────────────────────────
|
|
281
|
+
'calculator': '<rect x="4" y="2" width="16" height="20" rx="2"/><rect x="8" y="6" width="8" height="4"/><line x1="8" y1="14" x2="8.01" y2="14"/><line x1="12" y1="14" x2="12.01" y2="14"/><line x1="16" y1="14" x2="16.01" y2="14"/><line x1="8" y1="18" x2="8.01" y2="18"/><line x1="12" y1="18" x2="12.01" y2="18"/><line x1="16" y1="18" x2="16.01" y2="18"/>',
|
|
282
|
+
'bank': '<path d="M2 20h20"/><path d="M12 2L2 9h20z"/><path d="M4 9v2h16V9"/><line x1="6" y1="11" x2="6" y2="20"/><line x1="10" y1="11" x2="10" y2="20"/><line x1="14" y1="11" x2="14" y2="20"/><line x1="18" y1="11" x2="18" y2="20"/>',
|
|
283
|
+
'coins': '<circle cx="9" cy="9" r="7"/><path d="M15.83 5.17a7 7 0 110 7.66"/><line x1="9" y1="6" x2="9" y2="12"/><path d="M11 7.5H8a1.5 1.5 0 000 3h2a1.5 1.5 0 010 3H7"/>',
|
|
284
|
+
'piggy-bank': '<path d="M19 10a7 7 0 01-7 7H9a7 7 0 01-.74-13.96"/><circle cx="15" cy="9" r="1"/><path d="M2 10l2-1"/><path d="M8 17v4"/><path d="M14 17v4"/><path d="M8 3h3l1 3"/><path d="M19 10h2a1 1 0 011 1v1a1 1 0 01-1 1h-2"/>',
|
|
285
|
+
'invoice': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="12" y1="18" x2="12" y2="12"/><path d="M14 13h-1.5a1.5 1.5 0 000 3h1a1.5 1.5 0 010 3H12"/><line x1="9" y1="18" x2="15" y2="18"/>',
|
|
286
|
+
'contract': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="8" y1="13" x2="16" y2="13"/><path d="M8 17c1 1 2.5 1 3.5 0s2-.5 3 0 1.5 0 1.5 0"/>',
|
|
287
|
+
'signature': '<path d="M3 20c1.5-1 3-5 4.5-5s2 4 3.5 4 2-6 3.5-6 2 3 3 3 1.5-2 2.5-2"/><line x1="3" y1="22" x2="21" y2="22"/>',
|
|
288
|
+
'stamp': '<path d="M5 21h14"/><rect x="4" y="15" width="16" height="4"/><path d="M10 15V9a2 2 0 114 0v6"/>',
|
|
289
|
+
'briefcase': '<rect x="2" y="7" width="20" height="14" rx="2"/><path d="M16 7V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v2"/><line x1="2" y1="13" x2="22" y2="13"/>',
|
|
290
|
+
'handshake': '<path d="M11 17l-1.5-1.5"/><path d="M14 14l3.5-3.5"/><path d="M2 9l4-4 3 3 4-4 4 4 3-3 4 4"/><path d="M6 9v8l3 3"/><path d="M18 9v8l-3 3"/>',
|
|
291
|
+
'scale': '<line x1="12" y1="3" x2="12" y2="7"/><path d="M5 7h14"/><path d="M5 7L2 14c0 1.66 1.34 3 3 3s3-1.34 3-3L5 7"/><path d="M19 7l-3 7c0 1.66 1.34 3 3 3s3-1.34 3-3l-3-7"/><line x1="12" y1="7" x2="12" y2="21"/>',
|
|
292
|
+
'target': '<circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="6"/><circle cx="12" cy="12" r="2"/>',
|
|
293
|
+
'crown': '<path d="M2 17l2-10 4 4 4-6 4 6 4-4 2 10z"/><path d="M2 17h20"/>',
|
|
294
|
+
'lighthouse': '<path d="M12 2v4"/><path d="M5 22l2-16h10l2 16"/><path d="M3 9h18"/><path d="M8 22h8"/><line x1="10" y1="13" x2="14" y2="13"/>',
|
|
295
|
+
|
|
296
|
+
// ── Social & Communication ──────────────────────────────────────
|
|
297
|
+
'rss': '<circle cx="5" cy="19" r="2"/><path d="M3 11a8 8 0 018 8"/><path d="M3 3a16 16 0 0116 16"/>',
|
|
298
|
+
'podcast': '<path d="M12 18v4"/><path d="M8 22h8"/><circle cx="12" cy="10" r="3"/><path d="M7.5 14.5A7 7 0 0112 3a7 7 0 014.5 11.5"/>',
|
|
299
|
+
'microphone': '<rect x="9" y="1" width="6" height="12" rx="3"/><path d="M5 10a7 7 0 0014 0"/><line x1="12" y1="17" x2="12" y2="22"/><line x1="8" y1="22" x2="16" y2="22"/>',
|
|
300
|
+
'microphone-off': '<rect x="9" y="1" width="6" height="12" rx="3"/><path d="M19 10a7 7 0 01-12.27 4.73"/><line x1="12" y1="17" x2="12" y2="22"/><line x1="8" y1="22" x2="16" y2="22"/><line x1="1" y1="1" x2="23" y2="23"/>',
|
|
301
|
+
'headphones': '<path d="M3 18v-6a9 9 0 0118 0v6"/><path d="M21 19a2 2 0 01-2 2h-1a2 2 0 01-2-2v-3a2 2 0 012-2h3z"/><path d="M3 19a2 2 0 002 2h1a2 2 0 002-2v-3a2 2 0 00-2-2H3z"/>',
|
|
302
|
+
'megaphone': '<path d="M3 11l18-5v12L3 13v-2z"/><path d="M11.6 16.8a3 3 0 11-5.8-1.6"/>',
|
|
303
|
+
'newspaper': '<path d="M4 22h16a2 2 0 002-2V4a2 2 0 00-2-2H8a2 2 0 00-2 2v16a2 2 0 01-2 2zm0 0a2 2 0 01-2-2V9"/><line x1="10" y1="6" x2="18" y2="6"/><line x1="10" y1="10" x2="18" y2="10"/><line x1="10" y1="14" x2="14" y2="14"/>',
|
|
304
|
+
'radio': '<rect x="2" y="6" width="20" height="16" rx="2"/><circle cx="12" cy="15" r="4"/><path d="M6 6l6-4 6 4"/><line x1="6" y1="10" x2="6.01" y2="10"/>',
|
|
305
|
+
'tv': '<rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/>',
|
|
306
|
+
'cast': '<path d="M2 16.1A5 5 0 015.9 20M2 12.05A9 9 0 019.95 20M2 8V6a2 2 0 012-2h16a2 2 0 012 2v12a2 2 0 01-2 2h-6"/><line x1="2" y1="20" x2="2.01" y2="20"/>',
|
|
307
|
+
'unlink': '<path d="M18.84 12.25l1.72-1.71a5 5 0 00-7.07-7.07l-1.72 1.71"/><path d="M5.16 11.75l-1.72 1.71a5 5 0 007.07 7.07l1.72-1.71"/><line x1="8" y1="2" x2="8" y2="5"/><line x1="2" y1="8" x2="5" y2="8"/><line x1="16" y1="19" x2="16" y2="22"/><line x1="19" y1="16" x2="22" y2="16"/>',
|
|
308
|
+
'user-check': '<path d="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="8.5" cy="7" r="4"/><polyline points="17 11 19 13 23 9"/>',
|
|
309
|
+
'user-x': '<path d="M16 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="8.5" cy="7" r="4"/><line x1="18" y1="8" x2="23" y2="13"/><line x1="23" y1="8" x2="18" y2="13"/>',
|
|
310
|
+
'users-round': '<circle cx="9" cy="7" r="4"/><path d="M3 21v-2a4 4 0 014-4h4a4 4 0 014 4v2"/><circle cx="18" cy="8" r="3"/><path d="M21 21v-1.5a3 3 0 00-3-3"/>',
|
|
311
|
+
|
|
312
|
+
// ── Media & Creative ────────────────────────────────────────────
|
|
313
|
+
'camera': '<path d="M23 19a2 2 0 01-2 2H3a2 2 0 01-2-2V8a2 2 0 012-2h4l2-3h6l2 3h4a2 2 0 012 2z"/><circle cx="12" cy="13" r="4"/>',
|
|
314
|
+
'camera-off': '<path d="M1 1l22 22"/><path d="M21 21H3a2 2 0 01-2-2V8a2 2 0 012-2h3m3-3h6l2 3h4a2 2 0 012 2v9.34"/><path d="M15 12.9A4 4 0 0011.1 9"/>',
|
|
315
|
+
'film': '<rect x="2" y="2" width="20" height="20" rx="2"/><line x1="7" y1="2" x2="7" y2="22"/><line x1="17" y1="2" x2="17" y2="22"/><line x1="2" y1="12" x2="22" y2="12"/><line x1="2" y1="7" x2="7" y2="7"/><line x1="2" y1="17" x2="7" y2="17"/><line x1="17" y1="7" x2="22" y2="7"/><line x1="17" y1="17" x2="22" y2="17"/>',
|
|
316
|
+
'palette': '<path d="M12 2a10 10 0 000 20c1.1 0 2-.9 2-2v-.5c0-.5-.2-1-.5-1.4-.3-.3-.5-.8-.5-1.3a2 2 0 012-2h2.3c3 0 5.7-2.5 5.7-5.5C23 6.5 18 2 12 2z"/><circle cx="7.5" cy="11.5" r="1.5"/><circle cx="12" cy="7.5" r="1.5"/><circle cx="16.5" cy="11.5" r="1.5"/>',
|
|
317
|
+
'brush': '<path d="M9.06 11.9l8.07-8.06a2.85 2.85 0 114.03 4.03l-8.06 8.08"/><path d="M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 00-3-3.02z"/>',
|
|
318
|
+
'pen-tool': '<path d="M12 19l7-7 3 3-7 7z"/><path d="M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"/><path d="M2 2l7.586 7.586"/><circle cx="11" cy="11" r="2"/>',
|
|
319
|
+
'type': '<polyline points="4 7 4 4 20 4 20 7"/><line x1="9" y1="20" x2="15" y2="20"/><line x1="12" y1="4" x2="12" y2="20"/>',
|
|
320
|
+
'align-left': '<line x1="17" y1="10" x2="3" y2="10"/><line x1="21" y1="6" x2="3" y2="6"/><line x1="21" y1="14" x2="3" y2="14"/><line x1="17" y1="18" x2="3" y2="18"/>',
|
|
321
|
+
'align-center': '<line x1="18" y1="10" x2="6" y2="10"/><line x1="21" y1="6" x2="3" y2="6"/><line x1="21" y1="14" x2="3" y2="14"/><line x1="18" y1="18" x2="6" y2="18"/>',
|
|
322
|
+
'align-right': '<line x1="21" y1="10" x2="7" y2="10"/><line x1="21" y1="6" x2="3" y2="6"/><line x1="21" y1="14" x2="3" y2="14"/><line x1="21" y1="18" x2="7" y2="18"/>',
|
|
323
|
+
'align-justify': '<line x1="21" y1="10" x2="3" y2="10"/><line x1="21" y1="6" x2="3" y2="6"/><line x1="21" y1="14" x2="3" y2="14"/><line x1="21" y1="18" x2="3" y2="18"/>',
|
|
324
|
+
'crop': '<path d="M6.13 1L6 16a2 2 0 002 2h15"/><path d="M1 6.13L16 6a2 2 0 012 2v15"/>',
|
|
325
|
+
'wand': '<path d="M15 4V2"/><path d="M15 16v-2"/><path d="M8 9h2"/><path d="M20 9h2"/><path d="M17.8 11.8L19 13"/><path d="M15 9h.01"/><path d="M17.8 6.2L19 5"/><path d="M11 6.2L9.7 5"/><path d="M11 11.8L9.7 13"/><line x1="3" y1="21" x2="12" y2="12"/>',
|
|
326
|
+
'sparkles': '<path d="M12 3l1.5 4.5L18 9l-4.5 1.5L12 15l-1.5-4.5L6 9l4.5-1.5z"/><path d="M5 17l.75 2.25L8 20l-2.25.75L5 23l-.75-2.25L2 20l2.25-.75z"/><path d="M19 14l.5 1.5L21 16l-1.5.5L19 18l-.5-1.5L17 16l1.5-.5z"/>',
|
|
327
|
+
'eraser': '<path d="M7 21h10"/><path d="M19.07 4.93a2.83 2.83 0 010 4l-9.19 9.2a2 2 0 01-2.83 0L3.93 15a2 2 0 010-2.83l9.2-9.2a2.83 2.83 0 014-.04z"/><path d="M8.5 13.5l4-4"/>',
|
|
328
|
+
'eyedropper': '<path d="M16.5 3.5a2.12 2.12 0 013 3L14 12l-4 1 1-4z"/><path d="M10 14L2.5 21.5"/><path d="M15.5 5.5l3 3"/>',
|
|
329
|
+
|
|
330
|
+
// ── Devices & Technology ────────────────────────────────────────
|
|
331
|
+
'smartphone': '<rect x="5" y="2" width="14" height="20" rx="2"/><line x1="12" y1="18" x2="12.01" y2="18"/>',
|
|
332
|
+
'tablet': '<rect x="4" y="2" width="16" height="20" rx="2"/><line x1="12" y1="18" x2="12.01" y2="18"/>',
|
|
333
|
+
'laptop': '<path d="M20 16V4a2 2 0 00-2-2H6a2 2 0 00-2 2v12"/><path d="M2 20h20a1 1 0 001-1v-1H1v1a1 1 0 001 1z"/>',
|
|
334
|
+
'monitor': '<rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/>',
|
|
335
|
+
'watch-smart': '<rect x="7" y="2" width="10" height="20" rx="3"/><path d="M12 7v3l2 1"/><line x1="7" y1="17" x2="17" y2="17"/>',
|
|
336
|
+
'bluetooth': '<polyline points="6.5 6.5 17.5 17.5 12 22V2l5.5 5.5-11 11"/>',
|
|
337
|
+
'usb': '<circle cx="10" cy="18" r="2"/><circle cx="4" cy="14" r="1"/><circle cx="16" cy="14" r="1"/><path d="M10 2v14"/><polyline points="8 4 10 2 12 4"/><path d="M10 10l-6 4"/><path d="M10 8l6 6"/>',
|
|
338
|
+
'battery': '<rect x="1" y="6" width="18" height="12" rx="2"/><line x1="23" y1="10" x2="23" y2="14"/><line x1="19" y1="10" x2="23" y2="10"/><line x1="19" y1="14" x2="23" y2="14"/>',
|
|
339
|
+
'battery-charging': '<rect x="1" y="6" width="18" height="12" rx="2"/><path d="M23 10v4"/><polyline points="11 8 8 12 13 12 10 16"/>',
|
|
340
|
+
'battery-low': '<rect x="1" y="6" width="18" height="12" rx="2"/><path d="M23 10v4"/><line x1="4" y1="10" x2="4" y2="14"/>',
|
|
341
|
+
'signal': '<line x1="2" y1="20" x2="2" y2="17"/><line x1="7" y1="20" x2="7" y2="14"/><line x1="12" y1="20" x2="12" y2="10"/><line x1="17" y1="20" x2="17" y2="6"/><line x1="22" y1="20" x2="22" y2="2"/>',
|
|
342
|
+
'satellite': '<circle cx="12" cy="12" r="2"/><path d="M7 17l-4.3 4.3"/><path d="M20.3 3.7L17 7"/><path d="M6.6 6.6C1 12.2 1 21 7 21c0 0 8.8 0 14.4-5.6"/><path d="M17.4 17.4C23 11.8 23 3 17 3c0 0-8.8 0-14.4 5.6"/>',
|
|
343
|
+
'fingerprint': '<path d="M2 12a10 10 0 0118-6"/><path d="M7 4a10 10 0 0113 8"/><path d="M5 20a10 10 0 01-1-8"/><path d="M12 12a2 2 0 00-4 0c0 3 1 6 3 9"/><path d="M12 8a6 6 0 016 6c0 2-.5 4-1.5 6"/>',
|
|
344
|
+
'robot': '<rect x="3" y="8" width="18" height="12" rx="2"/><circle cx="9" cy="14" r="1.5"/><circle cx="15" cy="14" r="1.5"/><path d="M12 2v4"/><circle cx="12" cy="2" r="1"/><path d="M1 12h2"/><path d="M21 12h2"/>',
|
|
345
|
+
'chip': '<rect x="5" y="5" width="14" height="14" rx="2"/><rect x="9" y="9" width="6" height="6"/><line x1="5" y1="9" x2="2" y2="9"/><line x1="5" y1="15" x2="2" y2="15"/><line x1="19" y1="9" x2="22" y2="9"/><line x1="19" y1="15" x2="22" y2="15"/><line x1="9" y1="5" x2="9" y2="2"/><line x1="15" y1="5" x2="15" y2="2"/><line x1="9" y1="19" x2="9" y2="22"/><line x1="15" y1="19" x2="15" y2="22"/>',
|
|
346
|
+
'scan': '<path d="M3 7V5a2 2 0 012-2h2"/><path d="M17 3h2a2 2 0 012 2v2"/><path d="M21 17v2a2 2 0 01-2 2h-2"/><path d="M7 21H5a2 2 0 01-2-2v-2"/>',
|
|
347
|
+
|
|
348
|
+
// ── Security & Privacy ──────────────────────────────────────────
|
|
349
|
+
'shield-check': '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><polyline points="9 12 11 14 15 10"/>',
|
|
350
|
+
'shield-x': '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><line x1="9" y1="9" x2="15" y2="15"/><line x1="15" y1="9" x2="9" y2="15"/>',
|
|
351
|
+
'shield-alert': '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/>',
|
|
352
|
+
'id-card': '<rect x="2" y="4" width="20" height="16" rx="2"/><circle cx="8" cy="11" r="2.5"/><path d="M14 8h4"/><path d="M14 12h4"/><path d="M5 17c0-1.7 1.3-3 3-3s3 1.3 3 3"/>',
|
|
353
|
+
'passport': '<rect x="3" y="1" width="18" height="22" rx="2"/><circle cx="12" cy="11" r="4"/><line x1="8" y1="18" x2="16" y2="18"/>',
|
|
354
|
+
'cctv': '<path d="M16 3h5v5"/><path d="M21 3l-7 7"/><path d="M8 14l-5 5"/><path d="M3 16v5h5"/><circle cx="12" cy="12" r="3"/><path d="M5 8a8 8 0 0111-3"/><path d="M19 16a8 8 0 01-11 3"/>',
|
|
355
|
+
'alarm': '<path d="M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9"/><path d="M14 21a2 2 0 01-4 0"/><path d="M1 8l2-3"/><path d="M23 8l-2-3"/><line x1="1" y1="1" x2="3" y2="3"/><line x1="21" y1="1" x2="23" y2="3"/>',
|
|
356
|
+
'bug': '<rect x="8" y="6" width="8" height="14" rx="4"/><path d="M8 10h-4"/><path d="M16 10h4"/><path d="M8 16h-4"/><path d="M16 16h4"/><path d="M12 2v4"/><line x1="6" y1="4" x2="8" y2="6"/><line x1="18" y1="4" x2="16" y2="6"/>',
|
|
357
|
+
'lock-keyhole': '<rect x="3" y="11" width="18" height="11" rx="2"/><path d="M7 11V7a5 5 0 0110 0v4"/><circle cx="12" cy="16" r="1.5"/><line x1="12" y1="17.5" x2="12" y2="19"/>',
|
|
358
|
+
'eye-scan': '<path d="M3 7V5a2 2 0 012-2h2"/><path d="M17 3h2a2 2 0 012 2v2"/><path d="M21 17v2a2 2 0 01-2 2h-2"/><path d="M7 21H5a2 2 0 01-2-2v-2"/><path d="M4 12s2.5-5 8-5 8 5 8 5-2.5 5-8 5-8-5-8-5z"/><circle cx="12" cy="12" r="2"/>',
|
|
359
|
+
|
|
360
|
+
// ── Document Types ──────────────────────────────────────────────
|
|
361
|
+
'file-plus': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="12" y1="18" x2="12" y2="12"/><line x1="9" y1="15" x2="15" y2="15"/>',
|
|
362
|
+
'file-minus': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="9" y1="15" x2="15" y2="15"/>',
|
|
363
|
+
'file-check': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><polyline points="9 15 11 17 15 13"/>',
|
|
364
|
+
'file-x': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="9.5" y1="12.5" x2="14.5" y2="17.5"/><line x1="14.5" y1="12.5" x2="9.5" y2="17.5"/>',
|
|
365
|
+
'file-search': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><circle cx="11.5" cy="14.5" r="2.5"/><line x1="13.27" y1="16.27" x2="15" y2="18"/>',
|
|
366
|
+
'file-code': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><polyline points="10 16 8 14 10 12"/><polyline points="14 12 16 14 14 16"/>',
|
|
367
|
+
'file-spreadsheet': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="8" y1="13" x2="16" y2="13"/><line x1="8" y1="17" x2="16" y2="17"/><line x1="12" y1="11" x2="12" y2="19"/>',
|
|
368
|
+
'file-image': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><circle cx="10" cy="13" r="2"/><path d="M20 17l-3-3-5 5-2-2-6 3"/>',
|
|
369
|
+
'file-audio': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><path d="M10 12v6"/><path d="M14 11v8"/><path d="M8 14v2"/><path d="M16 13v4"/><path d="M12 12v6"/>',
|
|
370
|
+
'file-video': '<path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z"/><polyline points="14 2 14 8 20 8"/><polygon points="10 12 16 15.5 10 19 10 12"/>',
|
|
371
|
+
'files': '<path d="M15 2H7a2 2 0 00-2 2v14a2 2 0 002 2h10a2 2 0 002-2V6z"/><polyline points="15 2 15 6 19 6"/><path d="M9 22h8a2 2 0 002-2V8"/>',
|
|
372
|
+
'folder-open': '<path d="M2 19a2 2 0 002 2h16a2 2 0 002-2V9a2 2 0 00-2-2h-7.93a2 2 0 01-1.66-.9l-.82-1.2A2 2 0 007.93 4H4a2 2 0 00-2 2z"/><path d="M2 13h20"/>',
|
|
373
|
+
'folder-plus': '<path d="M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z"/><line x1="12" y1="11" x2="12" y2="17"/><line x1="9" y1="14" x2="15" y2="14"/>',
|
|
374
|
+
'folder-check': '<path d="M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z"/><polyline points="9 14 11 16 15 12"/>',
|
|
375
|
+
|
|
376
|
+
// ── Healthcare & Wellness ───────────────────────────────────────
|
|
377
|
+
'stethoscope': '<path d="M4.8 2.3A5 5 0 008 10h0a5 5 0 003.2-7.7"/><path d="M8 10a2 2 0 002 2h0a2 2 0 002-2"/><path d="M12 10V6"/><path d="M4 10V6"/><path d="M12 12v4a4 4 0 01-8 0"/><circle cx="20" cy="10" r="2"/><path d="M20 12v2a4 4 0 01-8 0"/>',
|
|
378
|
+
'pill': '<path d="M10.5 1.5l12 12a4.24 4.24 0 010 6 4.24 4.24 0 01-6 0l-12-12a4.24 4.24 0 010-6 4.24 4.24 0 016 0z"/><line x1="10.5" y1="13.5" x2="13.5" y2="10.5"/>',
|
|
379
|
+
'syringe': '<path d="M18 2l4 4"/><path d="M17 7l-10 10"/><path d="M21 6l-9.5 9.5"/><path d="M7.5 16.5L1 23"/><path d="M11 13l-4 4"/><path d="M16 8l-4 4"/>',
|
|
380
|
+
'heart-pulse': '<path d="M19.5 12.57l-7.5 7.43-7.5-7.43A5 5 0 0112 4.35a5 5 0 017.5 8.22z"/><polyline points="4 12 8 12 10 8 12 16 14 12 20 12"/>',
|
|
381
|
+
'bandage': '<path d="M18 2l4 4-16 16-4-4z"/><line x1="11.5" y1="10.5" x2="11.51" y2="10.51"/><line x1="13.5" y1="12.5" x2="13.51" y2="12.51"/><line x1="11.5" y1="12.5" x2="11.51" y2="12.51"/><line x1="13.5" y1="10.5" x2="13.51" y2="10.51"/>',
|
|
382
|
+
'thermometer': '<path d="M14 14.76V3a2 2 0 00-4 0v11.76a4 4 0 104 0z"/><line x1="12" y1="9" x2="12" y2="15"/>',
|
|
383
|
+
'brain': '<path d="M9.5 2a3 3 0 00-2.83 4A3 3 0 007 12.17 3 3 0 009.5 18h0"/><path d="M14.5 2a3 3 0 012.83 4A3 3 0 0117 12.17 3 3 0 0014.5 18h0"/><path d="M9.5 18v4"/><path d="M14.5 18v4"/><path d="M12 2v16"/>',
|
|
384
|
+
'dna': '<path d="M2 15c6.67-6 13.33 0 20-6"/><path d="M2 9c6.67 6 13.33 0 20 6"/><path d="M5.5 12h13"/><path d="M3 6h4"/><path d="M17 6h4"/><path d="M3 18h4"/><path d="M17 18h4"/>',
|
|
385
|
+
'accessibility': '<circle cx="16" cy="4" r="2"/><path d="M18 22l-4-8-4 8"/><path d="M3 12h6l2-6h6"/>',
|
|
386
|
+
'baby': '<circle cx="12" cy="5" r="3"/><path d="M12 8v6"/><path d="M8 14l4-2 4 2"/><path d="M8 14l-2 6"/><path d="M16 14l2 6"/>',
|
|
387
|
+
'apple': '<path d="M12 3c-1-1-4-1-5 1S5 9 5 12c0 4 3 9 7 9s7-5 7-9c0-3-1-6.5-2-8s-4-2-5-1z"/><path d="M12 3c0-1 1-2 3-2"/>',
|
|
388
|
+
'dumbbell': '<path d="M6.5 6.5a2 2 0 013 0l8 8a2 2 0 010 3l0 0a2 2 0 01-3 0l-8-8a2 2 0 010-3z"/><path d="M4.2 4.2l1.4 1.4"/><path d="M18.4 18.4l1.4 1.4"/><path d="M2 8l4-4"/><path d="M18 22l4-4"/>',
|
|
389
|
+
|
|
390
|
+
// ── Education & Learning ────────────────────────────────────────
|
|
391
|
+
'book': '<path d="M4 19.5A2.5 2.5 0 016.5 17H20"/><path d="M4 4.5A2.5 2.5 0 016.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15z"/>',
|
|
392
|
+
'book-open': '<path d="M2 3h6a4 4 0 014 4v14a3 3 0 00-3-3H2z"/><path d="M22 3h-6a4 4 0 00-4 4v14a3 3 0 013-3h7z"/>',
|
|
393
|
+
'graduation-cap': '<polygon points="12 2 2 7 12 12 22 7 12 2"/><path d="M6 9.3V16l6 4 6-4V9.3"/><line x1="22" y1="7" x2="22" y2="13"/>',
|
|
394
|
+
'pencil': '<path d="M17 3a2.83 2.83 0 114 4L7.5 20.5 2 22l1.5-5.5z"/>',
|
|
395
|
+
'pen': '<path d="M13 2l7 7-9 9H4v-7z"/><line x1="14" y1="4" x2="20" y2="10"/>',
|
|
396
|
+
'notebook': '<rect x="4" y="2" width="16" height="20" rx="2"/><line x1="8" y1="2" x2="8" y2="22"/><line x1="12" y1="7" x2="17" y2="7"/><line x1="12" y1="11" x2="17" y2="11"/><line x1="12" y1="15" x2="15" y2="15"/>',
|
|
397
|
+
'presentation': '<path d="M2 3h20"/><rect x="4" y="3" width="16" height="12"/><line x1="12" y1="15" x2="12" y2="19"/><polyline points="8 21 12 19 16 21"/>',
|
|
398
|
+
'trophy': '<path d="M6 9H3a1 1 0 01-1-1V5a1 1 0 011-1h3"/><path d="M18 9h3a1 1 0 001-1V5a1 1 0 00-1-1h-3"/><path d="M6 4h12v6a6 6 0 01-12 0V4z"/><path d="M10 16v2h4v-2"/><path d="M7 22h10"/><path d="M10 18h4v4H10z"/>',
|
|
399
|
+
'medal': '<circle cx="12" cy="8" r="6"/><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"/><circle cx="12" cy="8" r="2"/>',
|
|
400
|
+
'school': '<path d="M3 22h18"/><path d="M5 22V10l7-5 7 5v12"/><rect x="9" y="14" width="6" height="8"/><path d="M9 6h6"/><circle cx="12" cy="10" r="1"/>',
|
|
401
|
+
'lightbulb': '<path d="M9 18h6"/><path d="M10 22h4"/><path d="M15.09 14c.18-.98.65-1.74 1.41-2.5A6 6 0 009.34 4.16a6 6 0 00-1.84 7.34c.76.76 1.23 1.52 1.41 2.5"/>',
|
|
402
|
+
'puzzle': '<path d="M19.4 14.9C20.2 16.4 21 17 21 17v5h-5s0-.8 1.5-1.6"/><path d="M12 22c1.5.8 1.5 1.6 1.5 1.6h5v-5s-.8 0-2.3-1.1"/><path d="M2 17s.8-.6 1.6-1.5C2 14 2 13 2 13V8h5s0 .8 1.5 1.6c1.5-2.2 2.5-2.6 3.5-2.6 1 0 2 .4 3.5 2.6C17 8.8 17 8 17 8h5v5s-1 0-2.6 1.5"/>',
|
|
403
|
+
|
|
404
|
+
// ── Transportation & Travel ─────────────────────────────────────
|
|
405
|
+
'car': '<path d="M5 17h14v-5l-2-4H7L5 12z"/><circle cx="7.5" cy="17" r="2.5"/><circle cx="16.5" cy="17" r="2.5"/><line x1="5" y1="12" x2="19" y2="12"/>',
|
|
406
|
+
'bus': '<rect x="3" y="3" width="18" height="16" rx="2"/><line x1="3" y1="11" x2="21" y2="11"/><line x1="12" y1="3" x2="12" y2="11"/><circle cx="7" cy="15" r="1"/><circle cx="17" cy="15" r="1"/><line x1="3" y1="19" x2="6" y2="22"/><line x1="21" y1="19" x2="18" y2="22"/>',
|
|
407
|
+
'train': '<rect x="4" y="3" width="16" height="16" rx="2"/><line x1="4" y1="11" x2="20" y2="11"/><circle cx="9" cy="15" r="1"/><circle cx="15" cy="15" r="1"/><path d="M7 19l-3 3"/><path d="M17 19l3 3"/><line x1="10" y1="3" x2="10" y2="11"/><line x1="14" y1="3" x2="14" y2="11"/>',
|
|
408
|
+
'bicycle': '<circle cx="5.5" cy="17.5" r="3.5"/><circle cx="18.5" cy="17.5" r="3.5"/><polyline points="12 5 7 17.5"/><polyline points="12 5 18.5 17.5"/><path d="M7 12h8l3.5 5.5"/><circle cx="12" cy="5" r="1"/>',
|
|
409
|
+
'ship': '<path d="M2 20l.8-2.2A4 4 0 016.5 15h11a4 4 0 013.7 2.8L22 20"/><path d="M6.5 15V8h11v7"/><path d="M9 8V5h6v3"/><path d="M2 20c1.5 1 3 1.5 5 1.5s3-.5 5-1.5c2 1 3 1.5 5 1.5s3.5-.5 5-1.5"/>',
|
|
410
|
+
'rocket': '<path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z"/><path d="M12 13l-3 3"/><path d="M15 10l-3 3"/><circle cx="16" cy="8" r="2"/><path d="M22 2S17 5 12 10l-1.5 1.5a7 7 0 010 9.9l-.1.1-1.5-1.5a5 5 0 010-7.07L12 10c5-5 8-10 10-8z"/>',
|
|
411
|
+
'parking': '<rect x="3" y="3" width="18" height="18" rx="2"/><path d="M9 17V7h4a3 3 0 010 6H9"/>',
|
|
412
|
+
'fuel': '<path d="M3 22V5a2 2 0 012-2h8a2 2 0 012 2v17"/><path d="M15 12h2a2 2 0 012 2v3a2 2 0 002 2h0a2 2 0 002-2V8l-3-3"/><line x1="3" y1="12" x2="15" y2="12"/>',
|
|
413
|
+
'taxi': '<path d="M5 17h14v-5l-2-4H7L5 12z"/><circle cx="7.5" cy="17" r="2.5"/><circle cx="16.5" cy="17" r="2.5"/><line x1="5" y1="12" x2="19" y2="12"/><rect x="9" y="4" width="6" height="4"/>',
|
|
414
|
+
'helicopter': '<path d="M2 4h20"/><path d="M12 4v7"/><path d="M12 11l8 4H4z"/><path d="M20 15v4"/><path d="M20 19h-2"/><circle cx="12" cy="11" r="2"/>',
|
|
415
|
+
'map-compass': '<circle cx="12" cy="12" r="10"/><polygon points="12 5 14 12 12 19 10 12 12 5"/><polygon points="5 12 12 10 19 12 12 14 5 12"/>',
|
|
416
|
+
'navigation': '<polygon points="3 11 22 2 13 21 11 13 3 11"/>',
|
|
417
|
+
|
|
418
|
+
// ── Food & Hospitality ──────────────────────────────────────────
|
|
419
|
+
'utensils': '<path d="M3 2v7c0 1.1.9 2 2 2h2a2 2 0 002-2V2"/><path d="M7 2v20"/><path d="M21 15V2c-2.5 0-5 2.7-5 6v3a2 2 0 002 2h1v7"/>',
|
|
420
|
+
'coffee': '<path d="M17 8h1a4 4 0 010 8h-1"/><path d="M3 8h14v9a4 4 0 01-4 4H7a4 4 0 01-4-4V8z"/><line x1="6" y1="2" x2="6" y2="4"/><line x1="10" y1="2" x2="10" y2="4"/><line x1="14" y1="2" x2="14" y2="4"/>',
|
|
421
|
+
'wine': '<path d="M8 22h8"/><path d="M12 15v7"/><path d="M7 2h10l-1.5 7a4.5 4.5 0 01-7 0z"/>',
|
|
422
|
+
'pizza': '<path d="M12 2a10 10 0 00-8.66 15L12 2z"/><path d="M12 2a10 10 0 018.66 15L12 2z"/><circle cx="10" cy="9" r="1"/><circle cx="14" cy="12" r="1"/><circle cx="9" cy="14" r="1"/>',
|
|
423
|
+
'cake': '<path d="M2 18h20v4H2z"/><path d="M4 18v-5a2 2 0 012-2h12a2 2 0 012 2v5"/><path d="M12 4a2 2 0 00-2 2v5"/><path d="M12 4a2 2 0 012 2v5"/><line x1="12" y1="2" x2="12" y2="4"/>',
|
|
424
|
+
'chef-hat': '<path d="M6 13V8a6 6 0 0112 0v5"/><path d="M6 13a3 3 0 01-3-3 3 3 0 013-3"/><path d="M18 13a3 3 0 003-3 3 3 0 00-3-3"/><path d="M6 21h12"/><path d="M6 13v4c0 2.2 1.8 4 4 4h4c2.2 0 4-1.8 4-4v-4"/>',
|
|
425
|
+
'grape': '<circle cx="12" cy="6" r="2"/><circle cx="9" cy="10" r="2"/><circle cx="15" cy="10" r="2"/><circle cx="7" cy="14" r="2"/><circle cx="12" cy="14" r="2"/><circle cx="17" cy="14" r="2"/><circle cx="10" cy="18" r="2"/><circle cx="14" cy="18" r="2"/><path d="M12 2v2"/>',
|
|
426
|
+
'wheat': '<path d="M2 22l10-10"/><path d="M7 12l5-5"/><path d="M5 17c2 0 3-1 3-3"/><path d="M9 13c2 0 3-1 3-3"/><path d="M13 9c2 0 3-1 3-3"/><path d="M6 14c0 2 1 3 3 3"/><path d="M10 10c0 2 1 3 3 3"/><path d="M14 6c0 2 1 3 3 3"/>',
|
|
427
|
+
|
|
428
|
+
// ── Home & Real Estate ──────────────────────────────────────────
|
|
429
|
+
'sofa': '<path d="M4 12V8a2 2 0 012-2h12a2 2 0 012 2v4"/><path d="M2 14a2 2 0 012-2h16a2 2 0 012 2v2a2 2 0 01-2 2H4a2 2 0 01-2-2v-2z"/><line x1="4" y1="18" x2="4" y2="20"/><line x1="20" y1="18" x2="20" y2="20"/>',
|
|
430
|
+
'lamp': '<path d="M8 21h8"/><path d="M12 15v6"/><path d="M6 15h12l3-10H3z"/>',
|
|
431
|
+
'bed': '<path d="M2 16V4a2 2 0 012-2h4v8h12v6"/><path d="M2 18h20"/><line x1="2" y1="18" x2="2" y2="21"/><line x1="22" y1="18" x2="22" y2="21"/><path d="M8 10h12a2 2 0 012 2v4"/>',
|
|
432
|
+
'bath': '<path d="M2 13h20v4a4 4 0 01-4 4H6a4 4 0 01-4-4v-4z"/><path d="M6 13V5a2 2 0 012-2h2a2 2 0 012 2"/><line x1="4" y1="21" x2="4" y2="22"/><line x1="20" y1="21" x2="20" y2="22"/>',
|
|
433
|
+
'garden': '<path d="M7 22H4v-8h3v8z"/><path d="M20 22h-3v-8h3v8z"/><circle cx="12" cy="8" r="4"/><path d="M12 12v6"/><path d="M8 10c-3-1-4-4-4-4"/><path d="M16 10c3-1 4-4 4-4"/>',
|
|
434
|
+
'door-closed': '<path d="M18 2H6a2 2 0 00-2 2v18h16V4a2 2 0 00-2-2z"/><circle cx="15" cy="13" r="1"/>',
|
|
435
|
+
'window': '<rect x="3" y="3" width="18" height="18" rx="2"/><line x1="12" y1="3" x2="12" y2="21"/><line x1="3" y1="12" x2="21" y2="12"/>',
|
|
436
|
+
'air-conditioning': '<rect x="2" y="4" width="20" height="12" rx="2"/><path d="M6 20c0-2 2-4 6-4s6 2 6 4"/><line x1="6" y1="12" x2="18" y2="12"/>',
|
|
437
|
+
'house': '<path d="M3 10l9-7 9 7v11a1 1 0 01-1 1H4a1 1 0 01-1-1z"/><polyline points="10 22 10 15 14 15 14 22"/>',
|
|
438
|
+
'apartment': '<rect x="3" y="2" width="18" height="20" rx="1"/><rect x="7" y="6" width="3" height="3"/><rect x="14" y="6" width="3" height="3"/><rect x="7" y="12" width="3" height="3"/><rect x="14" y="12" width="3" height="3"/><rect x="10" y="18" width="4" height="4"/>',
|
|
439
|
+
|
|
440
|
+
// ── Weather & Environment ───────────────────────────────────────
|
|
441
|
+
'umbrella': '<path d="M22 12a10.06 10.06 0 00-20 0z"/><path d="M12 12v8a2 2 0 004 0"/><line x1="12" y1="2" x2="12" y2="3"/>',
|
|
442
|
+
'wind': '<path d="M17.7 7.7a2.5 2.5 0 111.8 4.3H2"/><path d="M9.6 4.6a2 2 0 111.4 3.4H2"/><path d="M12.6 19.4a2 2 0 101.4-3.4H2"/>',
|
|
443
|
+
'droplet': '<path d="M12 2.69l5.66 5.66a8 8 0 11-11.31 0z"/>',
|
|
444
|
+
'snowflake': '<line x1="12" y1="2" x2="12" y2="22"/><line x1="2" y1="12" x2="22" y2="12"/><line x1="5.64" y1="5.64" x2="18.36" y2="18.36"/><line x1="18.36" y1="5.64" x2="5.64" y2="18.36"/><line x1="12" y1="2" x2="9" y2="5"/><line x1="12" y1="2" x2="15" y2="5"/><line x1="12" y1="22" x2="9" y2="19"/><line x1="12" y1="22" x2="15" y2="19"/>',
|
|
445
|
+
'cloud-lightning': '<path d="M19 16.9A5 5 0 0018 7h-1.26a8 8 0 10-11.62 9"/><polyline points="13 11 9 17 15 17 11 23"/>',
|
|
446
|
+
'sunrise': '<line x1="12" y1="2" x2="12" y2="6"/><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"/><line x1="1" y1="18" x2="3" y2="18"/><line x1="21" y1="18" x2="23" y2="18"/><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"/><line x1="23" y1="22" x2="1" y2="22"/><path d="M16 18a4 4 0 10-8 0"/>',
|
|
447
|
+
'sunset': '<line x1="12" y1="10" x2="12" y2="6"/><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"/><line x1="1" y1="18" x2="3" y2="18"/><line x1="21" y1="18" x2="23" y2="18"/><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"/><line x1="23" y1="22" x2="1" y2="22"/><path d="M16 18a4 4 0 10-8 0"/><polyline points="7 5 12 10 17 5"/>',
|
|
448
|
+
'leaf': '<path d="M11 20A7 7 0 019.8 6.9C15.5 4 21 3 21 3s-1 5.5-3.9 11.2A7 7 0 0111 20z"/><path d="M3 21c2.5-2.5 6-5 9-7"/>',
|
|
449
|
+
'tree': '<path d="M12 22v-8"/><path d="M7 14l5-10 5 10"/><path d="M5 18l7-8 7 8"/>',
|
|
450
|
+
'mountain': '<path d="M8 21l4.4-11 4.4 11"/><path d="M2 21l6-8.5L11 17"/><path d="M22 21l-5-7-2 3"/>',
|
|
451
|
+
|
|
452
|
+
// ── Workflow & Development ──────────────────────────────────────
|
|
453
|
+
'git-branch': '<line x1="6" y1="3" x2="6" y2="15"/><circle cx="18" cy="6" r="3"/><circle cx="6" cy="18" r="3"/><path d="M18 9a9 9 0 01-9 9"/>',
|
|
454
|
+
'git-merge': '<circle cx="18" cy="18" r="3"/><circle cx="6" cy="6" r="3"/><path d="M6 21V9a9 9 0 009 9"/>',
|
|
455
|
+
'git-pull-request': '<circle cx="18" cy="18" r="3"/><circle cx="6" cy="6" r="3"/><path d="M6 9v12"/><path d="M18 9v6"/>',
|
|
456
|
+
'git-commit': '<circle cx="12" cy="12" r="3"/><line x1="3" y1="12" x2="9" y2="12"/><line x1="15" y1="12" x2="21" y2="12"/>',
|
|
457
|
+
'milestone': '<path d="M12 2v20"/><path d="M12 6l6 4-6 4"/>',
|
|
458
|
+
'workflow': '<rect x="3" y="3" width="6" height="6" rx="1"/><rect x="15" y="3" width="6" height="6" rx="1"/><rect x="9" y="15" width="6" height="6" rx="1"/><path d="M6 9v3a3 3 0 003 3h0"/><path d="M18 9v3a3 3 0 01-3 3h0"/>',
|
|
459
|
+
'blocks': '<rect x="2" y="14" width="8" height="8" rx="1"/><rect x="14" y="14" width="8" height="8" rx="1"/><rect x="8" y="2" width="8" height="8" rx="1"/>',
|
|
460
|
+
'variable': '<path d="M8 21s-4-3-4-9 4-9 4-9"/><path d="M16 3s4 3 4 9-4 9-4 9"/><line x1="15" y1="9" x2="9" y2="15"/><line x1="9" y1="9" x2="15" y2="15"/>',
|
|
461
|
+
'regex': '<circle cx="6" cy="18" r="3"/><path d="M12 10l-2-2 2-2"/><path d="M15 8h2"/><path d="M19 6l-2 2 2 2"/>',
|
|
462
|
+
'binary': '<path d="M8 4v6"/><rect x="4" y="14" width="4" height="6" rx="1"/><path d="M18 4v6"/><rect x="14" y="4" width="4" height="6" rx="1"/><path d="M8 14v6"/><rect x="14" y="14" width="4" height="6" rx="1"/>',
|
|
463
|
+
'webhook': '<path d="M18 16.98h-5.99c-1.1 0-1.95.5-2.5 1.02"/><path d="M18 7.02h-5.99c-1.66 0-3.01 1.34-3.01 3v2.96"/><circle cx="6" cy="6" r="3"/><circle cx="6" cy="18" r="3"/><polyline points="15 14 18 17 15 20"/>',
|
|
464
|
+
'api': '<path d="M4 8l4 4-4 4"/><path d="M20 8l-4 4 4 4"/><line x1="14" y1="4" x2="10" y2="20"/>',
|
|
465
|
+
'cloud-cog': '<path d="M18 10h-1.26A8 8 0 109 20"/><circle cx="17" cy="17" r="3"/><path d="M17 13v1"/><path d="M17 20v1"/><path d="M13 17h1"/><path d="M20 17h1"/><path d="M14.2 14.2l.7.7"/><path d="M19.1 19.1l.7.7"/><path d="M14.2 19.8l.7-.7"/><path d="M19.1 14.9l.7-.7"/>',
|
|
466
|
+
'container-ship': '<rect x="3" y="8" width="14" height="8" rx="1"/><line x1="3" y1="12" x2="17" y2="12"/><line x1="7" y1="8" x2="7" y2="16"/><line x1="11" y1="8" x2="11" y2="16"/><polygon points="17 10 21 12 17 14 17 10"/>',
|
|
467
|
+
|
|
468
|
+
// ── Shapes & Symbols ────────────────────────────────────────────
|
|
469
|
+
'circle': '<circle cx="12" cy="12" r="10"/>',
|
|
470
|
+
'square': '<rect x="3" y="3" width="18" height="18" rx="2"/>',
|
|
471
|
+
'triangle': '<path d="M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z"/>',
|
|
472
|
+
'diamond': '<path d="M12 2l10 10-10 10L2 12z"/>',
|
|
473
|
+
'hexagon': '<path d="M12 2l8.66 5v10L12 22l-8.66-5V7z"/>',
|
|
474
|
+
'infinity': '<path d="M12 12c-2-2.67-4-4-6-4a4 4 0 100 8c2 0 4-1.33 6-4zm0 0c2 2.67 4 4 6 4a4 4 0 000-8c-2 0-4 1.33-6 4z"/>',
|
|
475
|
+
'asterisk': '<line x1="12" y1="2" x2="12" y2="22"/><line x1="3.5" y1="7" x2="20.5" y2="17"/><line x1="20.5" y1="7" x2="3.5" y2="17"/>',
|
|
476
|
+
'hash-tag': '<line x1="5" y1="9" x2="19" y2="9"/><line x1="5" y1="15" x2="19" y2="15"/><line x1="10" y1="4" x2="8" y2="20"/><line x1="16" y1="4" x2="14" y2="20"/>',
|
|
477
|
+
'at': '<circle cx="12" cy="12" r="4"/><path d="M16 12v1.5a2.5 2.5 0 005 0V12a10 10 0 10-4 8"/>',
|
|
478
|
+
'parentheses': '<path d="M8 3c-4 3.33-4 14.67 0 18"/><path d="M16 3c4 3.33 4 14.67 0 18"/>',
|
|
479
|
+
};
|