dune-react 0.0.4 → 0.0.6
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/README.md +25 -24
- package/dist/components/index.d.ts +2 -0
- package/dist/components/puck-base/action-field.d.ts +8 -0
- package/dist/components/puck-base/action-field.js +169 -0
- package/dist/components/puck-base/article-card.d.ts +10 -0
- package/dist/components/puck-base/article-card.js +32 -0
- package/dist/components/puck-base/badge.d.ts +10 -0
- package/dist/components/puck-base/badge.js +23 -0
- package/dist/components/puck-base/button.d.ts +13 -0
- package/dist/components/puck-base/button.js +113 -0
- package/dist/components/puck-base/card.d.ts +13 -0
- package/dist/components/puck-base/card.js +71 -0
- package/dist/components/puck-base/container.d.ts +18 -0
- package/dist/components/puck-base/container.js +90 -0
- package/dist/components/puck-base/content.d.ts +17 -0
- package/dist/components/puck-base/content.js +121 -0
- package/dist/components/puck-base/core/fields.d.ts +1023 -0
- package/dist/components/puck-base/core/fields.js +349 -0
- package/dist/components/puck-base/core/hooks.d.ts +19 -0
- package/dist/components/puck-base/core/hooks.js +14 -0
- package/dist/components/puck-base/core/types.d.ts +20 -0
- package/dist/components/puck-base/core/types.js +26 -0
- package/dist/components/puck-base/core/utils.d.ts +5 -0
- package/dist/components/puck-base/core/utils.js +27 -0
- package/dist/components/puck-base/core/with-editable.d.ts +18 -0
- package/dist/components/puck-base/core/with-editable.js +151 -0
- package/dist/components/puck-base/editor-context.d.ts +11 -0
- package/dist/components/puck-base/editor-context.js +15 -0
- package/dist/components/puck-base/error-boundary.d.ts +4 -0
- package/dist/components/puck-base/error-boundary.js +25 -0
- package/dist/components/puck-base/field.d.ts +9 -0
- package/dist/components/puck-base/field.js +20 -0
- package/dist/components/puck-base/fields/auto-field.d.ts +2 -0
- package/dist/components/puck-base/fields/auto-field.js +338 -0
- package/dist/components/puck-base/fields/types.d.ts +29 -0
- package/dist/components/puck-base/form.d.ts +12 -0
- package/dist/components/puck-base/form.js +36 -0
- package/dist/components/puck-base/gradient-text.d.ts +10 -0
- package/dist/components/puck-base/gradient-text.js +38 -0
- package/dist/components/puck-base/image-upload-field.d.ts +7 -0
- package/dist/components/puck-base/image-upload-field.js +128 -0
- package/dist/components/puck-base/image.d.ts +6 -0
- package/dist/components/puck-base/image.js +288 -0
- package/dist/components/puck-base/index.d.ts +23 -0
- package/dist/components/puck-base/inline-editable.d.ts +14 -0
- package/dist/components/puck-base/inline-editable.js +71 -0
- package/dist/components/puck-base/use-upload.d.ts +42 -0
- package/dist/components/puck-base/use-upload.js +192 -0
- package/dist/components/puck-block/banner-sections/announcement-banner-1/announcement-banner.d.ts +10 -0
- package/dist/components/puck-block/banner-sections/announcement-banner-1/announcement-banner.js +54 -0
- package/dist/components/puck-block/banner-sections/announcement-banner-1/index.d.ts +5 -0
- package/dist/components/puck-block/banner-sections/announcement-banner-1/index.js +50 -0
- package/dist/components/puck-block/banner-sections/marquee-1/index.d.ts +5 -0
- package/dist/components/puck-block/banner-sections/marquee-1/index.js +47 -0
- package/dist/components/puck-block/banner-sections/marquee-1/marquee.d.ts +12 -0
- package/dist/components/puck-block/banner-sections/marquee-1/marquee.js +38 -0
- package/dist/components/puck-block/contact-sections/contact-us-1/contact-us.d.ts +29 -0
- package/dist/components/puck-block/contact-sections/contact-us-1/contact-us.js +143 -0
- package/dist/components/puck-block/contact-sections/contact-us-1/index.d.ts +5 -0
- package/dist/components/puck-block/contact-sections/contact-us-1/index.js +34 -0
- package/dist/components/puck-block/cta-sections/banner-cta-1/banner-cta.d.ts +14 -0
- package/dist/components/puck-block/cta-sections/banner-cta-1/banner-cta.js +43 -0
- package/dist/components/puck-block/cta-sections/banner-cta-1/index.d.ts +5 -0
- package/dist/components/puck-block/cta-sections/banner-cta-1/index.js +38 -0
- package/dist/components/puck-block/cta-sections/cta-1/cta.d.ts +10 -0
- package/dist/components/puck-block/cta-sections/cta-1/cta.js +40 -0
- package/dist/components/puck-block/cta-sections/cta-1/index.d.ts +5 -0
- package/dist/components/puck-block/cta-sections/cta-1/index.js +48 -0
- package/dist/components/puck-block/cta-sections/gradient-cta-1/gradient-cta.d.ts +14 -0
- package/dist/components/puck-block/cta-sections/gradient-cta-1/gradient-cta.js +39 -0
- package/dist/components/puck-block/cta-sections/gradient-cta-1/index.d.ts +5 -0
- package/dist/components/puck-block/cta-sections/gradient-cta-1/index.js +46 -0
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/index.d.ts +5 -0
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/index.js +22 -0
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/newsletter-signup.d.ts +9 -0
- package/dist/components/puck-block/cta-sections/newsletter-signup-1/newsletter-signup.js +40 -0
- package/dist/components/puck-block/cta-sections/promo-section-1/index.d.ts +5 -0
- package/dist/components/puck-block/cta-sections/promo-section-1/index.js +46 -0
- package/dist/components/puck-block/cta-sections/promo-section-1/promo-section.d.ts +18 -0
- package/dist/components/puck-block/cta-sections/promo-section-1/promo-section.js +102 -0
- package/dist/components/puck-block/faq-sections/accordion-1/accordion.d.ts +13 -0
- package/dist/components/puck-block/faq-sections/accordion-1/accordion.js +46 -0
- package/dist/components/puck-block/faq-sections/accordion-1/index.d.ts +5 -0
- package/dist/components/puck-block/faq-sections/accordion-1/index.js +41 -0
- package/dist/components/puck-block/faq-sections/faq-1/faq.d.ts +15 -0
- package/dist/components/puck-block/faq-sections/faq-1/faq.js +62 -0
- package/dist/components/puck-block/faq-sections/faq-1/index.d.ts +5 -0
- package/dist/components/puck-block/faq-sections/faq-1/index.js +89 -0
- package/dist/components/puck-block/feature-sections/bento-1/bento.d.ts +10 -0
- package/dist/components/puck-block/feature-sections/bento-1/bento.js +49 -0
- package/dist/components/puck-block/feature-sections/bento-1/index.d.ts +5 -0
- package/dist/components/puck-block/feature-sections/bento-1/index.js +34 -0
- package/dist/components/puck-block/feature-sections/feature-cards-1/feature-cards.d.ts +12 -0
- package/dist/components/puck-block/feature-sections/feature-cards-1/feature-cards.js +38 -0
- package/dist/components/puck-block/feature-sections/feature-cards-1/index.d.ts +5 -0
- package/dist/components/puck-block/feature-sections/feature-cards-1/index.js +60 -0
- package/dist/components/puck-block/feature-sections/feature-showcase-1/feature-showcase.d.ts +19 -0
- package/dist/components/puck-block/feature-sections/feature-showcase-1/feature-showcase.js +44 -0
- package/dist/components/puck-block/feature-sections/feature-showcase-1/index.d.ts +5 -0
- package/dist/components/puck-block/feature-sections/feature-showcase-1/index.js +57 -0
- package/dist/components/puck-block/feature-sections/icon-grid-1/icon-grid.d.ts +17 -0
- package/dist/components/puck-block/feature-sections/icon-grid-1/icon-grid.js +80 -0
- package/dist/components/puck-block/feature-sections/icon-grid-1/index.d.ts +5 -0
- package/dist/components/puck-block/feature-sections/icon-grid-1/index.js +70 -0
- package/dist/components/puck-block/feature-sections/product-features-1/index.d.ts +5 -0
- package/dist/components/puck-block/feature-sections/product-features-1/index.js +92 -0
- package/dist/components/puck-block/feature-sections/product-features-1/product-features.d.ts +25 -0
- package/dist/components/puck-block/feature-sections/product-features-1/product-features.js +140 -0
- package/dist/components/puck-block/footer-sections/footer-1/footer.d.ts +22 -0
- package/dist/components/puck-block/footer-sections/footer-1/footer.js +58 -0
- package/dist/components/puck-block/footer-sections/footer-1/index.d.ts +5 -0
- package/dist/components/puck-block/footer-sections/footer-1/index.js +137 -0
- package/dist/components/puck-block/gallery-sections/gallery-1/gallery.d.ts +18 -0
- package/dist/components/puck-block/gallery-sections/gallery-1/gallery.js +68 -0
- package/dist/components/puck-block/gallery-sections/gallery-1/index.d.ts +5 -0
- package/dist/components/puck-block/gallery-sections/gallery-1/index.js +69 -0
- package/dist/components/puck-block/header-sections/header-1/header.d.ts +33 -0
- package/dist/components/puck-block/header-sections/header-1/header.js +161 -0
- package/dist/components/puck-block/header-sections/header-1/index.d.ts +33 -0
- package/dist/components/puck-block/header-sections/header-1/index.js +198 -0
- package/dist/components/puck-block/header-sections/sticky-nav-1/index.d.ts +5 -0
- package/dist/components/puck-block/header-sections/sticky-nav-1/index.js +29 -0
- package/dist/components/puck-block/header-sections/sticky-nav-1/sticky-nav.d.ts +12 -0
- package/dist/components/puck-block/header-sections/sticky-nav-1/sticky-nav.js +49 -0
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/fullscreen-hero.d.ts +16 -0
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/fullscreen-hero.js +32 -0
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/index.d.ts +5 -0
- package/dist/components/puck-block/hero-sections/fullscreen-hero-1/index.js +38 -0
- package/dist/components/puck-block/hero-sections/gradient-hero-1/gradient-hero.d.ts +8 -0
- package/dist/components/puck-block/hero-sections/gradient-hero-1/gradient-hero.js +37 -0
- package/dist/components/puck-block/hero-sections/gradient-hero-1/index.d.ts +5 -0
- package/dist/components/puck-block/hero-sections/gradient-hero-1/index.js +33 -0
- package/dist/components/puck-block/hero-sections/grid-hero-1/grid-hero.d.ts +25 -0
- package/dist/components/puck-block/hero-sections/grid-hero-1/grid-hero.js +128 -0
- package/dist/components/puck-block/hero-sections/grid-hero-1/index.d.ts +5 -0
- package/dist/components/puck-block/hero-sections/grid-hero-1/index.js +39 -0
- package/dist/components/puck-block/hero-sections/hero-1/hero.d.ts +21 -0
- package/dist/components/puck-block/hero-sections/hero-1/hero.js +223 -0
- package/dist/components/puck-block/hero-sections/hero-1/index.d.ts +12 -0
- package/dist/components/puck-block/hero-sections/hero-1/index.js +75 -0
- package/dist/components/puck-block/hero-sections/image-hero-1/image-hero.d.ts +17 -0
- package/dist/components/puck-block/hero-sections/image-hero-1/image-hero.js +92 -0
- package/dist/components/puck-block/hero-sections/image-hero-1/index.d.ts +5 -0
- package/dist/components/puck-block/hero-sections/image-hero-1/index.js +69 -0
- package/dist/components/puck-block/hero-sections/split-hero-1/index.d.ts +5 -0
- package/dist/components/puck-block/hero-sections/split-hero-1/index.js +33 -0
- package/dist/components/puck-block/hero-sections/split-hero-1/split-hero.d.ts +14 -0
- package/dist/components/puck-block/hero-sections/split-hero-1/split-hero.js +61 -0
- package/dist/components/puck-block/hero-sections/video-hero-1/index.d.ts +5 -0
- package/dist/components/puck-block/hero-sections/video-hero-1/index.js +25 -0
- package/dist/components/puck-block/hero-sections/video-hero-1/video-hero.d.ts +11 -0
- package/dist/components/puck-block/hero-sections/video-hero-1/video-hero.js +34 -0
- package/dist/components/puck-block/index.d.ts +43 -0
- package/dist/components/puck-block/metrics-sections/stats-1/index.d.ts +5 -0
- package/dist/components/puck-block/metrics-sections/stats-1/index.js +130 -0
- package/dist/components/puck-block/metrics-sections/stats-1/stats.d.ts +16 -0
- package/dist/components/puck-block/metrics-sections/stats-1/stats.js +97 -0
- package/dist/components/puck-block/pricing-sections/comparison-1/comparison.d.ts +14 -0
- package/dist/components/puck-block/pricing-sections/comparison-1/comparison.js +52 -0
- package/dist/components/puck-block/pricing-sections/comparison-1/index.d.ts +5 -0
- package/dist/components/puck-block/pricing-sections/comparison-1/index.js +69 -0
- package/dist/components/puck-block/pricing-sections/pricing-1/index.d.ts +5 -0
- package/dist/components/puck-block/pricing-sections/pricing-1/index.js +71 -0
- package/dist/components/puck-block/pricing-sections/pricing-1/pricing.d.ts +19 -0
- package/dist/components/puck-block/pricing-sections/pricing-1/pricing.js +46 -0
- package/dist/components/puck-block/showcase-sections/case-study-1/case-study.d.ts +17 -0
- package/dist/components/puck-block/showcase-sections/case-study-1/case-study.js +40 -0
- package/dist/components/puck-block/showcase-sections/case-study-1/index.d.ts +5 -0
- package/dist/components/puck-block/showcase-sections/case-study-1/index.js +35 -0
- package/dist/components/puck-block/showcase-sections/step-by-step-1/index.d.ts +5 -0
- package/dist/components/puck-block/showcase-sections/step-by-step-1/index.js +62 -0
- package/dist/components/puck-block/showcase-sections/step-by-step-1/step-by-step.d.ts +17 -0
- package/dist/components/puck-block/showcase-sections/step-by-step-1/step-by-step.js +53 -0
- package/dist/components/puck-block/team-sections/team-grid-1/index.d.ts +5 -0
- package/dist/components/puck-block/team-sections/team-grid-1/index.js +66 -0
- package/dist/components/puck-block/team-sections/team-grid-1/team-grid.d.ts +21 -0
- package/dist/components/puck-block/team-sections/team-grid-1/team-grid.js +88 -0
- package/dist/components/puck-block/testimonial-sections/customers-1/customers.d.ts +15 -0
- package/dist/components/puck-block/testimonial-sections/customers-1/customers.js +105 -0
- package/dist/components/puck-block/testimonial-sections/customers-1/index.d.ts +5 -0
- package/dist/components/puck-block/testimonial-sections/customers-1/index.js +47 -0
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/index.d.ts +5 -0
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/index.js +46 -0
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/logo-marquee.d.ts +11 -0
- package/dist/components/puck-block/testimonial-sections/logo-marquee-1/logo-marquee.js +40 -0
- package/dist/components/puck-block/testimonial-sections/review-section-1/index.d.ts +5 -0
- package/dist/components/puck-block/testimonial-sections/review-section-1/index.js +71 -0
- package/dist/components/puck-block/testimonial-sections/review-section-1/review-section.d.ts +21 -0
- package/dist/components/puck-block/testimonial-sections/review-section-1/review-section.js +57 -0
- package/dist/components/puck-block/testimonial-sections/testimonials-1/index.d.ts +5 -0
- package/dist/components/puck-block/testimonial-sections/testimonials-1/index.js +62 -0
- package/dist/components/puck-block/testimonial-sections/testimonials-1/testimonials.d.ts +18 -0
- package/dist/components/puck-block/testimonial-sections/testimonials-1/testimonials.js +114 -0
- package/dist/components/puck-block/text-sections/articles-1/articles.d.ts +13 -0
- package/dist/components/puck-block/text-sections/articles-1/articles.js +33 -0
- package/dist/components/puck-block/text-sections/articles-1/index.d.ts +5 -0
- package/dist/components/puck-block/text-sections/articles-1/index.js +44 -0
- package/dist/components/puck-block/text-sections/content-section-1/content-section.d.ts +20 -0
- package/dist/components/puck-block/text-sections/content-section-1/content-section.js +121 -0
- package/dist/components/puck-block/text-sections/content-section-1/index.d.ts +5 -0
- package/dist/components/puck-block/text-sections/content-section-1/index.js +71 -0
- package/dist/components/puck-block/text-sections/rich-text-1/index.d.ts +5 -0
- package/dist/components/puck-block/text-sections/rich-text-1/index.js +34 -0
- package/dist/components/puck-block/text-sections/rich-text-1/rich-text.d.ts +9 -0
- package/dist/components/puck-block/text-sections/rich-text-1/rich-text.js +24 -0
- package/dist/components/puck-block/text-sections/tab-section-1/index.d.ts +5 -0
- package/dist/components/puck-block/text-sections/tab-section-1/index.js +52 -0
- package/dist/components/puck-block/text-sections/tab-section-1/tab-section.d.ts +17 -0
- package/dist/components/puck-block/text-sections/tab-section-1/tab-section.js +49 -0
- package/dist/components/puck-block/text-sections/timeline-1/index.d.ts +5 -0
- package/dist/components/puck-block/text-sections/timeline-1/index.js +52 -0
- package/dist/components/puck-block/text-sections/timeline-1/timeline.d.ts +14 -0
- package/dist/components/puck-block/text-sections/timeline-1/timeline.js +36 -0
- package/dist/components/puck-block/text-sections/two-column-1/index.d.ts +5 -0
- package/dist/components/puck-block/text-sections/two-column-1/index.js +90 -0
- package/dist/components/puck-block/text-sections/two-column-1/two-column.d.ts +16 -0
- package/dist/components/puck-block/text-sections/two-column-1/two-column.js +97 -0
- package/dist/components/puck-block/type.d.ts +5 -0
- package/dist/hooks/use-prefers-reduced-motion.d.ts +1 -0
- package/dist/hooks/use-prefers-reduced-motion.js +23 -0
- package/dist/index.js +168 -3
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_Hash.js +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_ListCache.js +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_Map.js +6 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_MapCache.js +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_Symbol.js +5 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_arrayMap.js +10 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_assignValue.js +13 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_assocIndexOf.js +13 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_baseAssignValue.js +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_baseGetTag.js +14 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_baseIsNative.js +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_baseSet.js +31 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_baseToString.js +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_castPath.js +13 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_coreJsData.js +5 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_defineProperty.js +12 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_freeGlobal.js +4 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_getMapData.js +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_getNative.js +9 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_getRawTag.js +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_getValue.js +6 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_hashClear.js +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_hashDelete.js +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_hashGet.js +15 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_hashHas.js +10 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_hashSet.js +11 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_isIndex.js +10 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_isKey.js +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_isKeyable.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_isMasked.js +11 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_listCacheClear.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_listCacheDelete.js +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_listCacheGet.js +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_listCacheHas.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_listCacheSet.js +14 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheClear.js +14 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheDelete.js +9 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheGet.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheHas.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_mapCacheSet.js +10 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_memoizeCapped.js +15 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_nativeCreate.js +5 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_objectToString.js +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_root.js +6 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_stringToPath.js +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_toKey.js +11 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/_toSource.js +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/eq.js +6 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isArray.js +4 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isFunction.js +13 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isObject.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isObjectLike.js +6 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/isSymbol.js +9 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/memoize.js +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/set.js +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.17.23/node_modules/lodash-es/toString.js +7 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/DynamicIcon.js +36 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/Icon.js +41 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/createLucideIcon.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/defaultAttributes.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/dynamicIconImports.js +1861 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/a-arrow-down.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/a-arrow-up.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/a-large-small.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/accessibility.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/activity.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/air-vent.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/airplay.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/alarm-clock-check.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/alarm-clock-minus.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/alarm-clock-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/alarm-clock-plus.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/alarm-clock.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/alarm-smoke.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/album.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-center-horizontal.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-center-vertical.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-center.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-end-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-end-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-center.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-end.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-start.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-center.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-end.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-start.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-around.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-between.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-justify.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-start-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-start-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-center.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-end.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-start.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-center.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-end.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-start.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-space-around.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/align-vertical-space-between.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ambulance.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ampersand.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ampersands.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/amphora.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/anchor.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/angry.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/annoyed.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/antenna.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/anvil.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/aperture.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/app-window-mac.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/app-window.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/apple.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/archive-restore.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/archive-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/archive.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/armchair.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-down-dash.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-down.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-left-dash.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-left.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-right-dash.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-right.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-up-dash.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-big-up.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-0-1.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-1-0.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-a-z.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-from-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-narrow-wide.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-to-dot.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-to-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-up.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-wide-narrow.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down-z-a.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-left-from-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-left-right.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-left-to-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-right-from-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-right-left.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-right-to-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-0-1.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-1-0.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-a-z.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-down.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-from-dot.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-from-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-narrow-wide.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-to-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-wide-narrow.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up-z-a.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrow-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/arrows-up-from-line.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/asterisk.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/at-sign.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/atom.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/audio-lines.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/audio-waveform.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/award.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/axe.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/axis-3d.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/baby.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/backpack.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-alert.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-cent.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-check.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-dollar-sign.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-euro.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-indian-rupee.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-info.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-japanese-yen.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-percent.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-pound-sterling.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-question-mark.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-russian-ruble.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-swiss-franc.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-turkish-lira.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/badge.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/baggage-claim.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ban.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/banana.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bandage.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/banknote-arrow-down.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/banknote-arrow-up.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/banknote-x.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/banknote.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/barcode.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/barrel.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/baseline.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bath.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery-charging.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery-full.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery-low.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery-medium.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery-plus.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery-warning.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/battery.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/beaker.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bean-off.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bean.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bed-double.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bed-single.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bed.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/beef.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/beer-off.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/beer.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell-dot.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell-electric.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell-minus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell-plus.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell-ring.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bell.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/between-horizontal-end.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/between-horizontal-start.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/between-vertical-end.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/between-vertical-start.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/biceps-flexed.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bike.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/binary.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/binoculars.js +32 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/biohazard.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bird.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bitcoin.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/blend.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/blinds.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/blocks.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bluetooth-connected.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bluetooth-off.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bluetooth-searching.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bluetooth.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bold.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bolt.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bomb.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bone.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-a.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-alert.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-audio.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-check.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-copy.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-dashed.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-down.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-headphones.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-heart.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-image.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-key.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-lock.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-marked.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-open-check.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-open-text.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-open.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-text.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-type.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-up-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-up.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-user.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/book.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bookmark-check.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bookmark-minus.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bookmark-plus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bookmark-x.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bookmark.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/boom-box.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bot-message-square.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bot-off.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bot.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bottle-wine.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bow-arrow.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/box.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/boxes.js +44 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/braces.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brackets.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brain-circuit.js +33 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brain-cog.js +41 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brain.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brick-wall-fire.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brick-wall-shield.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brick-wall.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/briefcase-business.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/briefcase-conveyor-belt.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/briefcase-medical.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/briefcase.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bring-to-front.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brush-cleaning.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/brush.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bubbles.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bug-off.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bug-play.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bug.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/building-2.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/building.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bus-front.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/bus.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cable-car.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cable.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cake-slice.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cake.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calculator.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-1.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-arrow-down.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-arrow-up.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-check-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-check.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-clock.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-cog.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-days.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-fold.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-heart.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-minus-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-minus.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-plus-2.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-plus.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-range.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-search.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-sync.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-x-2.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar-x.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/calendar.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/camera-off.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/camera.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/candy-cane.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/candy-off.js +36 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/candy.js +37 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cannabis.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/captions-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/captions.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/car-front.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/car-taxi-front.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/car.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/caravan.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/card-sim.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/carrot.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/case-lower.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/case-sensitive.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/case-upper.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cassette-tape.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cast.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/castle.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cat.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cctv.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-area.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-bar-big.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-bar-decreasing.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-bar-increasing.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-bar-stacked.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-bar.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-candlestick.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-column-big.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-column-decreasing.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-column-increasing.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-column-stacked.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-column.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-gantt.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-line.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-network.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-decreasing.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-increasing.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-no-axes-combined.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-no-axes-gantt.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-pie.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-scatter.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chart-spline.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/check-check.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/check-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/check.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chef-hat.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cherry.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevron-down.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevron-first.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevron-last.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevron-left.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevron-right.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevron-up.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-down-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-left-right-ellipsis.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-left-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-right-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-up-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chevrons-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/chrome.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/church.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cigarette-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cigarette.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-alert.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-down.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-arrow-up.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-check-big.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-check.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-chevron-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-chevron-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-chevron-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-chevron-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-dashed.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-divide.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-dollar-sign.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-dot-dashed.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-dot.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-ellipsis.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-equal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-fading-arrow-up.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-fading-plus.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-gauge.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-minus.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-off.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-parking-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-parking.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-pause.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-percent.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-play.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-plus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-pound-sterling.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-power.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-question-mark.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-slash-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-slash.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-small.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-star.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-stop.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-user-round.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-user.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle-x.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circle.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/circuit-board.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/citrus.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clapperboard.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-check.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-clock.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-copy.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-list.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-minus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-paste.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-pen-line.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-pen.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-plus.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-type.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard-x.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clipboard.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-1.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-10.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-11.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-12.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-3.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-4.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-5.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-6.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-7.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-8.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-9.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-alert.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-arrow-down.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-arrow-up.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-fading.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock-plus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clock.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/closed-caption.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-alert.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-check.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-cog.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-download.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-drizzle.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-fog.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-hail.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-lightning.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-moon-rain.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-moon.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-rain-wind.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-rain.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-snow.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-sun-rain.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-sun.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud-upload.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloud.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cloudy.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/clover.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/club.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/code-xml.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/code.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/codepen.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/codesandbox.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/coffee.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cog.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/coins.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/columns-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/columns-3-cog.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/columns-3.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/columns-4.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/combine.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/command.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/compass.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/component.js +42 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/computer.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/concierge-bell.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cone.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/construction.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/contact-round.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/contact.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/container.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/contrast.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cookie.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cooking-pot.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copy-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copy-minus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copy-plus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copy-slash.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copy-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copy.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copyleft.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/copyright.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-down-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-down-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-left-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-left-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-right-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-right-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-up-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/corner-up-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cpu.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/creative-commons.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/credit-card.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/croissant.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/crop.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cross.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/crosshair.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/crown.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cuboid.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cup-soda.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/currency.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/cylinder.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dam.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/database-backup.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/database-zap.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/database.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/decimals-arrow-left.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/decimals-arrow-right.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/delete.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dessert.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/diameter.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/diamond-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/diamond-percent.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/diamond-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/diamond.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dice-1.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dice-2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dice-3.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dice-4.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dice-5.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dice-6.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dices.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/diff.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/disc-2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/disc-3.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/disc-album.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/disc.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/divide.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dna-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dna.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dock.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dog.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dollar-sign.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/donut.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/door-closed-locked.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/door-closed.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/door-open.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dot.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/download.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/drafting-compass.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/drama.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dribbble.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/drill.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/drone.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/droplet-off.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/droplet.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/droplets.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/drum.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/drumstick.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/dumbbell.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ear-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ear.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/earth-lock.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/earth.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/eclipse.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/egg-fried.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/egg-off.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/egg.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ellipsis-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ellipsis.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/equal-approximately.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/equal-not.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/equal.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/eraser.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ethernet-port.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/euro.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/expand.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/external-link.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/eye-closed.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/eye-off.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/eye.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/facebook.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/factory.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fan.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fast-forward.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/feather.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fence.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ferris-wheel.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/figma.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-archive.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-audio-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-audio.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-axis-3d.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-badge-2.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-badge.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-box.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-chart-column-increasing.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-chart-column.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-chart-line.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-chart-pie.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-check-2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-clock.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-code-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-code.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-cog.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-diff.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-digit.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-down.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-heart.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-image.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-input.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-json-2.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-json.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-key-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-key.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-lock-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-lock.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-minus-2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-minus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-music.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-output.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-pen-line.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-pen.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-play.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-plus-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-plus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-question-mark.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-scan.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-search-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-search.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-sliders.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-spreadsheet.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-stack.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-symlink.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-terminal.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-text.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-type-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-type.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-up.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-user.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-video-camera.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-volume-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-volume.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-warning.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-x-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/file.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/files.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/film.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fingerprint.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fire-extinguisher.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fish-off.js +35 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fish-symbol.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fish.js +38 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flag-off.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flag-triangle-left.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flag-triangle-right.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flag.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flame-kindling.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flame.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flashlight-off.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flashlight.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flask-conical-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flask-conical.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flask-round.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flip-horizontal-2.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flip-horizontal.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flip-vertical-2.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flip-vertical.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flower-2.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/flower.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/focus.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fold-horizontal.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fold-vertical.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-archive.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-check.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-clock.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-closed.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-code.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-cog.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-dot.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-down.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-git-2.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-git.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-heart.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-input.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-kanban.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-key.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-lock.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-open-dot.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-open.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-output.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-pen.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-root.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-search-2.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-search.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-symlink.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-sync.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-tree.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-up.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folder.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/folders.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/footprints.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/forklift.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/forward.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/frame.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/framer.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/frown.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fuel.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/fullscreen.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/funnel-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/funnel-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/funnel.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gallery-horizontal-end.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gallery-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gallery-thumbnails.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gallery-vertical-end.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gallery-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gamepad-2.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gamepad.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gauge.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gavel.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gem.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/georgian-lari.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ghost.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gift.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-branch-plus.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-branch.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-commit-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-commit-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-compare-arrows.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-compare.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-fork.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-graph.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-merge.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-pull-request-arrow.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-pull-request-closed.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-pull-request-create-arrow.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-pull-request-create.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-pull-request-draft.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/git-pull-request.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/github.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gitlab.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/glass-water.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/glasses.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/globe-lock.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/globe.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/goal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/gpu.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/graduation-cap.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grape.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grid-2x2-check.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grid-2x2-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grid-2x2-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grid-2x2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grid-3x2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grid-3x3.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grip-horizontal.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grip-vertical.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/grip.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/group.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/guitar.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ham.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hamburger.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hammer.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-coins.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-fist.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-grab.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-heart.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-helping.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-metal.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand-platter.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hand.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/handbag.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/handshake.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hard-drive-download.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hard-drive-upload.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hard-drive.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hard-hat.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hash.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hat-glasses.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/haze.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hdmi-port.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading-1.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading-3.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading-4.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading-5.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading-6.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heading.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/headphone-off.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/headphones.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/headset.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart-crack.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart-handshake.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart-off.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart-pulse.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heart.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/heater.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hexagon.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/highlighter.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/history.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hop-off.js +53 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hop.js +64 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hospital.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hotel.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/hourglass.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/house-plug.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/house-plus.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/house-wifi.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/house.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ice-cream-bowl.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ice-cream-cone.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/id-card-lanyard.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/id-card.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-down.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-minus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-off.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-play.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-plus.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-up.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image-upscale.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/image.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/images.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/import.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/inbox.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/indent-decrease.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/indent-increase.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/indian-rupee.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/infinity.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/info.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/inspection-panel.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/instagram.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/italic.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/iteration-ccw.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/iteration-cw.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/japanese-yen.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/joystick.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/kanban.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/kayak.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/key-round.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/key-square.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/key.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/keyboard-music.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/keyboard-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/keyboard.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lamp-ceiling.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lamp-desk.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lamp-floor.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lamp-wall-down.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lamp-wall-up.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lamp.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/land-plot.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/landmark.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/languages.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/laptop-minimal-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/laptop-minimal.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/laptop.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lasso-select.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lasso.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/laugh.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layers-2.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layers.js +35 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layout-dashboard.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layout-grid.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layout-list.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layout-panel-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layout-panel-top.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/layout-template.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/leaf.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/leafy-green.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lectern.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/letter-text.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/library-big.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/library.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/life-buoy.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ligature.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lightbulb-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lightbulb.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/line-squiggle.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/link-2-off.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/link-2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/link.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/linkedin.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-check.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-checks.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-collapse.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-end.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-filter-plus.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-filter.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-minus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-music.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-ordered.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-plus.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-restart.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-start.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-todo.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-tree.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-video.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list-x.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/list.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/loader-circle.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/loader-pinwheel.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/loader.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/locate-fixed.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/locate-off.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/locate.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lock-keyhole-open.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lock-keyhole.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lock-open.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lock.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/log-in.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/log-out.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/logs.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/lollipop.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/luggage.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/magnet.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-minus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-open.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-plus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-question-mark.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-search.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-warning.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mail.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mailbox.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mails.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-minus.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-check-inside.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-check.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-house.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-minus-inside.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-minus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-off.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-pen.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-plus-inside.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-plus.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-x-inside.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin-x.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pin.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-pinned.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map-plus.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/map.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mars-stroke.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mars.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/martini.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/maximize-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/maximize.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/medal.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/megaphone-off.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/megaphone.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/meh.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/memory-stick.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/menu.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/merge.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-code.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-dashed.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-heart.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-more.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-off.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-question-mark.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-reply.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-warning.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-circle.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-code.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-dashed.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-diff.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-dot.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-heart.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-lock.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-more.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-off.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-quote.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-reply.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-share.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-text.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-warning.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/message-square.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/messages-square.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mic-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mic-vocal.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mic.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/microchip.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/microscope.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/microwave.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/milestone.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/milk-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/milk.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/minimize-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/minimize.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/minus.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-check.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-cog.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-dot.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-down.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-pause.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-play.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-smartphone.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-speaker.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-stop.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-up.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor-x.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/monitor.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/moon-star.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/moon.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mountain-snow.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mountain.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mouse-off.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mouse-pointer-2.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mouse-pointer-ban.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mouse-pointer-click.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mouse-pointer.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/mouse.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-3d.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-diagonal-2.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-diagonal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-down-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-down-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-up-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-up-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/move.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/music-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/music-3.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/music-4.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/music.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/navigation-2-off.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/navigation-2.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/navigation-off.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/navigation.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/network.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/newspaper.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/nfc.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/non-binary.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/notebook-pen.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/notebook-tabs.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/notebook-text.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/notebook.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/notepad-text-dashed.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/notepad-text.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/nut-off.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/nut.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/octagon-alert.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/octagon-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/octagon-pause.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/octagon-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/octagon.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/omega.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/option.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/orbit.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/origami.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-2.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-check.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-minus.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-open.js +36 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-plus.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-search.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package-x.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/package.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/paint-bucket.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/paint-roller.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/paintbrush-vertical.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/paintbrush.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/palette.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panda.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-bottom-close.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-bottom-dashed.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-bottom-open.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-bottom.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-left-close.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-left-dashed.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-left-open.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-right-close.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-right-dashed.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-right-open.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-top-close.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-top-dashed.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-top-open.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panel-top.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panels-left-bottom.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panels-right-bottom.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/panels-top-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/paperclip.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/parentheses.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/parking-meter.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/party-popper.js +38 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pause.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/paw-print.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pc-case.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pen-line.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pen-off.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pen-tool.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pen.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pencil-line.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pencil-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pencil-ruler.js +35 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pencil.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pentagon.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/percent.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/person-standing.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/philippine-peso.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone-call.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone-forwarded.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone-incoming.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone-missed.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone-off.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone-outgoing.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/phone.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pi.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/piano.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pickaxe.js +36 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/picture-in-picture-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/picture-in-picture.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/piggy-bank.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pilcrow-left.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pilcrow-right.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pilcrow.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pill-bottle.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pill.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pin-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pin.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pipette.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pizza.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plane-landing.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plane-takeoff.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plane.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/play.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plug-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plug-zap.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plug.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/plus.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pocket-knife.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pocket.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/podcast.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pointer-off.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pointer.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/popcorn.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/popsicle.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pound-sterling.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/power-off.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/power.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/presentation.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/printer-check.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/printer.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/projector.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/proportions.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/puzzle.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/pyramid.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/qr-code.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/quote.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rabbit.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radar.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radiation.js +36 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radical.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radio-receiver.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radio-tower.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radio.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/radius.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rail-symbol.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rainbow.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rat.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ratio.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-cent.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-euro.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-indian-rupee.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-japanese-yen.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-pound-sterling.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-russian-ruble.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-swiss-franc.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-text.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt-turkish-lira.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/receipt.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rectangle-circle.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rectangle-ellipsis.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rectangle-goggles.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rectangle-horizontal.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rectangle-vertical.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/recycle.js +38 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/redo-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/redo-dot.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/redo.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/refresh-ccw-dot.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/refresh-ccw.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/refresh-cw-off.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/refresh-cw.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/refrigerator.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/regex.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/remove-formatting.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/repeat-1.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/repeat-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/repeat.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/replace-all.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/replace.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/reply-all.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/reply.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rewind.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ribbon.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rocket.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rocking-chair.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/roller-coaster.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rose.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rotate-3d.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rotate-ccw-key.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rotate-ccw-square.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rotate-cw-square.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rotate-cw.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/route-off.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/route.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/router.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rows-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rows-3.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rows-4.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/rss.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ruler-dimension-line.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ruler.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/russian-ruble.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sailboat.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/salad.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sandwich.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/satellite-dish.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/satellite.js +37 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/saudi-riyal.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/save-all.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/save-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/save.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scale-3d.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scale.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scaling.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-barcode.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-eye.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-face.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-heart.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-line.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-qr-code.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-search.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan-text.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scan.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/school.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scissors-line-dashed.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scissors.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/screen-share-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/screen-share.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scroll-text.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/scroll.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/search-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/search-code.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/search-slash.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/search-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/search.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/section.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/send-horizontal.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/send-to-back.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/send.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/separator-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/separator-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/server-cog.js +38 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/server-crash.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/server-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/server.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/settings-2.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/settings.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shapes.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/share-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/share.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sheet.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shell.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-alert.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-ban.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-check.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-ellipsis.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-half.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-off.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-question-mark.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-user.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shield.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ship-wheel.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ship.js +31 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shirt.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shopping-bag.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shopping-basket.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shopping-cart.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shovel.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shower-head.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shredder.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shrimp.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shrink.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shrub.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/shuffle.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sigma.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signal-high.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signal-low.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signal-medium.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signal-zero.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signal.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signature.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signpost-big.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/signpost.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/siren.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/skip-back.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/skip-forward.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/skull.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/slack.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/slash.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/slice.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sliders-horizontal.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sliders-vertical.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/smartphone-charging.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/smartphone-nfc.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/smartphone.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/smile-plus.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/smile.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/snail.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/snowflake.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/soap-dispenser-droplet.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sofa.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/soup.js +35 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/space.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spade.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sparkle.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sparkles.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/speaker.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/speech.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spell-check-2.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spell-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spline-pointer.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spline.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/split.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spool.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spotlight.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/spray-can.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sprout.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-activity.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-down-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-down-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-down.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-up-left.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-up-right.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-arrow-up.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-asterisk.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-bottom-dashed-scissors.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-chart-gantt.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-check-big.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-check.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-chevron-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-chevron-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-chevron-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-chevron-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-code.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom-code.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dashed-kanban.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dashed-mouse-pointer.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dashed-top-solid.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dashed.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-divide.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-dot.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-equal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-function.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-kanban.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-library.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-m.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-menu.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-minus.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-mouse-pointer.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-parking-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-parking.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-pause.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-pen.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-percent.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-pi.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-pilcrow.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-play.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-plus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-power.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-radical.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-round-corner.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-scissors.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-sigma.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-slash.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-split-horizontal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-split-vertical.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-square.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-stack.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-star.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-stop.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-terminal.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-user-round.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-user.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square-x.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/square.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squares-exclude.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squares-intersect.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squares-subtract.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squares-unite.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squircle-dashed.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squircle.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/squirrel.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/stamp.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/star-half.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/star-off.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/star.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/step-back.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/step-forward.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/stethoscope.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sticker.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sticky-note.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/store.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/stretch-horizontal.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/stretch-vertical.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/strikethrough.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/subscript.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sun-dim.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sun-medium.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sun-moon.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sun-snow.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sun.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sunrise.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sunset.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/superscript.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/swatch-book.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/swiss-franc.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/switch-camera.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/sword.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/swords.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/syringe.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-2.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-cells-merge.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-cells-split.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-columns-split.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-of-contents.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-properties.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table-rows-split.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/table.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tablet-smartphone.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tablet.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tablets.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tag.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tags.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tally-1.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tally-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tally-3.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tally-4.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tally-5.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tangent.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/target.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/telescope.js +33 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tent-tree.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tent.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/terminal.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/test-tube-diagonal.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/test-tube.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/test-tubes.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/text-cursor-input.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/text-cursor.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/text-quote.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/text-search.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/text-select.js +29 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/text.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/theater.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/thermometer-snowflake.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/thermometer-sun.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/thermometer.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/thumbs-down.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/thumbs-up.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket-check.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket-minus.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket-percent.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket-plus.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket-slash.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ticket.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tickets-plane.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tickets.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/timer-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/timer-reset.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/timer.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/toggle-left.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/toggle-right.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/toilet.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tool-case.js +36 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tornado.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/torus.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/touchpad-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/touchpad.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tower-control.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/toy-brick.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tractor.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/traffic-cone.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/train-front-tunnel.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/train-front.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/train-track.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tram-front.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/transgender.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trash-2.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trash.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tree-deciduous.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tree-palm.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tree-pine.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trees.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trello.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trending-down.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trending-up-down.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trending-up.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/triangle-alert.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/triangle-dashed.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/triangle-right.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/triangle.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/trophy.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/truck-electric.js +30 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/truck.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/turkish-lira.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/turntable.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/turtle.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tv-minimal-play.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tv-minimal.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/tv.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/twitch.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/twitter.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/type-outline.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/type.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/umbrella-off.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/umbrella.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/underline.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/undo-2.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/undo-dot.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/undo.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/unfold-horizontal.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/unfold-vertical.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/ungroup.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/university.js +27 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/unlink-2.js +15 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/unlink.js +32 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/unplug.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/upload.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/usb.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-cog.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-lock.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-minus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-pen.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-plus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-check.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-cog.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-minus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-pen.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-plus.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-search.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-round.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-search.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-star.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user-x.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/user.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/users-round.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/users.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/utensils-crossed.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/utensils.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/utility-pole.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/variable.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/vault.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/vector-square.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/vegan.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/venetian-mask.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/venus-and-mars.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/venus.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/vibrate-off.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/vibrate.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/video-off.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/video.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/videotape.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/view.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/voicemail.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/volleyball.js +20 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/volume-1.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/volume-2.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/volume-off.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/volume-x.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/volume.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/vote.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wallet-cards.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wallet-minimal.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wallet.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wallpaper.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wand-sparkles.js +28 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wand.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/warehouse.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/washing-machine.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/watch.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/waves-ladder.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/waves.js +35 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/waypoints.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/webcam.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/webhook-off.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/webhook.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/weight.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wheat-off.js +54 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wheat.js +58 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/whole-word.js +19 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-cog.js +26 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-high.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-low.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-off.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-pen.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-sync.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi-zero.js +13 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wifi.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wind-arrow-down.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wind.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wine-off.js +25 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wine.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/workflow.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/worm.js +23 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wrap-text.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/wrench.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/x.js +16 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/youtube.js +22 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/zap-off.js +24 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/zap.js +21 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/zoom-in.js +18 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/icons/zoom-out.js +17 -0
- package/dist/node_modules/.pnpm/lucide-react@0.540.0_react@19.2.4/node_modules/lucide-react/dist/esm/shared/src/utils.js +32 -0
- package/dist/node_modules/.pnpm/react-error-boundary@6.1.1_react@19.2.4/node_modules/react-error-boundary/dist/react-error-boundary.js +70 -0
- package/package.json +262 -81
|
@@ -0,0 +1,1023 @@
|
|
|
1
|
+
import type { Field } from "@puckeditor/core";
|
|
2
|
+
import type { CompoundFormProps } from "../form";
|
|
3
|
+
import type { CompoundFieldProps } from "../field";
|
|
4
|
+
import { ActionField } from "../action-field";
|
|
5
|
+
export declare const icon: {
|
|
6
|
+
readonly type: "select";
|
|
7
|
+
readonly options: readonly [{
|
|
8
|
+
readonly label: "none";
|
|
9
|
+
readonly value: "none";
|
|
10
|
+
}, ...{
|
|
11
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
12
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
13
|
+
}[]];
|
|
14
|
+
};
|
|
15
|
+
export declare const action: {
|
|
16
|
+
type: "custom";
|
|
17
|
+
label: string;
|
|
18
|
+
render: typeof ActionField;
|
|
19
|
+
};
|
|
20
|
+
export declare const actionDefaults: {
|
|
21
|
+
readonly type: "external";
|
|
22
|
+
readonly pageUrl: "";
|
|
23
|
+
readonly externalUrl: "#";
|
|
24
|
+
readonly openInNewTab: "false";
|
|
25
|
+
readonly email: "";
|
|
26
|
+
readonly subject: "";
|
|
27
|
+
readonly phone: "";
|
|
28
|
+
readonly sectionId: "";
|
|
29
|
+
readonly downloadUrl: "";
|
|
30
|
+
};
|
|
31
|
+
export declare const button: {
|
|
32
|
+
readonly type: "object";
|
|
33
|
+
readonly objectFields: {
|
|
34
|
+
readonly label: {
|
|
35
|
+
readonly type: "text";
|
|
36
|
+
};
|
|
37
|
+
readonly url: {
|
|
38
|
+
readonly type: "text";
|
|
39
|
+
};
|
|
40
|
+
readonly action: {
|
|
41
|
+
type: "custom";
|
|
42
|
+
label: string;
|
|
43
|
+
render: typeof ActionField;
|
|
44
|
+
};
|
|
45
|
+
readonly variant: {
|
|
46
|
+
readonly type: "select";
|
|
47
|
+
readonly options: readonly [{
|
|
48
|
+
readonly label: "primary";
|
|
49
|
+
readonly value: "default";
|
|
50
|
+
}, {
|
|
51
|
+
readonly label: "secondary";
|
|
52
|
+
readonly value: "secondary";
|
|
53
|
+
}, {
|
|
54
|
+
readonly label: "outline";
|
|
55
|
+
readonly value: "outline";
|
|
56
|
+
}, {
|
|
57
|
+
readonly label: "ghost";
|
|
58
|
+
readonly value: "ghost";
|
|
59
|
+
}, {
|
|
60
|
+
readonly label: "link";
|
|
61
|
+
readonly value: "link";
|
|
62
|
+
}, {
|
|
63
|
+
readonly label: "destructive";
|
|
64
|
+
readonly value: "destructive";
|
|
65
|
+
}];
|
|
66
|
+
};
|
|
67
|
+
readonly size: {
|
|
68
|
+
readonly type: "select";
|
|
69
|
+
readonly options: readonly [{
|
|
70
|
+
readonly label: "default";
|
|
71
|
+
readonly value: "default";
|
|
72
|
+
}, {
|
|
73
|
+
readonly label: "sm";
|
|
74
|
+
readonly value: "sm";
|
|
75
|
+
}, {
|
|
76
|
+
readonly label: "lg";
|
|
77
|
+
readonly value: "lg";
|
|
78
|
+
}, {
|
|
79
|
+
readonly label: "icon";
|
|
80
|
+
readonly value: "icon";
|
|
81
|
+
}];
|
|
82
|
+
};
|
|
83
|
+
readonly icon: {
|
|
84
|
+
readonly type: "select";
|
|
85
|
+
readonly options: readonly [{
|
|
86
|
+
readonly label: "none";
|
|
87
|
+
readonly value: "none";
|
|
88
|
+
}, ...{
|
|
89
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
90
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
91
|
+
}[]];
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
export declare const buttons: {
|
|
96
|
+
readonly type: "array";
|
|
97
|
+
readonly max: 3;
|
|
98
|
+
readonly getItemSummary: (item: {
|
|
99
|
+
label?: string;
|
|
100
|
+
}, index?: number) => string;
|
|
101
|
+
readonly arrayFields: {
|
|
102
|
+
readonly label: {
|
|
103
|
+
readonly type: "text";
|
|
104
|
+
};
|
|
105
|
+
readonly url: {
|
|
106
|
+
readonly type: "text";
|
|
107
|
+
};
|
|
108
|
+
readonly action: {
|
|
109
|
+
type: "custom";
|
|
110
|
+
label: string;
|
|
111
|
+
render: typeof ActionField;
|
|
112
|
+
};
|
|
113
|
+
readonly variant: {
|
|
114
|
+
readonly type: "select";
|
|
115
|
+
readonly options: readonly [{
|
|
116
|
+
readonly label: "primary";
|
|
117
|
+
readonly value: "default";
|
|
118
|
+
}, {
|
|
119
|
+
readonly label: "secondary";
|
|
120
|
+
readonly value: "secondary";
|
|
121
|
+
}, {
|
|
122
|
+
readonly label: "outline";
|
|
123
|
+
readonly value: "outline";
|
|
124
|
+
}, {
|
|
125
|
+
readonly label: "ghost";
|
|
126
|
+
readonly value: "ghost";
|
|
127
|
+
}, {
|
|
128
|
+
readonly label: "link";
|
|
129
|
+
readonly value: "link";
|
|
130
|
+
}, {
|
|
131
|
+
readonly label: "destructive";
|
|
132
|
+
readonly value: "destructive";
|
|
133
|
+
}];
|
|
134
|
+
};
|
|
135
|
+
readonly size: {
|
|
136
|
+
readonly type: "select";
|
|
137
|
+
readonly options: readonly [{
|
|
138
|
+
readonly label: "default";
|
|
139
|
+
readonly value: "default";
|
|
140
|
+
}, {
|
|
141
|
+
readonly label: "sm";
|
|
142
|
+
readonly value: "sm";
|
|
143
|
+
}, {
|
|
144
|
+
readonly label: "lg";
|
|
145
|
+
readonly value: "lg";
|
|
146
|
+
}, {
|
|
147
|
+
readonly label: "icon";
|
|
148
|
+
readonly value: "icon";
|
|
149
|
+
}];
|
|
150
|
+
};
|
|
151
|
+
readonly icon: {
|
|
152
|
+
readonly type: "select";
|
|
153
|
+
readonly options: readonly [{
|
|
154
|
+
readonly label: "none";
|
|
155
|
+
readonly value: "none";
|
|
156
|
+
}, ...{
|
|
157
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
158
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
159
|
+
}[]];
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
readonly defaultItemProps: {
|
|
163
|
+
readonly label: "Button";
|
|
164
|
+
readonly url: "";
|
|
165
|
+
readonly action: {
|
|
166
|
+
readonly type: "external";
|
|
167
|
+
readonly pageUrl: "";
|
|
168
|
+
readonly externalUrl: "#";
|
|
169
|
+
readonly openInNewTab: "false";
|
|
170
|
+
readonly email: "";
|
|
171
|
+
readonly subject: "";
|
|
172
|
+
readonly phone: "";
|
|
173
|
+
readonly sectionId: "";
|
|
174
|
+
readonly downloadUrl: "";
|
|
175
|
+
};
|
|
176
|
+
readonly variant: "default";
|
|
177
|
+
readonly size: "default";
|
|
178
|
+
readonly icon: "none";
|
|
179
|
+
};
|
|
180
|
+
readonly ai: {
|
|
181
|
+
readonly instructions: "Buttons must use the same size";
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
export declare const badge: {
|
|
185
|
+
readonly type: "object";
|
|
186
|
+
readonly objectFields: {
|
|
187
|
+
readonly label: {
|
|
188
|
+
readonly type: "text";
|
|
189
|
+
};
|
|
190
|
+
readonly url: {
|
|
191
|
+
readonly type: "text";
|
|
192
|
+
};
|
|
193
|
+
readonly variant: {
|
|
194
|
+
readonly type: "select";
|
|
195
|
+
readonly options: readonly [{
|
|
196
|
+
readonly label: "default";
|
|
197
|
+
readonly value: "default";
|
|
198
|
+
}, {
|
|
199
|
+
readonly label: "secondary";
|
|
200
|
+
readonly value: "secondary";
|
|
201
|
+
}, {
|
|
202
|
+
readonly label: "destructive";
|
|
203
|
+
readonly value: "destructive";
|
|
204
|
+
}, {
|
|
205
|
+
readonly label: "outline";
|
|
206
|
+
readonly value: "outline";
|
|
207
|
+
}];
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
export declare const image: {
|
|
212
|
+
type: "object";
|
|
213
|
+
objectFields: {
|
|
214
|
+
src: Field<string>;
|
|
215
|
+
alt: {
|
|
216
|
+
type: "text";
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
export declare const getPlaceholderImageUrl: (size: string, text?: string) => string;
|
|
221
|
+
export declare const image16x9Placeholder: {
|
|
222
|
+
alt: string;
|
|
223
|
+
src: string;
|
|
224
|
+
};
|
|
225
|
+
export declare const image1x1Placeholder: {
|
|
226
|
+
alt: string;
|
|
227
|
+
src: string;
|
|
228
|
+
};
|
|
229
|
+
export declare const image9x16Placeholder: {
|
|
230
|
+
alt: string;
|
|
231
|
+
src: string;
|
|
232
|
+
};
|
|
233
|
+
export declare const images: {
|
|
234
|
+
readonly type: "array";
|
|
235
|
+
readonly max: 10;
|
|
236
|
+
readonly getItemSummary: (item: {
|
|
237
|
+
alt?: string;
|
|
238
|
+
}, index?: number) => string;
|
|
239
|
+
readonly arrayFields: {
|
|
240
|
+
readonly src: Field<string>;
|
|
241
|
+
readonly alt: {
|
|
242
|
+
type: "text";
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
readonly defaultItemProps: {
|
|
246
|
+
alt: string;
|
|
247
|
+
src: string;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
export declare const paddingLevel: {
|
|
251
|
+
readonly type: "select";
|
|
252
|
+
readonly options: readonly [{
|
|
253
|
+
readonly label: "none";
|
|
254
|
+
readonly value: "none";
|
|
255
|
+
}, {
|
|
256
|
+
readonly label: "small";
|
|
257
|
+
readonly value: "small";
|
|
258
|
+
}, {
|
|
259
|
+
readonly label: "medium";
|
|
260
|
+
readonly value: "medium";
|
|
261
|
+
}, {
|
|
262
|
+
readonly label: "large";
|
|
263
|
+
readonly value: "large";
|
|
264
|
+
}];
|
|
265
|
+
readonly ai: {
|
|
266
|
+
readonly instructions: "Never select none as an option";
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
export declare const padding: {
|
|
270
|
+
readonly type: "object";
|
|
271
|
+
readonly objectFields: {
|
|
272
|
+
readonly top: {
|
|
273
|
+
readonly type: "select";
|
|
274
|
+
readonly options: readonly [{
|
|
275
|
+
readonly label: "none";
|
|
276
|
+
readonly value: "none";
|
|
277
|
+
}, {
|
|
278
|
+
readonly label: "small";
|
|
279
|
+
readonly value: "small";
|
|
280
|
+
}, {
|
|
281
|
+
readonly label: "medium";
|
|
282
|
+
readonly value: "medium";
|
|
283
|
+
}, {
|
|
284
|
+
readonly label: "large";
|
|
285
|
+
readonly value: "large";
|
|
286
|
+
}];
|
|
287
|
+
readonly ai: {
|
|
288
|
+
readonly instructions: "Never select none as an option";
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
readonly bottom: {
|
|
292
|
+
readonly type: "select";
|
|
293
|
+
readonly options: readonly [{
|
|
294
|
+
readonly label: "none";
|
|
295
|
+
readonly value: "none";
|
|
296
|
+
}, {
|
|
297
|
+
readonly label: "small";
|
|
298
|
+
readonly value: "small";
|
|
299
|
+
}, {
|
|
300
|
+
readonly label: "medium";
|
|
301
|
+
readonly value: "medium";
|
|
302
|
+
}, {
|
|
303
|
+
readonly label: "large";
|
|
304
|
+
readonly value: "large";
|
|
305
|
+
}];
|
|
306
|
+
readonly ai: {
|
|
307
|
+
readonly instructions: "Never select none as an option";
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
readonly ai: {
|
|
312
|
+
readonly exclude: true;
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
export declare const paddingDefaults: {
|
|
316
|
+
readonly top: "medium";
|
|
317
|
+
readonly bottom: "medium";
|
|
318
|
+
};
|
|
319
|
+
export declare const heading: {
|
|
320
|
+
readonly type: "text";
|
|
321
|
+
readonly contentEditable: true;
|
|
322
|
+
};
|
|
323
|
+
export declare const description: {
|
|
324
|
+
readonly type: "textarea";
|
|
325
|
+
readonly contentEditable: true;
|
|
326
|
+
};
|
|
327
|
+
export declare const features: {
|
|
328
|
+
readonly type: "array";
|
|
329
|
+
readonly max: 5;
|
|
330
|
+
readonly getItemSummary: (item: {
|
|
331
|
+
name?: string;
|
|
332
|
+
}, index?: number) => string;
|
|
333
|
+
readonly arrayFields: {
|
|
334
|
+
readonly icon: {
|
|
335
|
+
readonly type: "select";
|
|
336
|
+
readonly options: readonly [{
|
|
337
|
+
readonly label: "none";
|
|
338
|
+
readonly value: "none";
|
|
339
|
+
}, ...{
|
|
340
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
341
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
342
|
+
}[]];
|
|
343
|
+
};
|
|
344
|
+
readonly name: {
|
|
345
|
+
readonly type: "text";
|
|
346
|
+
readonly contentEditable: true;
|
|
347
|
+
};
|
|
348
|
+
readonly description: {
|
|
349
|
+
readonly type: "textarea";
|
|
350
|
+
readonly contentEditable: true;
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
readonly defaultItemProps: {
|
|
354
|
+
readonly icon: "check";
|
|
355
|
+
readonly name: "Feature name";
|
|
356
|
+
readonly description: "Description of the feature";
|
|
357
|
+
};
|
|
358
|
+
};
|
|
359
|
+
export declare const contentFields: {
|
|
360
|
+
readonly heading: {
|
|
361
|
+
readonly type: "text";
|
|
362
|
+
readonly contentEditable: true;
|
|
363
|
+
};
|
|
364
|
+
readonly description: {
|
|
365
|
+
readonly type: "textarea";
|
|
366
|
+
readonly contentEditable: true;
|
|
367
|
+
};
|
|
368
|
+
readonly badge: {
|
|
369
|
+
readonly type: "object";
|
|
370
|
+
readonly objectFields: {
|
|
371
|
+
readonly label: {
|
|
372
|
+
readonly type: "text";
|
|
373
|
+
};
|
|
374
|
+
readonly url: {
|
|
375
|
+
readonly type: "text";
|
|
376
|
+
};
|
|
377
|
+
readonly variant: {
|
|
378
|
+
readonly type: "select";
|
|
379
|
+
readonly options: readonly [{
|
|
380
|
+
readonly label: "default";
|
|
381
|
+
readonly value: "default";
|
|
382
|
+
}, {
|
|
383
|
+
readonly label: "secondary";
|
|
384
|
+
readonly value: "secondary";
|
|
385
|
+
}, {
|
|
386
|
+
readonly label: "destructive";
|
|
387
|
+
readonly value: "destructive";
|
|
388
|
+
}, {
|
|
389
|
+
readonly label: "outline";
|
|
390
|
+
readonly value: "outline";
|
|
391
|
+
}];
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
readonly buttons: {
|
|
396
|
+
readonly type: "array";
|
|
397
|
+
readonly max: 3;
|
|
398
|
+
readonly getItemSummary: (item: {
|
|
399
|
+
label?: string;
|
|
400
|
+
}, index?: number) => string;
|
|
401
|
+
readonly arrayFields: {
|
|
402
|
+
readonly label: {
|
|
403
|
+
readonly type: "text";
|
|
404
|
+
};
|
|
405
|
+
readonly url: {
|
|
406
|
+
readonly type: "text";
|
|
407
|
+
};
|
|
408
|
+
readonly action: {
|
|
409
|
+
type: "custom";
|
|
410
|
+
label: string;
|
|
411
|
+
render: typeof ActionField;
|
|
412
|
+
};
|
|
413
|
+
readonly variant: {
|
|
414
|
+
readonly type: "select";
|
|
415
|
+
readonly options: readonly [{
|
|
416
|
+
readonly label: "primary";
|
|
417
|
+
readonly value: "default";
|
|
418
|
+
}, {
|
|
419
|
+
readonly label: "secondary";
|
|
420
|
+
readonly value: "secondary";
|
|
421
|
+
}, {
|
|
422
|
+
readonly label: "outline";
|
|
423
|
+
readonly value: "outline";
|
|
424
|
+
}, {
|
|
425
|
+
readonly label: "ghost";
|
|
426
|
+
readonly value: "ghost";
|
|
427
|
+
}, {
|
|
428
|
+
readonly label: "link";
|
|
429
|
+
readonly value: "link";
|
|
430
|
+
}, {
|
|
431
|
+
readonly label: "destructive";
|
|
432
|
+
readonly value: "destructive";
|
|
433
|
+
}];
|
|
434
|
+
};
|
|
435
|
+
readonly size: {
|
|
436
|
+
readonly type: "select";
|
|
437
|
+
readonly options: readonly [{
|
|
438
|
+
readonly label: "default";
|
|
439
|
+
readonly value: "default";
|
|
440
|
+
}, {
|
|
441
|
+
readonly label: "sm";
|
|
442
|
+
readonly value: "sm";
|
|
443
|
+
}, {
|
|
444
|
+
readonly label: "lg";
|
|
445
|
+
readonly value: "lg";
|
|
446
|
+
}, {
|
|
447
|
+
readonly label: "icon";
|
|
448
|
+
readonly value: "icon";
|
|
449
|
+
}];
|
|
450
|
+
};
|
|
451
|
+
readonly icon: {
|
|
452
|
+
readonly type: "select";
|
|
453
|
+
readonly options: readonly [{
|
|
454
|
+
readonly label: "none";
|
|
455
|
+
readonly value: "none";
|
|
456
|
+
}, ...{
|
|
457
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
458
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
459
|
+
}[]];
|
|
460
|
+
};
|
|
461
|
+
};
|
|
462
|
+
readonly defaultItemProps: {
|
|
463
|
+
readonly label: "Button";
|
|
464
|
+
readonly url: "";
|
|
465
|
+
readonly action: {
|
|
466
|
+
readonly type: "external";
|
|
467
|
+
readonly pageUrl: "";
|
|
468
|
+
readonly externalUrl: "#";
|
|
469
|
+
readonly openInNewTab: "false";
|
|
470
|
+
readonly email: "";
|
|
471
|
+
readonly subject: "";
|
|
472
|
+
readonly phone: "";
|
|
473
|
+
readonly sectionId: "";
|
|
474
|
+
readonly downloadUrl: "";
|
|
475
|
+
};
|
|
476
|
+
readonly variant: "default";
|
|
477
|
+
readonly size: "default";
|
|
478
|
+
readonly icon: "none";
|
|
479
|
+
};
|
|
480
|
+
readonly ai: {
|
|
481
|
+
readonly instructions: "Buttons must use the same size";
|
|
482
|
+
};
|
|
483
|
+
};
|
|
484
|
+
};
|
|
485
|
+
export declare const contentFieldsWithFeatures: {
|
|
486
|
+
readonly heading: {
|
|
487
|
+
readonly type: "text";
|
|
488
|
+
readonly contentEditable: true;
|
|
489
|
+
};
|
|
490
|
+
readonly description: {
|
|
491
|
+
readonly type: "textarea";
|
|
492
|
+
readonly contentEditable: true;
|
|
493
|
+
};
|
|
494
|
+
readonly badge: {
|
|
495
|
+
readonly type: "object";
|
|
496
|
+
readonly objectFields: {
|
|
497
|
+
readonly label: {
|
|
498
|
+
readonly type: "text";
|
|
499
|
+
};
|
|
500
|
+
readonly url: {
|
|
501
|
+
readonly type: "text";
|
|
502
|
+
};
|
|
503
|
+
readonly variant: {
|
|
504
|
+
readonly type: "select";
|
|
505
|
+
readonly options: readonly [{
|
|
506
|
+
readonly label: "default";
|
|
507
|
+
readonly value: "default";
|
|
508
|
+
}, {
|
|
509
|
+
readonly label: "secondary";
|
|
510
|
+
readonly value: "secondary";
|
|
511
|
+
}, {
|
|
512
|
+
readonly label: "destructive";
|
|
513
|
+
readonly value: "destructive";
|
|
514
|
+
}, {
|
|
515
|
+
readonly label: "outline";
|
|
516
|
+
readonly value: "outline";
|
|
517
|
+
}];
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
readonly features: {
|
|
522
|
+
readonly type: "array";
|
|
523
|
+
readonly max: 5;
|
|
524
|
+
readonly getItemSummary: (item: {
|
|
525
|
+
name?: string;
|
|
526
|
+
}, index?: number) => string;
|
|
527
|
+
readonly arrayFields: {
|
|
528
|
+
readonly icon: {
|
|
529
|
+
readonly type: "select";
|
|
530
|
+
readonly options: readonly [{
|
|
531
|
+
readonly label: "none";
|
|
532
|
+
readonly value: "none";
|
|
533
|
+
}, ...{
|
|
534
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
535
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
536
|
+
}[]];
|
|
537
|
+
};
|
|
538
|
+
readonly name: {
|
|
539
|
+
readonly type: "text";
|
|
540
|
+
readonly contentEditable: true;
|
|
541
|
+
};
|
|
542
|
+
readonly description: {
|
|
543
|
+
readonly type: "textarea";
|
|
544
|
+
readonly contentEditable: true;
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
readonly defaultItemProps: {
|
|
548
|
+
readonly icon: "check";
|
|
549
|
+
readonly name: "Feature name";
|
|
550
|
+
readonly description: "Description of the feature";
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
readonly buttons: {
|
|
554
|
+
readonly type: "array";
|
|
555
|
+
readonly max: 3;
|
|
556
|
+
readonly getItemSummary: (item: {
|
|
557
|
+
label?: string;
|
|
558
|
+
}, index?: number) => string;
|
|
559
|
+
readonly arrayFields: {
|
|
560
|
+
readonly label: {
|
|
561
|
+
readonly type: "text";
|
|
562
|
+
};
|
|
563
|
+
readonly url: {
|
|
564
|
+
readonly type: "text";
|
|
565
|
+
};
|
|
566
|
+
readonly action: {
|
|
567
|
+
type: "custom";
|
|
568
|
+
label: string;
|
|
569
|
+
render: typeof ActionField;
|
|
570
|
+
};
|
|
571
|
+
readonly variant: {
|
|
572
|
+
readonly type: "select";
|
|
573
|
+
readonly options: readonly [{
|
|
574
|
+
readonly label: "primary";
|
|
575
|
+
readonly value: "default";
|
|
576
|
+
}, {
|
|
577
|
+
readonly label: "secondary";
|
|
578
|
+
readonly value: "secondary";
|
|
579
|
+
}, {
|
|
580
|
+
readonly label: "outline";
|
|
581
|
+
readonly value: "outline";
|
|
582
|
+
}, {
|
|
583
|
+
readonly label: "ghost";
|
|
584
|
+
readonly value: "ghost";
|
|
585
|
+
}, {
|
|
586
|
+
readonly label: "link";
|
|
587
|
+
readonly value: "link";
|
|
588
|
+
}, {
|
|
589
|
+
readonly label: "destructive";
|
|
590
|
+
readonly value: "destructive";
|
|
591
|
+
}];
|
|
592
|
+
};
|
|
593
|
+
readonly size: {
|
|
594
|
+
readonly type: "select";
|
|
595
|
+
readonly options: readonly [{
|
|
596
|
+
readonly label: "default";
|
|
597
|
+
readonly value: "default";
|
|
598
|
+
}, {
|
|
599
|
+
readonly label: "sm";
|
|
600
|
+
readonly value: "sm";
|
|
601
|
+
}, {
|
|
602
|
+
readonly label: "lg";
|
|
603
|
+
readonly value: "lg";
|
|
604
|
+
}, {
|
|
605
|
+
readonly label: "icon";
|
|
606
|
+
readonly value: "icon";
|
|
607
|
+
}];
|
|
608
|
+
};
|
|
609
|
+
readonly icon: {
|
|
610
|
+
readonly type: "select";
|
|
611
|
+
readonly options: readonly [{
|
|
612
|
+
readonly label: "none";
|
|
613
|
+
readonly value: "none";
|
|
614
|
+
}, ...{
|
|
615
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
616
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
617
|
+
}[]];
|
|
618
|
+
};
|
|
619
|
+
};
|
|
620
|
+
readonly defaultItemProps: {
|
|
621
|
+
readonly label: "Button";
|
|
622
|
+
readonly url: "";
|
|
623
|
+
readonly action: {
|
|
624
|
+
readonly type: "external";
|
|
625
|
+
readonly pageUrl: "";
|
|
626
|
+
readonly externalUrl: "#";
|
|
627
|
+
readonly openInNewTab: "false";
|
|
628
|
+
readonly email: "";
|
|
629
|
+
readonly subject: "";
|
|
630
|
+
readonly phone: "";
|
|
631
|
+
readonly sectionId: "";
|
|
632
|
+
readonly downloadUrl: "";
|
|
633
|
+
};
|
|
634
|
+
readonly variant: "default";
|
|
635
|
+
readonly size: "default";
|
|
636
|
+
readonly icon: "none";
|
|
637
|
+
};
|
|
638
|
+
readonly ai: {
|
|
639
|
+
readonly instructions: "Buttons must use the same size";
|
|
640
|
+
};
|
|
641
|
+
};
|
|
642
|
+
};
|
|
643
|
+
export declare const card: {
|
|
644
|
+
readonly type: "object";
|
|
645
|
+
readonly objectFields: {
|
|
646
|
+
readonly icon: {
|
|
647
|
+
readonly type: "select";
|
|
648
|
+
readonly options: readonly [{
|
|
649
|
+
readonly label: "none";
|
|
650
|
+
readonly value: "none";
|
|
651
|
+
}, ...{
|
|
652
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
653
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
654
|
+
}[]];
|
|
655
|
+
};
|
|
656
|
+
readonly heading: {
|
|
657
|
+
readonly type: "text";
|
|
658
|
+
readonly contentEditable: true;
|
|
659
|
+
};
|
|
660
|
+
readonly description: {
|
|
661
|
+
readonly type: "textarea";
|
|
662
|
+
readonly contentEditable: true;
|
|
663
|
+
};
|
|
664
|
+
readonly button: {
|
|
665
|
+
readonly type: "object";
|
|
666
|
+
readonly objectFields: {
|
|
667
|
+
readonly label: {
|
|
668
|
+
readonly type: "text";
|
|
669
|
+
};
|
|
670
|
+
readonly url: {
|
|
671
|
+
readonly type: "text";
|
|
672
|
+
};
|
|
673
|
+
readonly action: {
|
|
674
|
+
type: "custom";
|
|
675
|
+
label: string;
|
|
676
|
+
render: typeof ActionField;
|
|
677
|
+
};
|
|
678
|
+
readonly variant: {
|
|
679
|
+
readonly type: "select";
|
|
680
|
+
readonly options: readonly [{
|
|
681
|
+
readonly label: "primary";
|
|
682
|
+
readonly value: "default";
|
|
683
|
+
}, {
|
|
684
|
+
readonly label: "secondary";
|
|
685
|
+
readonly value: "secondary";
|
|
686
|
+
}, {
|
|
687
|
+
readonly label: "outline";
|
|
688
|
+
readonly value: "outline";
|
|
689
|
+
}, {
|
|
690
|
+
readonly label: "ghost";
|
|
691
|
+
readonly value: "ghost";
|
|
692
|
+
}, {
|
|
693
|
+
readonly label: "link";
|
|
694
|
+
readonly value: "link";
|
|
695
|
+
}, {
|
|
696
|
+
readonly label: "destructive";
|
|
697
|
+
readonly value: "destructive";
|
|
698
|
+
}];
|
|
699
|
+
};
|
|
700
|
+
readonly size: {
|
|
701
|
+
readonly type: "select";
|
|
702
|
+
readonly options: readonly [{
|
|
703
|
+
readonly label: "default";
|
|
704
|
+
readonly value: "default";
|
|
705
|
+
}, {
|
|
706
|
+
readonly label: "sm";
|
|
707
|
+
readonly value: "sm";
|
|
708
|
+
}, {
|
|
709
|
+
readonly label: "lg";
|
|
710
|
+
readonly value: "lg";
|
|
711
|
+
}, {
|
|
712
|
+
readonly label: "icon";
|
|
713
|
+
readonly value: "icon";
|
|
714
|
+
}];
|
|
715
|
+
};
|
|
716
|
+
readonly icon: {
|
|
717
|
+
readonly type: "select";
|
|
718
|
+
readonly options: readonly [{
|
|
719
|
+
readonly label: "none";
|
|
720
|
+
readonly value: "none";
|
|
721
|
+
}, ...{
|
|
722
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
723
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
724
|
+
}[]];
|
|
725
|
+
};
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
};
|
|
730
|
+
export declare const cards: {
|
|
731
|
+
readonly type: "array";
|
|
732
|
+
readonly getItemSummary: (item: {
|
|
733
|
+
heading?: string;
|
|
734
|
+
}, index?: number) => string;
|
|
735
|
+
readonly arrayFields: {
|
|
736
|
+
readonly icon: {
|
|
737
|
+
readonly type: "select";
|
|
738
|
+
readonly options: readonly [{
|
|
739
|
+
readonly label: "none";
|
|
740
|
+
readonly value: "none";
|
|
741
|
+
}, ...{
|
|
742
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
743
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
744
|
+
}[]];
|
|
745
|
+
};
|
|
746
|
+
readonly heading: {
|
|
747
|
+
readonly type: "text";
|
|
748
|
+
readonly contentEditable: true;
|
|
749
|
+
};
|
|
750
|
+
readonly description: {
|
|
751
|
+
readonly type: "textarea";
|
|
752
|
+
readonly contentEditable: true;
|
|
753
|
+
};
|
|
754
|
+
readonly button: {
|
|
755
|
+
readonly type: "object";
|
|
756
|
+
readonly objectFields: {
|
|
757
|
+
readonly label: {
|
|
758
|
+
readonly type: "text";
|
|
759
|
+
};
|
|
760
|
+
readonly url: {
|
|
761
|
+
readonly type: "text";
|
|
762
|
+
};
|
|
763
|
+
readonly action: {
|
|
764
|
+
type: "custom";
|
|
765
|
+
label: string;
|
|
766
|
+
render: typeof ActionField;
|
|
767
|
+
};
|
|
768
|
+
readonly variant: {
|
|
769
|
+
readonly type: "select";
|
|
770
|
+
readonly options: readonly [{
|
|
771
|
+
readonly label: "primary";
|
|
772
|
+
readonly value: "default";
|
|
773
|
+
}, {
|
|
774
|
+
readonly label: "secondary";
|
|
775
|
+
readonly value: "secondary";
|
|
776
|
+
}, {
|
|
777
|
+
readonly label: "outline";
|
|
778
|
+
readonly value: "outline";
|
|
779
|
+
}, {
|
|
780
|
+
readonly label: "ghost";
|
|
781
|
+
readonly value: "ghost";
|
|
782
|
+
}, {
|
|
783
|
+
readonly label: "link";
|
|
784
|
+
readonly value: "link";
|
|
785
|
+
}, {
|
|
786
|
+
readonly label: "destructive";
|
|
787
|
+
readonly value: "destructive";
|
|
788
|
+
}];
|
|
789
|
+
};
|
|
790
|
+
readonly size: {
|
|
791
|
+
readonly type: "select";
|
|
792
|
+
readonly options: readonly [{
|
|
793
|
+
readonly label: "default";
|
|
794
|
+
readonly value: "default";
|
|
795
|
+
}, {
|
|
796
|
+
readonly label: "sm";
|
|
797
|
+
readonly value: "sm";
|
|
798
|
+
}, {
|
|
799
|
+
readonly label: "lg";
|
|
800
|
+
readonly value: "lg";
|
|
801
|
+
}, {
|
|
802
|
+
readonly label: "icon";
|
|
803
|
+
readonly value: "icon";
|
|
804
|
+
}];
|
|
805
|
+
};
|
|
806
|
+
readonly icon: {
|
|
807
|
+
readonly type: "select";
|
|
808
|
+
readonly options: readonly [{
|
|
809
|
+
readonly label: "none";
|
|
810
|
+
readonly value: "none";
|
|
811
|
+
}, ...{
|
|
812
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
813
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
814
|
+
}[]];
|
|
815
|
+
};
|
|
816
|
+
};
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
readonly defaultItemProps: {
|
|
820
|
+
readonly icon: "activity";
|
|
821
|
+
readonly heading: "Heading";
|
|
822
|
+
readonly description: "Description";
|
|
823
|
+
readonly button: {
|
|
824
|
+
readonly label: "Button";
|
|
825
|
+
readonly url: "";
|
|
826
|
+
readonly action: {
|
|
827
|
+
readonly type: "external";
|
|
828
|
+
readonly pageUrl: "";
|
|
829
|
+
readonly externalUrl: "#";
|
|
830
|
+
readonly openInNewTab: "false";
|
|
831
|
+
readonly email: "";
|
|
832
|
+
readonly subject: "";
|
|
833
|
+
readonly phone: "";
|
|
834
|
+
readonly sectionId: "";
|
|
835
|
+
readonly downloadUrl: "";
|
|
836
|
+
};
|
|
837
|
+
readonly variant: "default";
|
|
838
|
+
readonly size: "default";
|
|
839
|
+
readonly icon: "none";
|
|
840
|
+
};
|
|
841
|
+
};
|
|
842
|
+
};
|
|
843
|
+
export declare const field: {
|
|
844
|
+
type: string;
|
|
845
|
+
objectFields: {
|
|
846
|
+
label: {
|
|
847
|
+
type: string;
|
|
848
|
+
contentEditable: boolean;
|
|
849
|
+
};
|
|
850
|
+
name: {
|
|
851
|
+
type: string;
|
|
852
|
+
};
|
|
853
|
+
type: {
|
|
854
|
+
type: string;
|
|
855
|
+
options: {
|
|
856
|
+
label: "number" | "text" | "date" | "file" | "password";
|
|
857
|
+
value: "number" | "text" | "date" | "file" | "password";
|
|
858
|
+
}[];
|
|
859
|
+
};
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
export declare const fieldDefaults: CompoundFieldProps;
|
|
863
|
+
export declare const form: {
|
|
864
|
+
type: string;
|
|
865
|
+
objectFields: {
|
|
866
|
+
title: {
|
|
867
|
+
type: string;
|
|
868
|
+
contentEditable: boolean;
|
|
869
|
+
};
|
|
870
|
+
fields: {
|
|
871
|
+
type: string;
|
|
872
|
+
min: number;
|
|
873
|
+
max: number;
|
|
874
|
+
arrayFields: {
|
|
875
|
+
label: {
|
|
876
|
+
type: string;
|
|
877
|
+
contentEditable: boolean;
|
|
878
|
+
};
|
|
879
|
+
name: {
|
|
880
|
+
type: string;
|
|
881
|
+
};
|
|
882
|
+
type: {
|
|
883
|
+
type: string;
|
|
884
|
+
options: {
|
|
885
|
+
label: "number" | "text" | "date" | "file" | "password";
|
|
886
|
+
value: "number" | "text" | "date" | "file" | "password";
|
|
887
|
+
}[];
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
getItemSummary: (item: {
|
|
891
|
+
label?: string;
|
|
892
|
+
}, index?: number) => string;
|
|
893
|
+
defaultItemProps: CompoundFieldProps;
|
|
894
|
+
};
|
|
895
|
+
action: {
|
|
896
|
+
type: string;
|
|
897
|
+
label: string;
|
|
898
|
+
};
|
|
899
|
+
method: {
|
|
900
|
+
type: string;
|
|
901
|
+
label: string;
|
|
902
|
+
options: {
|
|
903
|
+
label: "delete" | "get" | "post" | "put" | "patch";
|
|
904
|
+
value: "delete" | "get" | "post" | "put" | "patch";
|
|
905
|
+
}[];
|
|
906
|
+
};
|
|
907
|
+
button: {
|
|
908
|
+
objectFields: {
|
|
909
|
+
label: {
|
|
910
|
+
readonly type: "text";
|
|
911
|
+
};
|
|
912
|
+
variant: {
|
|
913
|
+
readonly type: "select";
|
|
914
|
+
readonly options: readonly [{
|
|
915
|
+
readonly label: "primary";
|
|
916
|
+
readonly value: "default";
|
|
917
|
+
}, {
|
|
918
|
+
readonly label: "secondary";
|
|
919
|
+
readonly value: "secondary";
|
|
920
|
+
}, {
|
|
921
|
+
readonly label: "outline";
|
|
922
|
+
readonly value: "outline";
|
|
923
|
+
}, {
|
|
924
|
+
readonly label: "ghost";
|
|
925
|
+
readonly value: "ghost";
|
|
926
|
+
}, {
|
|
927
|
+
readonly label: "link";
|
|
928
|
+
readonly value: "link";
|
|
929
|
+
}, {
|
|
930
|
+
readonly label: "destructive";
|
|
931
|
+
readonly value: "destructive";
|
|
932
|
+
}];
|
|
933
|
+
};
|
|
934
|
+
size: {
|
|
935
|
+
readonly type: "select";
|
|
936
|
+
readonly options: readonly [{
|
|
937
|
+
readonly label: "default";
|
|
938
|
+
readonly value: "default";
|
|
939
|
+
}, {
|
|
940
|
+
readonly label: "sm";
|
|
941
|
+
readonly value: "sm";
|
|
942
|
+
}, {
|
|
943
|
+
readonly label: "lg";
|
|
944
|
+
readonly value: "lg";
|
|
945
|
+
}, {
|
|
946
|
+
readonly label: "icon";
|
|
947
|
+
readonly value: "icon";
|
|
948
|
+
}];
|
|
949
|
+
};
|
|
950
|
+
icon: {
|
|
951
|
+
readonly type: "select";
|
|
952
|
+
readonly options: readonly [{
|
|
953
|
+
readonly label: "none";
|
|
954
|
+
readonly value: "none";
|
|
955
|
+
}, ...{
|
|
956
|
+
label: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
957
|
+
value: "key" | "type" | "box" | "columns" | "container" | "contrast" | "filter" | "indent" | "scale-3d" | "scale" | "shrink" | "radius" | "text" | "blend" | "map" | "slice" | "code" | "link" | "menu" | "option" | "search" | "section" | "table" | "video" | "circle" | "image" | "view" | "replace" | "split" | "repeat" | "anchor" | "bold" | "send" | "grid" | "group" | "heading" | "list" | "navigation" | "presentation" | "radio" | "timer" | "copy" | "move" | "target" | "x" | "ghost" | "mouse" | "pen" | "keyboard" | "ratio" | "badge" | "download" | "calendar" | "scroll" | "dot" | "layout" | "square" | "cross" | "diamond" | "star" | "triangle" | "wheat" | "file" | "home" | "user" | "rows" | "command" | "baseline" | "space" | "crosshair" | "grab" | "pointer" | "zoom-in" | "zoom-out" | "italic" | "weight" | "underline" | "ellipsis" | "sheet" | "power" | "terminal" | "frame" | "focus" | "pause" | "play" | "sidebar" | "expand" | "vibrate" | "percent" | "delete" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-center" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-justify" | "align-left" | "align-right" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "baggage-claim" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binary" | "binoculars" | "biohazard" | "bird" | "bitcoin" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "contact" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "database" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-audio-2" | "file-audio" | "file-axis-3d" | "file-axis-3-d" | "file-badge-2" | "file-badge" | "file-box" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-2" | "file-check" | "file-clock" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-heart" | "file-image" | "file-input" | "file-json-2" | "file-json" | "file-key-2" | "file-key" | "file-lock-2" | "file-lock" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-2" | "file-search" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume-2" | "file-volume" | "file-warning" | "file-x-2" | "file-x" | "files" | "film" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "forward" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "gift" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "images" | "import" | "inbox" | "indent-decrease" | "outdent" | "indent-increase" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "keyboard-music" | "keyboard-off" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "letter-text" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "linkedin" | "list-check" | "list-checks" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "logs" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "printer-check" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "rail-symbol" | "rainbow" | "rat" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "replace-all" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "save" | "scale-3-d" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "screen-share-off" | "screen-share" | "scroll-text" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "settings" | "shapes" | "share-2" | "share" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "soup" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "edit" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "telescope" | "tent-tree" | "tent" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-cursor-input" | "text-cursor" | "text-quote" | "text-search" | "text-select" | "text-selection" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "umbrella-off" | "umbrella" | "undo-2" | "undo-dot" | "undo" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unlink" | "unplug" | "upload" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "users" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "wheat-off" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrap-text" | "wrench" | "youtube" | "zap-off" | "zap";
|
|
958
|
+
}[]];
|
|
959
|
+
};
|
|
960
|
+
};
|
|
961
|
+
type: "object";
|
|
962
|
+
};
|
|
963
|
+
};
|
|
964
|
+
};
|
|
965
|
+
export declare const formDefaults: CompoundFormProps;
|
|
966
|
+
export declare const sectionStyle: {
|
|
967
|
+
readonly type: "select";
|
|
968
|
+
readonly label: "Section Style";
|
|
969
|
+
readonly options: readonly [{
|
|
970
|
+
readonly label: "Default";
|
|
971
|
+
readonly value: "default";
|
|
972
|
+
}, {
|
|
973
|
+
readonly label: "Dark";
|
|
974
|
+
readonly value: "dark";
|
|
975
|
+
}, {
|
|
976
|
+
readonly label: "Muted";
|
|
977
|
+
readonly value: "muted";
|
|
978
|
+
}, {
|
|
979
|
+
readonly label: "Inverted";
|
|
980
|
+
readonly value: "inverted";
|
|
981
|
+
}, {
|
|
982
|
+
readonly label: "Custom";
|
|
983
|
+
readonly value: "custom";
|
|
984
|
+
}];
|
|
985
|
+
readonly ai: {
|
|
986
|
+
readonly instructions: "Match the section's background tone: use 'dark' for dark/black backgrounds, 'muted' for gray/subtle backgrounds, 'inverted' for full contrast reversal. Default for standard light backgrounds.";
|
|
987
|
+
};
|
|
988
|
+
};
|
|
989
|
+
export declare const sectionOverlay: {
|
|
990
|
+
readonly type: "select";
|
|
991
|
+
readonly label: "Overlay";
|
|
992
|
+
readonly options: readonly [{
|
|
993
|
+
readonly label: "None";
|
|
994
|
+
readonly value: "none";
|
|
995
|
+
}, {
|
|
996
|
+
readonly label: "Gradient Top";
|
|
997
|
+
readonly value: "gradient-top";
|
|
998
|
+
}, {
|
|
999
|
+
readonly label: "Gradient Bottom";
|
|
1000
|
+
readonly value: "gradient-bottom";
|
|
1001
|
+
}, {
|
|
1002
|
+
readonly label: "Noise";
|
|
1003
|
+
readonly value: "noise";
|
|
1004
|
+
}];
|
|
1005
|
+
readonly ai: {
|
|
1006
|
+
readonly instructions: "Use gradient overlays when the section has a background image that needs text contrast. Use noise for subtle texture.";
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
export declare const backgroundColor: {
|
|
1010
|
+
readonly type: "text";
|
|
1011
|
+
readonly label: "Background Color";
|
|
1012
|
+
readonly ai: {
|
|
1013
|
+
readonly instructions: "Set a custom background color in oklch format (e.g. 'oklch(0.2 0.05 260)'). Only use when sectionStyle is 'custom'.";
|
|
1014
|
+
};
|
|
1015
|
+
};
|
|
1016
|
+
export declare const backgroundImage: {
|
|
1017
|
+
readonly type: "text";
|
|
1018
|
+
readonly label: "Background Image URL";
|
|
1019
|
+
readonly ai: {
|
|
1020
|
+
readonly instructions: "URL for a full-width background image behind the section.";
|
|
1021
|
+
readonly stream: false;
|
|
1022
|
+
};
|
|
1023
|
+
};
|