designkit-ai 1.0.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.
Files changed (530) hide show
  1. package/AI-AGENT.md +51 -0
  2. package/LICENSE +21 -0
  3. package/README.md +517 -0
  4. package/bin/designkit.js +61 -0
  5. package/components/_index.md +81 -0
  6. package/components/app-mobile/README.md +117 -0
  7. package/components/app-mobile/badges/badge-count.html +9 -0
  8. package/components/app-mobile/badges/badge-dot.html +9 -0
  9. package/components/app-mobile/badges/badge-large.html +9 -0
  10. package/components/app-mobile/buttons/button-filled.html +9 -0
  11. package/components/app-mobile/buttons/button-icon.html +11 -0
  12. package/components/app-mobile/buttons/button-outlined.html +9 -0
  13. package/components/app-mobile/buttons/button-text.html +9 -0
  14. package/components/app-mobile/buttons/button-tonal.html +9 -0
  15. package/components/app-mobile/buttons/fab-extended.html +12 -0
  16. package/components/app-mobile/buttons/fab-small.html +11 -0
  17. package/components/app-mobile/buttons/fab.html +11 -0
  18. package/components/app-mobile/buttons/icon-button-filled.html +11 -0
  19. package/components/app-mobile/buttons/icon-button-tonal.html +11 -0
  20. package/components/app-mobile/buttons/segmented-button.html +13 -0
  21. package/components/app-mobile/cards/card-elevated.html +15 -0
  22. package/components/app-mobile/cards/card-filled.html +15 -0
  23. package/components/app-mobile/cards/card-outlined.html +15 -0
  24. package/components/app-mobile/charts/bar-chart.html +20 -0
  25. package/components/app-mobile/charts/donut-chart.html +20 -0
  26. package/components/app-mobile/charts/horizontal-bar.html +15 -0
  27. package/components/app-mobile/charts/line-chart.html +26 -0
  28. package/components/app-mobile/charts/progress-ring.html +17 -0
  29. package/components/app-mobile/charts/sparkline.html +11 -0
  30. package/components/app-mobile/charts/stat-card.html +18 -0
  31. package/components/app-mobile/chips/chip-assist.html +12 -0
  32. package/components/app-mobile/chips/chip-filter.html +12 -0
  33. package/components/app-mobile/chips/chip-input.html +14 -0
  34. package/components/app-mobile/chips/chip-suggestion.html +9 -0
  35. package/components/app-mobile/data-display/avatar-group.html +35 -0
  36. package/components/app-mobile/dialogs/dialog-basic.html +16 -0
  37. package/components/app-mobile/dialogs/dialog-fullscreen.html +18 -0
  38. package/components/app-mobile/dividers/divider-full.html +9 -0
  39. package/components/app-mobile/dividers/divider-inset.html +9 -0
  40. package/components/app-mobile/ecommerce/cart-item.html +29 -0
  41. package/components/app-mobile/ecommerce/cart-summary.html +31 -0
  42. package/components/app-mobile/ecommerce/color-selector.html +17 -0
  43. package/components/app-mobile/ecommerce/order-status.html +25 -0
  44. package/components/app-mobile/ecommerce/product-detail-hero.html +45 -0
  45. package/components/app-mobile/ecommerce/size-selector.html +17 -0
  46. package/components/app-mobile/ecommerce/wishlist-item.html +22 -0
  47. package/components/app-mobile/education/assignment-card.html +24 -0
  48. package/components/app-mobile/education/certificate.html +30 -0
  49. package/components/app-mobile/education/course-card.html +32 -0
  50. package/components/app-mobile/education/grade-report.html +53 -0
  51. package/components/app-mobile/education/lesson-progress.html +21 -0
  52. package/components/app-mobile/education/quiz-mcq.html +35 -0
  53. package/components/app-mobile/education/quiz-truefalse.html +26 -0
  54. package/components/app-mobile/education/student-dashboard.html +57 -0
  55. package/components/app-mobile/feedback/banner.html +13 -0
  56. package/components/app-mobile/feedback/progress-circular.html +14 -0
  57. package/components/app-mobile/feedback/progress-linear.html +11 -0
  58. package/components/app-mobile/feedback/skeleton.html +20 -0
  59. package/components/app-mobile/feedback/snackbar.html +15 -0
  60. package/components/app-mobile/feedback/tooltip.html +9 -0
  61. package/components/app-mobile/finance/bank-account-card.html +36 -0
  62. package/components/app-mobile/finance/budget-category.html +24 -0
  63. package/components/app-mobile/finance/credit-score.html +29 -0
  64. package/components/app-mobile/finance/investment-portfolio.html +52 -0
  65. package/components/app-mobile/finance/transaction-row.html +26 -0
  66. package/components/app-mobile/finance/transfer-form.html +42 -0
  67. package/components/app-mobile/fitness/body-metrics.html +41 -0
  68. package/components/app-mobile/fitness/calorie-tracker.html +48 -0
  69. package/components/app-mobile/fitness/exercise-timer.html +30 -0
  70. package/components/app-mobile/fitness/meal-plan.html +36 -0
  71. package/components/app-mobile/fitness/sleep-tracker.html +50 -0
  72. package/components/app-mobile/fitness/workout-card.html +37 -0
  73. package/components/app-mobile/food/cuisine-filter.html +39 -0
  74. package/components/app-mobile/food/menu-item.html +25 -0
  75. package/components/app-mobile/food/order-tracker.html +46 -0
  76. package/components/app-mobile/food/restaurant-card.html +34 -0
  77. package/components/app-mobile/food/review-card.html +35 -0
  78. package/components/app-mobile/food/table-reservation.html +42 -0
  79. package/components/app-mobile/forms/form-address.html +41 -0
  80. package/components/app-mobile/forms/form-payment.html +37 -0
  81. package/components/app-mobile/forms/form-profile.html +39 -0
  82. package/components/app-mobile/forms/time-picker.html +28 -0
  83. package/components/app-mobile/healthcare/appointment-card.html +26 -0
  84. package/components/app-mobile/healthcare/doctor-profile.html +32 -0
  85. package/components/app-mobile/healthcare/health-metric-chart.html +51 -0
  86. package/components/app-mobile/healthcare/insurance-card.html +35 -0
  87. package/components/app-mobile/healthcare/lab-results.html +23 -0
  88. package/components/app-mobile/healthcare/medication-reminder.html +24 -0
  89. package/components/app-mobile/healthcare/symptom-checker.html +42 -0
  90. package/components/app-mobile/healthcare/vitals-dashboard.html +56 -0
  91. package/components/app-mobile/inputs/date-picker.html +68 -0
  92. package/components/app-mobile/inputs/file-upload.html +13 -0
  93. package/components/app-mobile/inputs/otp-input.html +16 -0
  94. package/components/app-mobile/inputs/password-field.html +13 -0
  95. package/components/app-mobile/inputs/search-bar.html +17 -0
  96. package/components/app-mobile/inputs/select.html +17 -0
  97. package/components/app-mobile/inputs/text-field-filled.html +12 -0
  98. package/components/app-mobile/inputs/text-field-outlined.html +12 -0
  99. package/components/app-mobile/inputs/textarea.html +12 -0
  100. package/components/app-mobile/inputs/time-picker.html +33 -0
  101. package/components/app-mobile/job/application-status.html +18 -0
  102. package/components/app-mobile/job/interview-schedule.html +32 -0
  103. package/components/app-mobile/lists/list-item-1line.html +14 -0
  104. package/components/app-mobile/lists/list-item-2line.html +20 -0
  105. package/components/app-mobile/lists/list-item-3line.html +17 -0
  106. package/components/app-mobile/logistics/delivery-map.html +40 -0
  107. package/components/app-mobile/logistics/driver-card.html +25 -0
  108. package/components/app-mobile/logistics/package-tracker.html +42 -0
  109. package/components/app-mobile/logistics/shipment-row.html +20 -0
  110. package/components/app-mobile/media/audio-player.html +38 -0
  111. package/components/app-mobile/media/image-carousel.html +28 -0
  112. package/components/app-mobile/menus/menu-context.html +13 -0
  113. package/components/app-mobile/menus/menu-dropdown.html +14 -0
  114. package/components/app-mobile/native/gesture-nav-bar.html +11 -0
  115. package/components/app-mobile/native/ios-action-sheet.html +19 -0
  116. package/components/app-mobile/native/ios-alert.html +18 -0
  117. package/components/app-mobile/native/ios-home-indicator.html +11 -0
  118. package/components/app-mobile/native/ios-list-cell.html +14 -0
  119. package/components/app-mobile/native/ios-nav-bar.html +16 -0
  120. package/components/app-mobile/native/ios-page-sheet.html +17 -0
  121. package/components/app-mobile/native/ios-search-bar.html +15 -0
  122. package/components/app-mobile/native/ios-segmented-control.html +13 -0
  123. package/components/app-mobile/native/ios-status-bar.html +17 -0
  124. package/components/app-mobile/native/ios-tab-bar.html +31 -0
  125. package/components/app-mobile/native/ios-wheel-picker.html +34 -0
  126. package/components/app-mobile/native/notification-item.html +19 -0
  127. package/components/app-mobile/native/permission-dialog.html +18 -0
  128. package/components/app-mobile/native/status-bar.html +16 -0
  129. package/components/app-mobile/navbars/bottom-app-bar.html +19 -0
  130. package/components/app-mobile/navbars/bottom-nav-3.html +28 -0
  131. package/components/app-mobile/navbars/bottom-nav-4.html +26 -0
  132. package/components/app-mobile/navbars/bottom-nav-5.html +30 -0
  133. package/components/app-mobile/navbars/top-app-bar-center.html +17 -0
  134. package/components/app-mobile/navbars/top-app-bar-large.html +20 -0
  135. package/components/app-mobile/navbars/top-app-bar-medium.html +20 -0
  136. package/components/app-mobile/navbars/top-app-bar-small.html +22 -0
  137. package/components/app-mobile/navigation/back-header.html +32 -0
  138. package/components/app-mobile/navigation/segmented-control.html +19 -0
  139. package/components/app-mobile/navigation/stepper-vertical.html +65 -0
  140. package/components/app-mobile/patterns/accordion.html +20 -0
  141. package/components/app-mobile/patterns/activity-feed.html +26 -0
  142. package/components/app-mobile/patterns/audio-waveform.html +34 -0
  143. package/components/app-mobile/patterns/avatar-group.html +14 -0
  144. package/components/app-mobile/patterns/breadcrumb.html +15 -0
  145. package/components/app-mobile/patterns/calendar-month.html +56 -0
  146. package/components/app-mobile/patterns/camera-viewfinder.html +33 -0
  147. package/components/app-mobile/patterns/card-horizontal.html +15 -0
  148. package/components/app-mobile/patterns/cart-item.html +23 -0
  149. package/components/app-mobile/patterns/category-pills.html +15 -0
  150. package/components/app-mobile/patterns/chat-bubble-received.html +15 -0
  151. package/components/app-mobile/patterns/chat-bubble-sent.html +14 -0
  152. package/components/app-mobile/patterns/chat-conversation.html +27 -0
  153. package/components/app-mobile/patterns/chat-input-bar.html +13 -0
  154. package/components/app-mobile/patterns/code-editor.html +29 -0
  155. package/components/app-mobile/patterns/comment-item.html +15 -0
  156. package/components/app-mobile/patterns/contact-card.html +19 -0
  157. package/components/app-mobile/patterns/data-table.html +25 -0
  158. package/components/app-mobile/patterns/empty-state.html +19 -0
  159. package/components/app-mobile/patterns/error-screen.html +14 -0
  160. package/components/app-mobile/patterns/event-card.html +22 -0
  161. package/components/app-mobile/patterns/image-editor.html +34 -0
  162. package/components/app-mobile/patterns/image-grid.html +16 -0
  163. package/components/app-mobile/patterns/login-form.html +22 -0
  164. package/components/app-mobile/patterns/map-card.html +19 -0
  165. package/components/app-mobile/patterns/media-player.html +26 -0
  166. package/components/app-mobile/patterns/notification-list.html +25 -0
  167. package/components/app-mobile/patterns/onboarding-slide.html +24 -0
  168. package/components/app-mobile/patterns/order-summary.html +16 -0
  169. package/components/app-mobile/patterns/order-tracker.html +27 -0
  170. package/components/app-mobile/patterns/pagination.html +17 -0
  171. package/components/app-mobile/patterns/post-card.html +28 -0
  172. package/components/app-mobile/patterns/product-card.html +26 -0
  173. package/components/app-mobile/patterns/profile-header.html +18 -0
  174. package/components/app-mobile/patterns/rating-stars.html +15 -0
  175. package/components/app-mobile/patterns/review-card.html +22 -0
  176. package/components/app-mobile/patterns/search-results.html +35 -0
  177. package/components/app-mobile/patterns/settings-group.html +30 -0
  178. package/components/app-mobile/patterns/stepper-horizontal.html +24 -0
  179. package/components/app-mobile/patterns/story-circle.html +16 -0
  180. package/components/app-mobile/patterns/swipe-action.html +19 -0
  181. package/components/app-mobile/patterns/tag-pills.html +14 -0
  182. package/components/app-mobile/patterns/timeline-item.html +19 -0
  183. package/components/app-mobile/patterns/todo-item.html +18 -0
  184. package/components/app-mobile/patterns/video-editor-timeline.html +36 -0
  185. package/components/app-mobile/patterns/video-player.html +33 -0
  186. package/components/app-mobile/patterns/wallet-card.html +18 -0
  187. package/components/app-mobile/sliders/slider-continuous.html +14 -0
  188. package/components/app-mobile/sliders/slider-discrete.html +21 -0
  189. package/components/app-mobile/social/chat-bubble-received.html +15 -0
  190. package/components/app-mobile/social/chat-bubble-sent.html +16 -0
  191. package/components/app-mobile/social/notification-item.html +17 -0
  192. package/components/app-mobile/social/post-card.html +46 -0
  193. package/components/app-mobile/social/reaction-bar.html +29 -0
  194. package/components/app-mobile/social/story-circle.html +15 -0
  195. package/components/app-mobile/social/user-profile-card.html +29 -0
  196. package/components/app-mobile/surfaces/bottom-sheet.html +23 -0
  197. package/components/app-mobile/surfaces/nav-drawer.html +20 -0
  198. package/components/app-mobile/surfaces/nav-rail.html +14 -0
  199. package/components/app-mobile/surfaces/side-sheet.html +17 -0
  200. package/components/app-mobile/tabs/tabs-primary.html +13 -0
  201. package/components/app-mobile/tabs/tabs-secondary.html +13 -0
  202. package/components/app-mobile/toggles/checkbox.html +14 -0
  203. package/components/app-mobile/toggles/radio.html +14 -0
  204. package/components/app-mobile/toggles/switch.html +11 -0
  205. package/components/app-mobile/travel/booking-summary.html +51 -0
  206. package/components/app-mobile/travel/flight-card.html +41 -0
  207. package/components/app-mobile/travel/hotel-card.html +35 -0
  208. package/components/app-mobile/travel/itinerary-item.html +29 -0
  209. package/components/app-mobile/travel/map-pins.html +42 -0
  210. package/components/app-mobile/travel/travel-date-picker.html +72 -0
  211. package/components/common/decorations/abstract-lines.html +30 -0
  212. package/components/common/decorations/circle-rings.html +26 -0
  213. package/components/common/decorations/corner-decoration.html +27 -0
  214. package/components/common/decorations/dots-pattern.html +51 -0
  215. package/components/common/decorations/gradient-blob.html +19 -0
  216. package/components/common/decorations/mesh-gradient.html +32 -0
  217. package/components/common/decorations/sparkle-burst.html +35 -0
  218. package/components/common/decorations/wave-divider.html +17 -0
  219. package/components/common/illustrations/empty-cart.html +27 -0
  220. package/components/common/illustrations/empty-inbox.html +28 -0
  221. package/components/common/illustrations/empty-search.html +26 -0
  222. package/components/common/illustrations/error-404.html +29 -0
  223. package/components/common/illustrations/no-data.html +31 -0
  224. package/components/common/illustrations/success-check.html +33 -0
  225. package/components/common/illustrations/upload-cloud.html +23 -0
  226. package/components/common/illustrations/welcome.html +31 -0
  227. package/components/common/mockup-elements/avatar-placeholder.html +17 -0
  228. package/components/common/mockup-elements/browser-chrome.html +37 -0
  229. package/components/common/mockup-elements/chart-bar.html +42 -0
  230. package/components/common/mockup-elements/image-placeholder.html +27 -0
  231. package/components/common/mockup-elements/laptop-frame.html +32 -0
  232. package/components/common/mockup-elements/map-placeholder.html +39 -0
  233. package/components/common/mockup-elements/phone-frame.html +29 -0
  234. package/components/common/mockup-elements/status-bar-android.html +30 -0
  235. package/components/common/mockup-elements/status-bar-ios.html +26 -0
  236. package/components/common/mockup-elements/video-placeholder.html +29 -0
  237. package/components/common/ui-icons/icon-add-circle.html +12 -0
  238. package/components/common/ui-icons/icon-airdrop.html +10 -0
  239. package/components/common/ui-icons/icon-airplay.html +10 -0
  240. package/components/common/ui-icons/icon-apple-logo.html +10 -0
  241. package/components/common/ui-icons/icon-arrow-back.html +11 -0
  242. package/components/common/ui-icons/icon-arrow-down.html +10 -0
  243. package/components/common/ui-icons/icon-arrow-right.html +10 -0
  244. package/components/common/ui-icons/icon-arrow-up.html +10 -0
  245. package/components/common/ui-icons/icon-bag.html +10 -0
  246. package/components/common/ui-icons/icon-battery.html +10 -0
  247. package/components/common/ui-icons/icon-bluetooth.html +10 -0
  248. package/components/common/ui-icons/icon-bolt.html +10 -0
  249. package/components/common/ui-icons/icon-bookmark-fill.html +10 -0
  250. package/components/common/ui-icons/icon-bookmark.html +10 -0
  251. package/components/common/ui-icons/icon-bubble-left.html +10 -0
  252. package/components/common/ui-icons/icon-calendar.html +19 -0
  253. package/components/common/ui-icons/icon-camera.html +11 -0
  254. package/components/common/ui-icons/icon-cart.html +10 -0
  255. package/components/common/ui-icons/icon-checkmark.html +10 -0
  256. package/components/common/ui-icons/icon-chevron-down.html +10 -0
  257. package/components/common/ui-icons/icon-chevron-left.html +10 -0
  258. package/components/common/ui-icons/icon-chevron-right.html +10 -0
  259. package/components/common/ui-icons/icon-chevron-up.html +10 -0
  260. package/components/common/ui-icons/icon-clock.html +10 -0
  261. package/components/common/ui-icons/icon-creditcard.html +10 -0
  262. package/components/common/ui-icons/icon-doc.html +10 -0
  263. package/components/common/ui-icons/icon-download.html +10 -0
  264. package/components/common/ui-icons/icon-ellipsis-vertical.html +10 -0
  265. package/components/common/ui-icons/icon-ellipsis.html +10 -0
  266. package/components/common/ui-icons/icon-envelope.html +10 -0
  267. package/components/common/ui-icons/icon-eye-slash.html +10 -0
  268. package/components/common/ui-icons/icon-eye.html +10 -0
  269. package/components/common/ui-icons/icon-faceid.html +10 -0
  270. package/components/common/ui-icons/icon-favorite.html +10 -0
  271. package/components/common/ui-icons/icon-folder.html +10 -0
  272. package/components/common/ui-icons/icon-globe.html +10 -0
  273. package/components/common/ui-icons/icon-heart-fill.html +10 -0
  274. package/components/common/ui-icons/icon-heart.html +10 -0
  275. package/components/common/ui-icons/icon-home.html +10 -0
  276. package/components/common/ui-icons/icon-link.html +10 -0
  277. package/components/common/ui-icons/icon-list-bullet.html +10 -0
  278. package/components/common/ui-icons/icon-location.html +11 -0
  279. package/components/common/ui-icons/icon-lock.html +10 -0
  280. package/components/common/ui-icons/icon-magnifying-glass.html +10 -0
  281. package/components/common/ui-icons/icon-map.html +10 -0
  282. package/components/common/ui-icons/icon-menu-hamburger.html +12 -0
  283. package/components/common/ui-icons/icon-mic.html +10 -0
  284. package/components/common/ui-icons/icon-minus.html +10 -0
  285. package/components/common/ui-icons/icon-notification.html +11 -0
  286. package/components/common/ui-icons/icon-paperplane.html +10 -0
  287. package/components/common/ui-icons/icon-pause.html +10 -0
  288. package/components/common/ui-icons/icon-pencil.html +10 -0
  289. package/components/common/ui-icons/icon-person-2.html +10 -0
  290. package/components/common/ui-icons/icon-person-crop-circle.html +10 -0
  291. package/components/common/ui-icons/icon-phone-fill.html +10 -0
  292. package/components/common/ui-icons/icon-photo.html +10 -0
  293. package/components/common/ui-icons/icon-play-fill.html +10 -0
  294. package/components/common/ui-icons/icon-plus.html +10 -0
  295. package/components/common/ui-icons/icon-profile.html +11 -0
  296. package/components/common/ui-icons/icon-qrcode.html +10 -0
  297. package/components/common/ui-icons/icon-settings.html +11 -0
  298. package/components/common/ui-icons/icon-share.html +14 -0
  299. package/components/common/ui-icons/icon-slider-horizontal.html +10 -0
  300. package/components/common/ui-icons/icon-square-grid.html +10 -0
  301. package/components/common/ui-icons/icon-star-fill.html +10 -0
  302. package/components/common/ui-icons/icon-star.html +10 -0
  303. package/components/common/ui-icons/icon-touchid.html +10 -0
  304. package/components/common/ui-icons/icon-trash.html +10 -0
  305. package/components/common/ui-icons/icon-upload.html +10 -0
  306. package/components/common/ui-icons/icon-video.html +10 -0
  307. package/components/common/ui-icons/icon-wifi.html +10 -0
  308. package/components/common/ui-icons/icon-xmark.html +10 -0
  309. package/components/componentmap-app-mobile.md +210 -0
  310. package/components/componentmap-web.md +206 -0
  311. package/components/web/README.md +110 -0
  312. package/components/web/account/payment-method.html +13 -0
  313. package/components/web/account/profile-card.html +18 -0
  314. package/components/web/account/subscription-card.html +21 -0
  315. package/components/web/badges/badge-set.html +14 -0
  316. package/components/web/buttons/button-danger.html +10 -0
  317. package/components/web/buttons/button-ghost.html +10 -0
  318. package/components/web/buttons/button-group.html +12 -0
  319. package/components/web/buttons/button-icon.html +10 -0
  320. package/components/web/buttons/button-primary.html +11 -0
  321. package/components/web/buttons/button-secondary.html +10 -0
  322. package/components/web/cards/card-basic.html +11 -0
  323. package/components/web/cards/card-feature.html +12 -0
  324. package/components/web/cards/card-image.html +16 -0
  325. package/components/web/cards/card-pricing.html +21 -0
  326. package/components/web/cards/card-stat.html +15 -0
  327. package/components/web/cards/card-testimonial.html +21 -0
  328. package/components/web/cart/cart-page.html +30 -0
  329. package/components/web/cart/checkout-form.html +27 -0
  330. package/components/web/cart/order-confirmation.html +24 -0
  331. package/components/web/charts/chart-area.html +25 -0
  332. package/components/web/charts/chart-bar.html +19 -0
  333. package/components/web/charts/chart-donut.html +27 -0
  334. package/components/web/content/author-card.html +15 -0
  335. package/components/web/content/blog-card-horizontal.html +16 -0
  336. package/components/web/cta/cta-centered.html +15 -0
  337. package/components/web/cta/cta-newsletter.html +16 -0
  338. package/components/web/cta/cta-with-image.html +17 -0
  339. package/components/web/data-display/accordion.html +45 -0
  340. package/components/web/data-display/grid-view.html +21 -0
  341. package/components/web/data-display/list-view.html +27 -0
  342. package/components/web/data-display/progress-steps.html +39 -0
  343. package/components/web/data-display/rating-stars.html +38 -0
  344. package/components/web/data-display/stat-card-compact.html +32 -0
  345. package/components/web/data-display/stat-card-large.html +34 -0
  346. package/components/web/data-display/table-selectable.html +127 -0
  347. package/components/web/data-display/table-sortable.html +120 -0
  348. package/components/web/data-display/tag-group.html +25 -0
  349. package/components/web/data-display/timeline-horizontal.html +55 -0
  350. package/components/web/data-display/timeline-vertical.html +76 -0
  351. package/components/web/data-display/tree-view.html +86 -0
  352. package/components/web/dividers/divider-text.html +8 -0
  353. package/components/web/ecommerce/coupon-input.html +11 -0
  354. package/components/web/ecommerce/product-card-grid.html +29 -0
  355. package/components/web/ecommerce/product-card-list.html +32 -0
  356. package/components/web/features/features-alternating.html +35 -0
  357. package/components/web/features/features-bento.html +43 -0
  358. package/components/web/features/features-icon-list.html +44 -0
  359. package/components/web/feedback/alert-banner.html +12 -0
  360. package/components/web/feedback/empty-state-error.html +18 -0
  361. package/components/web/feedback/empty-state-no-data.html +18 -0
  362. package/components/web/feedback/empty-state-no-search.html +15 -0
  363. package/components/web/feedback/empty-state.html +16 -0
  364. package/components/web/feedback/loading-spinner.html +14 -0
  365. package/components/web/feedback/progress-bar.html +11 -0
  366. package/components/web/feedback/skeleton-card.html +17 -0
  367. package/components/web/feedback/skeleton-list.html +45 -0
  368. package/components/web/feedback/skeleton.html +16 -0
  369. package/components/web/feedback/toast-error.html +12 -0
  370. package/components/web/feedback/toast-info.html +12 -0
  371. package/components/web/feedback/toast-success.html +12 -0
  372. package/components/web/feedback/tooltip.html +8 -0
  373. package/components/web/forms/date-picker.html +67 -0
  374. package/components/web/forms/file-upload.html +16 -0
  375. package/components/web/forms/form-contact.html +35 -0
  376. package/components/web/forms/form-login.html +29 -0
  377. package/components/web/forms/form-search-filters.html +57 -0
  378. package/components/web/forms/form-signup.html +35 -0
  379. package/components/web/heroes/hero-gradient.html +20 -0
  380. package/components/web/heroes/hero-image-bg.html +21 -0
  381. package/components/web/heroes/hero-video.html +17 -0
  382. package/components/web/inputs/checkbox.html +11 -0
  383. package/components/web/inputs/date-input.html +15 -0
  384. package/components/web/inputs/file-upload.html +12 -0
  385. package/components/web/inputs/radio-group.html +15 -0
  386. package/components/web/inputs/search-command.html +12 -0
  387. package/components/web/inputs/select.html +14 -0
  388. package/components/web/inputs/tag-input.html +15 -0
  389. package/components/web/inputs/text-input.html +11 -0
  390. package/components/web/inputs/textarea.html +11 -0
  391. package/components/web/inputs/toggle.html +11 -0
  392. package/components/web/job/candidate-profile.html +47 -0
  393. package/components/web/job/job-listing.html +44 -0
  394. package/components/web/job/resume-section.html +41 -0
  395. package/components/web/job/salary-range.html +19 -0
  396. package/components/web/layout/cta-banner.html +15 -0
  397. package/components/web/layout/features-grid.html +31 -0
  398. package/components/web/layout/hero-centered.html +19 -0
  399. package/components/web/layout/hero-split.html +21 -0
  400. package/components/web/layout/pricing-section.html +37 -0
  401. package/components/web/layout/stats-row.html +13 -0
  402. package/components/web/logos/logo-grid.html +20 -0
  403. package/components/web/logos/logo-ticker.html +19 -0
  404. package/components/web/marketing/cta-simple.html +18 -0
  405. package/components/web/marketing/cta-split.html +20 -0
  406. package/components/web/marketing/faq-accordion.html +55 -0
  407. package/components/web/marketing/feature-centered.html +35 -0
  408. package/components/web/marketing/feature-grid-2col.html +58 -0
  409. package/components/web/marketing/feature-grid-3col.html +44 -0
  410. package/components/web/marketing/footer-complex.html +86 -0
  411. package/components/web/marketing/footer-simple.html +59 -0
  412. package/components/web/marketing/hero-centered.html +44 -0
  413. package/components/web/marketing/hero-split-left.html +41 -0
  414. package/components/web/marketing/hero-split-right.html +35 -0
  415. package/components/web/marketing/logo-cloud.html +18 -0
  416. package/components/web/marketing/newsletter-signup.html +25 -0
  417. package/components/web/marketing/pricing-3tier.html +72 -0
  418. package/components/web/marketing/pricing-toggle.html +85 -0
  419. package/components/web/marketing/social-proof-bar.html +32 -0
  420. package/components/web/marketing/stats-row.html +45 -0
  421. package/components/web/marketing/team-grid.html +65 -0
  422. package/components/web/marketing/testimonial-carousel.html +45 -0
  423. package/components/web/marketing/testimonial-grid.html +75 -0
  424. package/components/web/media/blog-post-card.html +24 -0
  425. package/components/web/media/comment-single.html +26 -0
  426. package/components/web/media/image-gallery-grid.html +18 -0
  427. package/components/web/media/rich-text-block.html +20 -0
  428. package/components/web/media/testimonial-quote.html +20 -0
  429. package/components/web/media/video-player.html +44 -0
  430. package/components/web/menus/dropdown-menu.html +14 -0
  431. package/components/web/metrics/kpi-row.html +13 -0
  432. package/components/web/modals/modal-basic.html +21 -0
  433. package/components/web/modals/modal-form.html +22 -0
  434. package/components/web/navbars/breadcrumb.html +14 -0
  435. package/components/web/navbars/footer.html +35 -0
  436. package/components/web/navbars/sidebar-dark.html +21 -0
  437. package/components/web/navbars/sidebar.html +23 -0
  438. package/components/web/navbars/topnav-search.html +25 -0
  439. package/components/web/navbars/topnav.html +20 -0
  440. package/components/web/navigation/mega-menu.html +92 -0
  441. package/components/web/navigation/pagination.html +43 -0
  442. package/components/web/navigation/sidebar-collapsed.html +93 -0
  443. package/components/web/navigation/sidebar-expanded.html +121 -0
  444. package/components/web/navigation/stepper-horizontal.html +51 -0
  445. package/components/web/patterns/accordion.html +19 -0
  446. package/components/web/patterns/activity-feed.html +25 -0
  447. package/components/web/patterns/auth-login.html +24 -0
  448. package/components/web/patterns/avatar-group.html +13 -0
  449. package/components/web/patterns/calendar-month.html +44 -0
  450. package/components/web/patterns/category-pills.html +15 -0
  451. package/components/web/patterns/chat-web.html +24 -0
  452. package/components/web/patterns/code-editor.html +34 -0
  453. package/components/web/patterns/comparison-table.html +39 -0
  454. package/components/web/patterns/cookie-banner.html +14 -0
  455. package/components/web/patterns/error-page.html +16 -0
  456. package/components/web/patterns/file-list.html +24 -0
  457. package/components/web/patterns/filter-toolbar.html +14 -0
  458. package/components/web/patterns/kanban-column.html +27 -0
  459. package/components/web/patterns/notification-list.html +26 -0
  460. package/components/web/patterns/order-tracker.html +16 -0
  461. package/components/web/patterns/pagination.html +16 -0
  462. package/components/web/patterns/product-card-web.html +23 -0
  463. package/components/web/patterns/settings-form.html +24 -0
  464. package/components/web/patterns/stepper.html +16 -0
  465. package/components/web/patterns/user-table-row.html +15 -0
  466. package/components/web/patterns/video-player.html +26 -0
  467. package/components/web/presentation/slide-content.html +17 -0
  468. package/components/web/presentation/slide-title.html +13 -0
  469. package/components/web/pricing/pricing-table.html +51 -0
  470. package/components/web/pricing/pricing-toggle.html +62 -0
  471. package/components/web/print/business-card.html +20 -0
  472. package/components/web/products/product-card-horizontal.html +19 -0
  473. package/components/web/products/product-detail.html +39 -0
  474. package/components/web/products/product-grid.html +13 -0
  475. package/components/web/products/review-section.html +29 -0
  476. package/components/web/promotions/coupon-card.html +17 -0
  477. package/components/web/promotions/promo-banner.html +24 -0
  478. package/components/web/real-estate/agent-contact.html +32 -0
  479. package/components/web/real-estate/listing-detail-hero.html +44 -0
  480. package/components/web/real-estate/price-range-slider.html +20 -0
  481. package/components/web/real-estate/property-card.html +38 -0
  482. package/components/web/real-estate/property-map-pin.html +19 -0
  483. package/components/web/real-estate/virtual-tour-button.html +17 -0
  484. package/components/web/saas/api-key-row.html +31 -0
  485. package/components/web/saas/audit-log-row.html +21 -0
  486. package/components/web/saas/billing-plan.html +50 -0
  487. package/components/web/saas/kpi-row.html +61 -0
  488. package/components/web/saas/team-member-row.html +30 -0
  489. package/components/web/saas/webhook-config.html +44 -0
  490. package/components/web/screenshots/app-screenshot.html +32 -0
  491. package/components/web/screenshots/screenshot-gallery.html +45 -0
  492. package/components/web/social/comment-thread.html +75 -0
  493. package/components/web/social-media/instagram-post.html +17 -0
  494. package/components/web/social-proof/logo-cloud.html +18 -0
  495. package/components/web/social-proof/testimonial-carousel.html +30 -0
  496. package/components/web/surfaces/slide-over.html +20 -0
  497. package/components/web/tables/data-table.html +41 -0
  498. package/components/web/tables/table-simple.html +13 -0
  499. package/components/web/tabs/tabs-pills.html +12 -0
  500. package/components/web/tabs/tabs-underline.html +13 -0
  501. package/components/web/toggles/toggle-dark-mode.html +19 -0
  502. package/components/web/toggles/toggle-group.html +38 -0
  503. package/components/web/toggles/toggle-switch.html +14 -0
  504. package/components/web/widgets/api-key-row.html +16 -0
  505. package/components/web/widgets/billing-card.html +14 -0
  506. package/components/web/widgets/changelog-item.html +15 -0
  507. package/components/web/widgets/integration-card.html +15 -0
  508. package/components/web/widgets/onboarding-checklist.html +18 -0
  509. package/components/web/widgets/pricing-toggle.html +13 -0
  510. package/components/web/widgets/team-member-row.html +13 -0
  511. package/components/web/widgets/usage-meter.html +12 -0
  512. package/package.json +46 -0
  513. package/skills/README.md +35 -0
  514. package/skills/contribute.md +267 -0
  515. package/skills/design.md +470 -0
  516. package/skills/flutter.md +156 -0
  517. package/skills/nextjs.md +143 -0
  518. package/skills/react-native.md +258 -0
  519. package/skills/react.md +171 -0
  520. package/skills/svelte.md +95 -0
  521. package/skills/swiftui.md +171 -0
  522. package/skills/tailwind.md +108 -0
  523. package/skills/vue.md +111 -0
  524. package/src/commands/add.js +51 -0
  525. package/src/commands/convert.js +120 -0
  526. package/src/commands/design.js +89 -0
  527. package/src/commands/init.js +136 -0
  528. package/src/commands/list.js +52 -0
  529. package/src/commands/search.js +40 -0
  530. package/src/lib/index.js +100 -0
@@ -0,0 +1,29 @@
1
+ <!--
2
+ @name: Video Placeholder
3
+ @kit: common
4
+ @width: 400
5
+ @height: 225
6
+ @tags: video, placeholder, play, media, mockup, player
7
+ -->
8
+ <svg viewBox="0 0 400 225" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <!-- Container -->
10
+ <rect x="1" y="1" width="398" height="223" rx="8" stroke="currentColor" stroke-width="1" opacity="0.15" />
11
+ <rect x="1" y="1" width="398" height="223" rx="8" fill="currentColor" opacity="0.04" />
12
+ <!-- Play button circle -->
13
+ <circle cx="200" cy="100" r="32" stroke="currentColor" stroke-width="1.5" opacity="0.3" />
14
+ <circle cx="200" cy="100" r="32" fill="currentColor" opacity="0.06" />
15
+ <!-- Play triangle -->
16
+ <path d="M190 82 L220 100 L190 118Z" fill="currentColor" opacity="0.3" />
17
+ <!-- Progress bar background -->
18
+ <rect x="20" y="200" width="360" height="4" rx="2" fill="currentColor" opacity="0.08" />
19
+ <!-- Progress bar filled portion -->
20
+ <rect x="20" y="200" width="120" height="4" rx="2" fill="currentColor" opacity="0.2" />
21
+ <!-- Progress dot -->
22
+ <circle cx="140" cy="202" r="5" fill="currentColor" opacity="0.25" />
23
+ <!-- Time text placeholders -->
24
+ <line x1="20" y1="192" x2="50" y2="192" stroke="currentColor" stroke-width="1" stroke-linecap="round" opacity="0.12" />
25
+ <line x1="350" y1="192" x2="380" y2="192" stroke="currentColor" stroke-width="1" stroke-linecap="round" opacity="0.12" />
26
+ <!-- Diagonal lines (video placeholder convention) -->
27
+ <line x1="30" y1="30" x2="370" y2="180" stroke="currentColor" stroke-width="0.5" opacity="0.04" />
28
+ <line x1="370" y1="30" x2="30" y2="180" stroke="currentColor" stroke-width="0.5" opacity="0.04" />
29
+ </svg>
@@ -0,0 +1,12 @@
1
+ <!--
2
+ @name: Icon Add Circle
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, add, plus, circle, create, new, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="12" cy="12" r="9" stroke="currentColor" stroke-width="1.5" />
10
+ <line x1="12" y1="8" x2="12" y2="16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
11
+ <line x1="8" y1="12" x2="16" y2="12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
12
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Airdrop
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, airdrop, transfer, share, apple, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M12 21a9 9 0 010-18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><path d="M12 17a5 5 0 010-10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><circle cx="12" cy="12" r="1.5" fill="currentColor"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Airplay
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, airplay, cast, screen, apple, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M5 17H4a2 2 0 01-2-2V5a2 2 0 012-2h16a2 2 0 012 2v10a2 2 0 01-2 2h-1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><polygon points="12,13 17,21 7,21" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Apple Logo
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, apple, logo, brand, ios, macos
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.81-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/><path d="M15 2c.1.82-.25 1.65-.78 2.24-.53.6-1.41 1.06-2.27.99-.12-.77.29-1.58.79-2.08C13.27 2.63 14.16 2.12 15 2z" fill="currentColor" opacity="0.7"/>
10
+ </svg>
@@ -0,0 +1,11 @@
1
+ <!--
2
+ @name: Icon Arrow Back
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, arrow, back, left, navigation, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M19 12H5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
10
+ <path d="M12 19L5 12L12 5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
11
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Arrow Down
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, download, down, arrow, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M12 5v14m7-7l-7 7-7-7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Arrow Right
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, next, forward, arrow, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M5 12h14m-7-7l7 7-7 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Arrow Up
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, upload, up, arrow, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M12 19V5m-7 7l7-7 7 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Bag
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, bag, shopping, purchase, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><line x1="3" y1="6" x2="21" y2="6" stroke="currentColor" stroke-width="1.5"/><path d="M16 10a4 4 0 01-8 0" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Battery
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, battery, power, charge, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <rect x="1" y="7" width="18" height="10" rx="2" stroke="currentColor" stroke-width="1.5"/><rect x="3" y="9" width="10" height="6" rx="1" fill="currentColor" opacity="0.3"/><path d="M22 11v2" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Bluetooth
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, bluetooth, wireless, connect, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <polyline points="6.5,6.5 17.5,12 6.5,17.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><polyline points="12,2 17.5,6.5 12,12 17.5,17.5 12,22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Bolt
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, lightning, flash, power, energy, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <polygon points="13,2 3,14 12,14 11,22 21,10 12,10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Bookmark Fill
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, bookmark, save, later, filled, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z" fill="currentColor" opacity="0.85"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Bookmark
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, bookmark, save, later, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M19 21l-7-5-7 5V5a2 2 0 012-2h10a2 2 0 012 2z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Bubble Left
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, chat, comment, message, bubble, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,19 @@
1
+ <!--
2
+ @name: Icon Calendar
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, calendar, date, schedule, event, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <rect x="3" y="4" width="18" height="18" rx="2" stroke="currentColor" stroke-width="1.5" />
10
+ <line x1="16" y1="2" x2="16" y2="6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
11
+ <line x1="8" y1="2" x2="8" y2="6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
12
+ <line x1="3" y1="10" x2="21" y2="10" stroke="currentColor" stroke-width="1.5" />
13
+ <!-- Date dots -->
14
+ <circle cx="8" cy="14" r="1" fill="currentColor" opacity="0.4" />
15
+ <circle cx="12" cy="14" r="1" fill="currentColor" opacity="0.4" />
16
+ <circle cx="16" cy="14" r="1" fill="currentColor" opacity="0.4" />
17
+ <circle cx="8" cy="18" r="1" fill="currentColor" opacity="0.4" />
18
+ <circle cx="12" cy="18" r="1" fill="currentColor" opacity="0.4" />
19
+ </svg>
@@ -0,0 +1,11 @@
1
+ <!--
2
+ @name: Icon Camera
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, camera, photo, capture, picture, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M23 19C23 19.5304 22.7893 20.0391 22.4142 20.4142C22.0391 20.7893 21.5304 21 21 21H3C2.46957 21 1.96086 20.7893 1.58579 20.4142C1.21071 20.0391 1 19.5304 1 19V8C1 7.46957 1.21071 6.96086 1.58579 6.58579C1.96086 6.21071 2.46957 6 3 6H7L9 3H15L17 6H21C21.5304 6 22.0391 6.21071 22.4142 6.58579C22.7893 6.96086 23 7.46957 23 8V19Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
10
+ <circle cx="12" cy="13" r="4" stroke="currentColor" stroke-width="1.5" />
11
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Cart
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, cart, shopping, buy, store, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="9" cy="21" r="1" fill="currentColor" opacity="0.6"/><circle cx="20" cy="21" r="1" fill="currentColor" opacity="0.6"/><path d="M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Checkmark
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, check, done, complete, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M20 6L9 17l-5-5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Chevron Down
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, expand, dropdown, chevron, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M6 9l6 6 6-6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Chevron Left
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, back, previous, chevron, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M15 18l-6-6 6-6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Chevron Right
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, next, forward, chevron, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M9 18l6-6-6-6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Chevron Up
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, collapse, chevron, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M18 15l-6-6-6 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Clock
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, time, clock, schedule, timer, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5"/><path d="M12 6v6l4 2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Credit Card
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, card, payment, credit, wallet, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <rect x="1" y="4" width="22" height="16" rx="2" stroke="currentColor" stroke-width="1.5"/><line x1="1" y1="10" x2="23" y2="10" stroke="currentColor" stroke-width="1.5"/><line x1="5" y1="15" x2="11" y2="15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Doc
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, document, file, page, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><polyline points="14,2 14,8 20,8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Download
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, download, save, export, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><polyline points="7,10 12,15 17,10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><line x1="12" y1="15" x2="12" y2="3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Ellipsis Vertical
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, more, options, menu, dots-vertical, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="12" cy="12" r="1.5" fill="currentColor"/><circle cx="12" cy="5" r="1.5" fill="currentColor"/><circle cx="12" cy="19" r="1.5" fill="currentColor"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Ellipsis
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, more, options, menu, dots, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="12" cy="12" r="1.5" fill="currentColor"/><circle cx="5" cy="12" r="1.5" fill="currentColor"/><circle cx="19" cy="12" r="1.5" fill="currentColor"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Envelope
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, mail, email, message, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <rect x="2" y="4" width="20" height="16" rx="2" stroke="currentColor" stroke-width="1.5"/><path d="M22 7l-10 6L2 7" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Eye Slash
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, hide, invisible, hidden, privacy, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <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.94M9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.5 18.5 0 01-2.16 3.19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><line x1="1" y1="1" x2="23" y2="23" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Eye
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, view, visible, show, preview, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" stroke="currentColor" stroke-width="1.5"/><circle cx="12" cy="12" r="3" stroke="currentColor" stroke-width="1.5"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Face ID
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, faceid, biometric, face, apple, ios, security
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M4 8V6a2 2 0 012-2h2M4 16v2a2 2 0 002 2h2M16 4h2a2 2 0 012 2v2M16 20h2a2 2 0 002-2v-2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="9" cy="10" r="0.75" fill="currentColor"/><circle cx="15" cy="10" r="0.75" fill="currentColor"/><path d="M9 15c.83.67 2 1 3 1s2.17-.33 3-1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Favorite
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, favorite, heart, like, love, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M20.84 4.61C20.3292 4.09924 19.7228 3.69397 19.0554 3.41708C18.3879 3.14019 17.6725 2.99756 16.95 2.99756C16.2275 2.99756 15.5121 3.14019 14.8446 3.41708C14.1772 3.69397 13.5708 4.09924 13.06 4.61L12 5.67L10.94 4.61C9.9083 3.57831 8.50903 2.99809 7.05 2.99809C5.59096 2.99809 4.19169 3.57831 3.16 4.61C2.12831 5.64169 1.54809 7.04097 1.54809 8.5C1.54809 9.95903 2.12831 11.3583 3.16 12.39L4.22 13.45L12 21.23L19.78 13.45L20.84 12.39C21.3508 11.8792 21.756 11.2728 22.0329 10.6054C22.3098 9.93789 22.4524 9.22249 22.4524 8.5C22.4524 7.77751 22.3098 7.0621 22.0329 6.39464C21.756 5.72718 21.3508 5.12075 20.84 4.61Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Folder
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, folder, directory, organize, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Globe
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, world, web, internet, language, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5"/><line x1="2" y1="12" x2="22" y2="12" stroke="currentColor" stroke-width="1.5"/><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" stroke="currentColor" stroke-width="1.5"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Heart Fill
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, heart, love, like, filled, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <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" fill="currentColor" opacity="0.85"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Heart
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, heart, love, like, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <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" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Home
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, home, house, navigation, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M3 10.5L12 3L21 10.5V20C21 20.5523 20.5523 21 20 21H15V15H9V21H4C3.44772 21 3 20.5523 3 20V10.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Link
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, link, url, chain, connect, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><path d="M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon List Bullet
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, list, bullet, items, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <line x1="8" y1="6" x2="21" y2="6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><line x1="8" y1="12" x2="21" y2="12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><line x1="8" y1="18" x2="21" y2="18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><circle cx="4" cy="6" r="1" fill="currentColor"/><circle cx="4" cy="12" r="1" fill="currentColor"/><circle cx="4" cy="18" r="1" fill="currentColor"/>
10
+ </svg>
@@ -0,0 +1,11 @@
1
+ <!--
2
+ @name: Icon Location
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, location, map, pin, marker, place, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M21 10C21 17 12 23 12 23C12 23 3 17 3 10C3 7.61305 3.94821 5.32387 5.63604 3.63604C7.32387 1.94821 9.61305 1 12 1C14.3869 1 16.6761 1.94821 18.364 3.63604C20.0518 5.32387 21 7.61305 21 10Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
10
+ <circle cx="12" cy="10" r="3" stroke="currentColor" stroke-width="1.5" />
11
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Lock
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, lock, secure, password, privacy, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <rect x="3" y="11" width="18" height="11" rx="2" stroke="currentColor" stroke-width="1.5"/><path d="M7 11V7a5 5 0 0110 0v4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Magnifying Glass
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, search, find, magnify, ios, spotlight
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <circle cx="11" cy="11" r="7" stroke="currentColor" stroke-width="1.5"/><path d="M21 21l-4.35-4.35" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Map
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, map, navigation, directions, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <polygon points="1,6 1,22 8,18 16,22 23,18 23,2 16,6 8,2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/><line x1="8" y1="2" x2="8" y2="18" stroke="currentColor" stroke-width="1.5"/><line x1="16" y1="6" x2="16" y2="22" stroke="currentColor" stroke-width="1.5"/>
10
+ </svg>
@@ -0,0 +1,12 @@
1
+ <!--
2
+ @name: Icon Menu Hamburger
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, menu, hamburger, navigation, toggle, ui
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <line x1="3" y1="6" x2="21" y2="6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
10
+ <line x1="3" y1="12" x2="21" y2="12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
11
+ <line x1="3" y1="18" x2="21" y2="18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
12
+ </svg>
@@ -0,0 +1,10 @@
1
+ <!--
2
+ @name: Icon Mic
3
+ @kit: common
4
+ @width: 24
5
+ @height: 24
6
+ @tags: icon, microphone, voice, audio, record, ios
7
+ -->
8
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
9
+ <path d="M12 1a3 3 0 00-3 3v8a3 3 0 006 0V4a3 3 0 00-3-3z" stroke="currentColor" stroke-width="1.5"/><path d="M19 10v2a7 7 0 01-14 0v-2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/><line x1="12" y1="19" x2="12" y2="23" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
10
+ </svg>