zudoku 0.76.0 → 0.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/cli.js +104 -60
- package/dist/declarations/app/main.d.ts +38 -64
- package/dist/declarations/config/validators/HeaderNavigationSchema.d.ts +88 -152
- package/dist/declarations/config/validators/ZudokuConfig.d.ts +162 -79
- package/dist/declarations/config/validators/icon-types.d.ts +1 -1
- package/dist/declarations/lib/authentication/authentication.d.ts +1 -0
- package/dist/declarations/lib/authentication/hook.d.ts +1 -0
- package/dist/declarations/lib/authentication/providers/azureb2c.d.ts +5 -2
- package/dist/declarations/lib/authentication/providers/clerk.d.ts +15 -2
- package/dist/declarations/lib/authentication/providers/openid.d.ts +13 -2
- package/dist/declarations/lib/authentication/providers/util.d.ts +2 -0
- package/dist/declarations/lib/authentication/ui/ZudokuAuthUi.d.ts +3 -1
- package/dist/declarations/lib/components/Slot.d.ts +1 -1
- package/dist/declarations/lib/components/Typography.d.ts +1 -1
- package/dist/declarations/lib/components/navigation/Toc.d.ts +4 -0
- package/dist/declarations/lib/core/ZudokuContext.d.ts +3 -0
- package/dist/declarations/lib/plugins/markdown/index.d.ts +2 -1
- package/dist/declarations/lib/plugins/openapi/GeneratedExampleSidecarBox.d.ts +2 -1
- package/dist/declarations/lib/plugins/openapi/interfaces.d.ts +2 -0
- package/dist/declarations/lib/plugins/openapi/playground/Playground.d.ts +7 -3
- package/dist/declarations/lib/plugins/openapi/playground/buildRequestBody.d.ts +14 -0
- package/dist/declarations/lib/plugins/openapi/playground/constants.d.ts +2 -0
- package/dist/declarations/lib/plugins/openapi/playground/request-panel/UrlEncodedField.d.ts +8 -0
- package/dist/declarations/lib/plugins/openapi/schema/UnionView.d.ts +2 -1
- package/dist/declarations/lib/plugins/openapi/util/createHttpSnippet.d.ts +16 -4
- package/dist/declarations/lib/plugins/openapi/util/extractOperationSecuritySchemes.d.ts +2 -0
- package/dist/declarations/lib/plugins/openapi/util/formatRequestBody.d.ts +11 -0
- package/dist/declarations/lib/plugins/openapi/util/resolveAuthForSnippet.d.ts +17 -0
- package/dist/declarations/lib/plugins/openapi/util/useResolvedAuth.d.ts +9 -0
- package/dist/declarations/lib/util/url.d.ts +2 -1
- package/dist/flat-config.d.ts +59 -25
- package/docs/configuration/api-reference.md +4 -0
- package/docs/configuration/authentication-auth0.md +22 -0
- package/docs/configuration/authentication-azure-ad.md +18 -0
- package/docs/configuration/authentication-clerk.md +17 -0
- package/docs/configuration/authentication-firebase.md +7 -0
- package/docs/configuration/authentication-openid.md +27 -0
- package/docs/configuration/authentication-supabase.md +35 -0
- package/docs/configuration/docs.md +17 -1
- package/docs/configuration/overview.md +6 -0
- package/docs/extending/hooks.md +243 -0
- package/docs/guides/mcp-servers.md +1 -1
- package/docs/markdown/frontmatter.md +19 -0
- package/package.json +28 -28
- package/src/app/main.css +53 -0
- package/src/app/main.tsx +1 -0
- package/src/config/validators/ZudokuConfig.ts +55 -2
- package/src/config/validators/icon-types.ts +11 -19
- package/src/lib/authentication/authentication.ts +3 -0
- package/src/lib/authentication/components/SignUp.tsx +8 -1
- package/src/lib/authentication/hook.ts +1 -0
- package/src/lib/authentication/providers/auth0.tsx +7 -0
- package/src/lib/authentication/providers/azureb2c.tsx +17 -2
- package/src/lib/authentication/providers/clerk.tsx +46 -5
- package/src/lib/authentication/providers/firebase.tsx +19 -3
- package/src/lib/authentication/providers/openid.tsx +77 -2
- package/src/lib/authentication/providers/supabase.tsx +15 -8
- package/src/lib/authentication/providers/util.ts +14 -0
- package/src/lib/authentication/ui/ZudokuAuthUi.tsx +32 -3
- package/src/lib/components/Header.tsx +2 -1
- package/src/lib/components/Heading.tsx +1 -1
- package/src/lib/components/Main.tsx +5 -2
- package/src/lib/components/MobileTopNavigation.tsx +2 -5
- package/src/lib/components/Slot.tsx +2 -1
- package/src/lib/components/Typography.tsx +1 -1
- package/src/lib/components/navigation/Navigation.tsx +2 -1
- package/src/lib/components/navigation/Toc.tsx +21 -7
- package/src/lib/core/RouteGuard.tsx +16 -4
- package/src/lib/core/ZudokuContext.ts +3 -0
- package/src/lib/plugins/markdown/MdxPage.tsx +194 -68
- package/src/lib/plugins/markdown/index.tsx +7 -1
- package/src/lib/plugins/openapi/GeneratedExampleSidecarBox.tsx +3 -1
- package/src/lib/plugins/openapi/MCPEndpoint.tsx +26 -2
- package/src/lib/plugins/openapi/PlaygroundDialogWrapper.tsx +6 -13
- package/src/lib/plugins/openapi/Sidecar.tsx +167 -33
- package/src/lib/plugins/openapi/SidecarExamples.tsx +9 -27
- package/src/lib/plugins/openapi/interfaces.ts +2 -0
- package/src/lib/plugins/openapi/playground/BodyPanel.tsx +64 -3
- package/src/lib/plugins/openapi/playground/IdentitySelector.tsx +1 -1
- package/src/lib/plugins/openapi/playground/Playground.tsx +19 -20
- package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +13 -7
- package/src/lib/plugins/openapi/playground/buildRequestBody.ts +46 -0
- package/src/lib/plugins/openapi/playground/constants.ts +2 -0
- package/src/lib/plugins/openapi/playground/request-panel/UrlEncodedField.tsx +32 -0
- package/src/lib/plugins/openapi/schema/SchemaExampleAndDefault.tsx +2 -2
- package/src/lib/plugins/openapi/schema/SchemaView.tsx +21 -4
- package/src/lib/plugins/openapi/schema/UnionView.tsx +25 -17
- package/src/lib/plugins/openapi/util/createHttpSnippet.ts +173 -97
- package/src/lib/plugins/openapi/util/extractOperationSecuritySchemes.ts +17 -0
- package/src/lib/plugins/openapi/util/formatRequestBody.ts +84 -0
- package/src/lib/plugins/openapi/util/resolveAuthForSnippet.ts +111 -0
- package/src/lib/plugins/openapi/util/useResolvedAuth.ts +62 -0
- package/src/lib/shiki.ts +6 -3
- package/src/lib/ui/Item.tsx +1 -1
- package/src/lib/util/flattenAllOf.ts +13 -0
- package/src/lib/util/url.ts +22 -7
- package/src/vite/api/SchemaManager.ts +16 -2
|
@@ -215,6 +215,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
215
215
|
"bed-double": "bed-double";
|
|
216
216
|
"bed-single": "bed-single";
|
|
217
217
|
beef: "beef";
|
|
218
|
+
"beef-off": "beef-off";
|
|
218
219
|
beer: "beer";
|
|
219
220
|
"beer-off": "beer-off";
|
|
220
221
|
bell: "bell";
|
|
@@ -277,6 +278,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
277
278
|
bookmark: "bookmark";
|
|
278
279
|
"bookmark-check": "bookmark-check";
|
|
279
280
|
"bookmark-minus": "bookmark-minus";
|
|
281
|
+
"bookmark-off": "bookmark-off";
|
|
280
282
|
"bookmark-plus": "bookmark-plus";
|
|
281
283
|
"bookmark-x": "bookmark-x";
|
|
282
284
|
"boom-box": "boom-box";
|
|
@@ -362,6 +364,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
362
364
|
castle: "castle";
|
|
363
365
|
cat: "cat";
|
|
364
366
|
cctv: "cctv";
|
|
367
|
+
"cctv-off": "cctv-off";
|
|
365
368
|
"chart-area": "chart-area";
|
|
366
369
|
"chart-bar": "chart-bar";
|
|
367
370
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -423,8 +426,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
423
426
|
"chevrons-right-left": "chevrons-right-left";
|
|
424
427
|
"chevrons-up": "chevrons-up";
|
|
425
428
|
"chevrons-up-down": "chevrons-up-down";
|
|
426
|
-
chrome: "chrome";
|
|
427
|
-
chromium: "chromium";
|
|
428
429
|
church: "church";
|
|
429
430
|
cigarette: "cigarette";
|
|
430
431
|
"cigarette-off": "cigarette-off";
|
|
@@ -540,8 +541,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
540
541
|
"code-2": "code-2";
|
|
541
542
|
"code-square": "code-square";
|
|
542
543
|
"code-xml": "code-xml";
|
|
543
|
-
codepen: "codepen";
|
|
544
|
-
codesandbox: "codesandbox";
|
|
545
544
|
coffee: "coffee";
|
|
546
545
|
cog: "cog";
|
|
547
546
|
coins: "coins";
|
|
@@ -639,7 +638,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
639
638
|
"download-cloud": "download-cloud";
|
|
640
639
|
"drafting-compass": "drafting-compass";
|
|
641
640
|
drama: "drama";
|
|
642
|
-
dribbble: "dribbble";
|
|
643
641
|
drill: "drill";
|
|
644
642
|
drone: "drone";
|
|
645
643
|
droplet: "droplet";
|
|
@@ -675,14 +673,12 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
675
673
|
eye: "eye";
|
|
676
674
|
"eye-closed": "eye-closed";
|
|
677
675
|
"eye-off": "eye-off";
|
|
678
|
-
facebook: "facebook";
|
|
679
676
|
factory: "factory";
|
|
680
677
|
fan: "fan";
|
|
681
678
|
"fast-forward": "fast-forward";
|
|
682
679
|
feather: "feather";
|
|
683
680
|
fence: "fence";
|
|
684
681
|
"ferris-wheel": "ferris-wheel";
|
|
685
|
-
figma: "figma";
|
|
686
682
|
"file-archive": "file-archive";
|
|
687
683
|
"file-audio": "file-audio";
|
|
688
684
|
"file-audio-2": "file-audio-2";
|
|
@@ -837,7 +833,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
837
833
|
"form-input": "form-input";
|
|
838
834
|
forward: "forward";
|
|
839
835
|
frame: "frame";
|
|
840
|
-
framer: "framer";
|
|
841
836
|
frown: "frown";
|
|
842
837
|
fuel: "fuel";
|
|
843
838
|
fullscreen: "fullscreen";
|
|
@@ -880,8 +875,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
880
875
|
"git-pull-request-create": "git-pull-request-create";
|
|
881
876
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
882
877
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
883
|
-
github: "github";
|
|
884
|
-
gitlab: "gitlab";
|
|
885
878
|
"glass-water": "glass-water";
|
|
886
879
|
glasses: "glasses";
|
|
887
880
|
globe: "globe";
|
|
@@ -992,7 +985,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
992
985
|
infinity: "infinity";
|
|
993
986
|
inspect: "inspect";
|
|
994
987
|
"inspection-panel": "inspection-panel";
|
|
995
|
-
instagram: "instagram";
|
|
996
988
|
italic: "italic";
|
|
997
989
|
"iteration-ccw": "iteration-ccw";
|
|
998
990
|
"iteration-cw": "iteration-cw";
|
|
@@ -1051,9 +1043,9 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1051
1043
|
"line-chart": "line-chart";
|
|
1052
1044
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
1053
1045
|
"line-squiggle": "line-squiggle";
|
|
1046
|
+
"line-style": "line-style";
|
|
1054
1047
|
"link-2": "link-2";
|
|
1055
1048
|
"link-2-off": "link-2-off";
|
|
1056
|
-
linkedin: "linkedin";
|
|
1057
1049
|
list: "list";
|
|
1058
1050
|
"list-check": "list-check";
|
|
1059
1051
|
"list-checks": "list-checks";
|
|
@@ -1117,6 +1109,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1117
1109
|
"map-pin-pen": "map-pin-pen";
|
|
1118
1110
|
"map-pin-plus": "map-pin-plus";
|
|
1119
1111
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
1112
|
+
"map-pin-search": "map-pin-search";
|
|
1120
1113
|
"map-pin-x": "map-pin-x";
|
|
1121
1114
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
1122
1115
|
"map-pinned": "map-pinned";
|
|
@@ -1370,7 +1363,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1370
1363
|
plus: "plus";
|
|
1371
1364
|
"plus-circle": "plus-circle";
|
|
1372
1365
|
"plus-square": "plus-square";
|
|
1373
|
-
pocket: "pocket";
|
|
1374
1366
|
"pocket-knife": "pocket-knife";
|
|
1375
1367
|
podcast: "podcast";
|
|
1376
1368
|
pointer: "pointer";
|
|
@@ -1397,10 +1389,10 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1397
1389
|
radiation: "radiation";
|
|
1398
1390
|
radical: "radical";
|
|
1399
1391
|
radio: "radio";
|
|
1392
|
+
"radio-off": "radio-off";
|
|
1400
1393
|
"radio-receiver": "radio-receiver";
|
|
1401
1394
|
"radio-tower": "radio-tower";
|
|
1402
1395
|
radius: "radius";
|
|
1403
|
-
"rail-symbol": "rail-symbol";
|
|
1404
1396
|
rainbow: "rainbow";
|
|
1405
1397
|
rat: "rat";
|
|
1406
1398
|
ratio: "ratio";
|
|
@@ -1437,6 +1429,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1437
1429
|
"reply-all": "reply-all";
|
|
1438
1430
|
rewind: "rewind";
|
|
1439
1431
|
ribbon: "ribbon";
|
|
1432
|
+
road: "road";
|
|
1440
1433
|
rocket: "rocket";
|
|
1441
1434
|
"rocking-chair": "rocking-chair";
|
|
1442
1435
|
"roller-coaster": "roller-coaster";
|
|
@@ -1522,6 +1515,8 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1522
1515
|
"shield-ban": "shield-ban";
|
|
1523
1516
|
"shield-check": "shield-check";
|
|
1524
1517
|
"shield-close": "shield-close";
|
|
1518
|
+
"shield-cog": "shield-cog";
|
|
1519
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
1525
1520
|
"shield-ellipsis": "shield-ellipsis";
|
|
1526
1521
|
"shield-half": "shield-half";
|
|
1527
1522
|
"shield-minus": "shield-minus";
|
|
@@ -1561,7 +1556,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1561
1556
|
"skip-back": "skip-back";
|
|
1562
1557
|
"skip-forward": "skip-forward";
|
|
1563
1558
|
skull: "skull";
|
|
1564
|
-
slack: "slack";
|
|
1565
1559
|
slash: "slash";
|
|
1566
1560
|
"slash-square": "slash-square";
|
|
1567
1561
|
sliders: "sliders";
|
|
@@ -1593,6 +1587,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1593
1587
|
"split-square-horizontal": "split-square-horizontal";
|
|
1594
1588
|
"split-square-vertical": "split-square-vertical";
|
|
1595
1589
|
spool: "spool";
|
|
1590
|
+
"sport-shoe": "sport-shoe";
|
|
1596
1591
|
spotlight: "spotlight";
|
|
1597
1592
|
"spray-can": "spray-can";
|
|
1598
1593
|
sprout: "sprout";
|
|
@@ -1629,6 +1624,7 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1629
1624
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
1630
1625
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
1631
1626
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
1627
|
+
"square-dashed-text": "square-dashed-text";
|
|
1632
1628
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
1633
1629
|
"square-divide": "square-divide";
|
|
1634
1630
|
"square-dot": "square-dot";
|
|
@@ -1792,7 +1788,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1792
1788
|
"tree-palm": "tree-palm";
|
|
1793
1789
|
"tree-pine": "tree-pine";
|
|
1794
1790
|
trees: "trees";
|
|
1795
|
-
trello: "trello";
|
|
1796
1791
|
"trending-down": "trending-down";
|
|
1797
1792
|
"trending-up": "trending-up";
|
|
1798
1793
|
"trending-up-down": "trending-up-down";
|
|
@@ -1810,8 +1805,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1810
1805
|
"tv-2": "tv-2";
|
|
1811
1806
|
"tv-minimal": "tv-minimal";
|
|
1812
1807
|
"tv-minimal-play": "tv-minimal-play";
|
|
1813
|
-
twitch: "twitch";
|
|
1814
|
-
twitter: "twitter";
|
|
1815
1808
|
"type-outline": "type-outline";
|
|
1816
1809
|
umbrella: "umbrella";
|
|
1817
1810
|
"umbrella-off": "umbrella-off";
|
|
@@ -1935,7 +1928,6 @@ declare const HeaderNavLinkItemSchema: z.ZodObject<{
|
|
|
1935
1928
|
"x-line-top": "x-line-top";
|
|
1936
1929
|
"x-octagon": "x-octagon";
|
|
1937
1930
|
"x-square": "x-square";
|
|
1938
|
-
youtube: "youtube";
|
|
1939
1931
|
zap: "zap";
|
|
1940
1932
|
"zap-off": "zap-off";
|
|
1941
1933
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -2179,6 +2171,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2179
2171
|
"bed-double": "bed-double";
|
|
2180
2172
|
"bed-single": "bed-single";
|
|
2181
2173
|
beef: "beef";
|
|
2174
|
+
"beef-off": "beef-off";
|
|
2182
2175
|
beer: "beer";
|
|
2183
2176
|
"beer-off": "beer-off";
|
|
2184
2177
|
bell: "bell";
|
|
@@ -2241,6 +2234,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2241
2234
|
bookmark: "bookmark";
|
|
2242
2235
|
"bookmark-check": "bookmark-check";
|
|
2243
2236
|
"bookmark-minus": "bookmark-minus";
|
|
2237
|
+
"bookmark-off": "bookmark-off";
|
|
2244
2238
|
"bookmark-plus": "bookmark-plus";
|
|
2245
2239
|
"bookmark-x": "bookmark-x";
|
|
2246
2240
|
"boom-box": "boom-box";
|
|
@@ -2326,6 +2320,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2326
2320
|
castle: "castle";
|
|
2327
2321
|
cat: "cat";
|
|
2328
2322
|
cctv: "cctv";
|
|
2323
|
+
"cctv-off": "cctv-off";
|
|
2329
2324
|
"chart-area": "chart-area";
|
|
2330
2325
|
"chart-bar": "chart-bar";
|
|
2331
2326
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -2387,8 +2382,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2387
2382
|
"chevrons-right-left": "chevrons-right-left";
|
|
2388
2383
|
"chevrons-up": "chevrons-up";
|
|
2389
2384
|
"chevrons-up-down": "chevrons-up-down";
|
|
2390
|
-
chrome: "chrome";
|
|
2391
|
-
chromium: "chromium";
|
|
2392
2385
|
church: "church";
|
|
2393
2386
|
cigarette: "cigarette";
|
|
2394
2387
|
"cigarette-off": "cigarette-off";
|
|
@@ -2504,8 +2497,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2504
2497
|
"code-2": "code-2";
|
|
2505
2498
|
"code-square": "code-square";
|
|
2506
2499
|
"code-xml": "code-xml";
|
|
2507
|
-
codepen: "codepen";
|
|
2508
|
-
codesandbox: "codesandbox";
|
|
2509
2500
|
coffee: "coffee";
|
|
2510
2501
|
cog: "cog";
|
|
2511
2502
|
coins: "coins";
|
|
@@ -2603,7 +2594,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2603
2594
|
"download-cloud": "download-cloud";
|
|
2604
2595
|
"drafting-compass": "drafting-compass";
|
|
2605
2596
|
drama: "drama";
|
|
2606
|
-
dribbble: "dribbble";
|
|
2607
2597
|
drill: "drill";
|
|
2608
2598
|
drone: "drone";
|
|
2609
2599
|
droplet: "droplet";
|
|
@@ -2639,14 +2629,12 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2639
2629
|
eye: "eye";
|
|
2640
2630
|
"eye-closed": "eye-closed";
|
|
2641
2631
|
"eye-off": "eye-off";
|
|
2642
|
-
facebook: "facebook";
|
|
2643
2632
|
factory: "factory";
|
|
2644
2633
|
fan: "fan";
|
|
2645
2634
|
"fast-forward": "fast-forward";
|
|
2646
2635
|
feather: "feather";
|
|
2647
2636
|
fence: "fence";
|
|
2648
2637
|
"ferris-wheel": "ferris-wheel";
|
|
2649
|
-
figma: "figma";
|
|
2650
2638
|
"file-archive": "file-archive";
|
|
2651
2639
|
"file-audio": "file-audio";
|
|
2652
2640
|
"file-audio-2": "file-audio-2";
|
|
@@ -2801,7 +2789,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2801
2789
|
"form-input": "form-input";
|
|
2802
2790
|
forward: "forward";
|
|
2803
2791
|
frame: "frame";
|
|
2804
|
-
framer: "framer";
|
|
2805
2792
|
frown: "frown";
|
|
2806
2793
|
fuel: "fuel";
|
|
2807
2794
|
fullscreen: "fullscreen";
|
|
@@ -2844,8 +2831,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2844
2831
|
"git-pull-request-create": "git-pull-request-create";
|
|
2845
2832
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
2846
2833
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
2847
|
-
github: "github";
|
|
2848
|
-
gitlab: "gitlab";
|
|
2849
2834
|
"glass-water": "glass-water";
|
|
2850
2835
|
glasses: "glasses";
|
|
2851
2836
|
globe: "globe";
|
|
@@ -2956,7 +2941,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
2956
2941
|
infinity: "infinity";
|
|
2957
2942
|
inspect: "inspect";
|
|
2958
2943
|
"inspection-panel": "inspection-panel";
|
|
2959
|
-
instagram: "instagram";
|
|
2960
2944
|
italic: "italic";
|
|
2961
2945
|
"iteration-ccw": "iteration-ccw";
|
|
2962
2946
|
"iteration-cw": "iteration-cw";
|
|
@@ -3015,9 +2999,9 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3015
2999
|
"line-chart": "line-chart";
|
|
3016
3000
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
3017
3001
|
"line-squiggle": "line-squiggle";
|
|
3002
|
+
"line-style": "line-style";
|
|
3018
3003
|
"link-2": "link-2";
|
|
3019
3004
|
"link-2-off": "link-2-off";
|
|
3020
|
-
linkedin: "linkedin";
|
|
3021
3005
|
list: "list";
|
|
3022
3006
|
"list-check": "list-check";
|
|
3023
3007
|
"list-checks": "list-checks";
|
|
@@ -3081,6 +3065,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3081
3065
|
"map-pin-pen": "map-pin-pen";
|
|
3082
3066
|
"map-pin-plus": "map-pin-plus";
|
|
3083
3067
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
3068
|
+
"map-pin-search": "map-pin-search";
|
|
3084
3069
|
"map-pin-x": "map-pin-x";
|
|
3085
3070
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
3086
3071
|
"map-pinned": "map-pinned";
|
|
@@ -3334,7 +3319,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3334
3319
|
plus: "plus";
|
|
3335
3320
|
"plus-circle": "plus-circle";
|
|
3336
3321
|
"plus-square": "plus-square";
|
|
3337
|
-
pocket: "pocket";
|
|
3338
3322
|
"pocket-knife": "pocket-knife";
|
|
3339
3323
|
podcast: "podcast";
|
|
3340
3324
|
pointer: "pointer";
|
|
@@ -3361,10 +3345,10 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3361
3345
|
radiation: "radiation";
|
|
3362
3346
|
radical: "radical";
|
|
3363
3347
|
radio: "radio";
|
|
3348
|
+
"radio-off": "radio-off";
|
|
3364
3349
|
"radio-receiver": "radio-receiver";
|
|
3365
3350
|
"radio-tower": "radio-tower";
|
|
3366
3351
|
radius: "radius";
|
|
3367
|
-
"rail-symbol": "rail-symbol";
|
|
3368
3352
|
rainbow: "rainbow";
|
|
3369
3353
|
rat: "rat";
|
|
3370
3354
|
ratio: "ratio";
|
|
@@ -3401,6 +3385,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3401
3385
|
"reply-all": "reply-all";
|
|
3402
3386
|
rewind: "rewind";
|
|
3403
3387
|
ribbon: "ribbon";
|
|
3388
|
+
road: "road";
|
|
3404
3389
|
rocket: "rocket";
|
|
3405
3390
|
"rocking-chair": "rocking-chair";
|
|
3406
3391
|
"roller-coaster": "roller-coaster";
|
|
@@ -3486,6 +3471,8 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3486
3471
|
"shield-ban": "shield-ban";
|
|
3487
3472
|
"shield-check": "shield-check";
|
|
3488
3473
|
"shield-close": "shield-close";
|
|
3474
|
+
"shield-cog": "shield-cog";
|
|
3475
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
3489
3476
|
"shield-ellipsis": "shield-ellipsis";
|
|
3490
3477
|
"shield-half": "shield-half";
|
|
3491
3478
|
"shield-minus": "shield-minus";
|
|
@@ -3525,7 +3512,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3525
3512
|
"skip-back": "skip-back";
|
|
3526
3513
|
"skip-forward": "skip-forward";
|
|
3527
3514
|
skull: "skull";
|
|
3528
|
-
slack: "slack";
|
|
3529
3515
|
slash: "slash";
|
|
3530
3516
|
"slash-square": "slash-square";
|
|
3531
3517
|
sliders: "sliders";
|
|
@@ -3557,6 +3543,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3557
3543
|
"split-square-horizontal": "split-square-horizontal";
|
|
3558
3544
|
"split-square-vertical": "split-square-vertical";
|
|
3559
3545
|
spool: "spool";
|
|
3546
|
+
"sport-shoe": "sport-shoe";
|
|
3560
3547
|
spotlight: "spotlight";
|
|
3561
3548
|
"spray-can": "spray-can";
|
|
3562
3549
|
sprout: "sprout";
|
|
@@ -3593,6 +3580,7 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3593
3580
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
3594
3581
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
3595
3582
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
3583
|
+
"square-dashed-text": "square-dashed-text";
|
|
3596
3584
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
3597
3585
|
"square-divide": "square-divide";
|
|
3598
3586
|
"square-dot": "square-dot";
|
|
@@ -3756,7 +3744,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3756
3744
|
"tree-palm": "tree-palm";
|
|
3757
3745
|
"tree-pine": "tree-pine";
|
|
3758
3746
|
trees: "trees";
|
|
3759
|
-
trello: "trello";
|
|
3760
3747
|
"trending-down": "trending-down";
|
|
3761
3748
|
"trending-up": "trending-up";
|
|
3762
3749
|
"trending-up-down": "trending-up-down";
|
|
@@ -3774,8 +3761,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3774
3761
|
"tv-2": "tv-2";
|
|
3775
3762
|
"tv-minimal": "tv-minimal";
|
|
3776
3763
|
"tv-minimal-play": "tv-minimal-play";
|
|
3777
|
-
twitch: "twitch";
|
|
3778
|
-
twitter: "twitter";
|
|
3779
3764
|
"type-outline": "type-outline";
|
|
3780
3765
|
umbrella: "umbrella";
|
|
3781
3766
|
"umbrella-off": "umbrella-off";
|
|
@@ -3899,7 +3884,6 @@ declare const HeaderNavGroupSchema: z.ZodObject<{
|
|
|
3899
3884
|
"x-line-top": "x-line-top";
|
|
3900
3885
|
"x-octagon": "x-octagon";
|
|
3901
3886
|
"x-square": "x-square";
|
|
3902
|
-
youtube: "youtube";
|
|
3903
3887
|
zap: "zap";
|
|
3904
3888
|
"zap-off": "zap-off";
|
|
3905
3889
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -4142,6 +4126,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4142
4126
|
"bed-double": "bed-double";
|
|
4143
4127
|
"bed-single": "bed-single";
|
|
4144
4128
|
beef: "beef";
|
|
4129
|
+
"beef-off": "beef-off";
|
|
4145
4130
|
beer: "beer";
|
|
4146
4131
|
"beer-off": "beer-off";
|
|
4147
4132
|
bell: "bell";
|
|
@@ -4204,6 +4189,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4204
4189
|
bookmark: "bookmark";
|
|
4205
4190
|
"bookmark-check": "bookmark-check";
|
|
4206
4191
|
"bookmark-minus": "bookmark-minus";
|
|
4192
|
+
"bookmark-off": "bookmark-off";
|
|
4207
4193
|
"bookmark-plus": "bookmark-plus";
|
|
4208
4194
|
"bookmark-x": "bookmark-x";
|
|
4209
4195
|
"boom-box": "boom-box";
|
|
@@ -4289,6 +4275,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4289
4275
|
castle: "castle";
|
|
4290
4276
|
cat: "cat";
|
|
4291
4277
|
cctv: "cctv";
|
|
4278
|
+
"cctv-off": "cctv-off";
|
|
4292
4279
|
"chart-area": "chart-area";
|
|
4293
4280
|
"chart-bar": "chart-bar";
|
|
4294
4281
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -4350,8 +4337,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4350
4337
|
"chevrons-right-left": "chevrons-right-left";
|
|
4351
4338
|
"chevrons-up": "chevrons-up";
|
|
4352
4339
|
"chevrons-up-down": "chevrons-up-down";
|
|
4353
|
-
chrome: "chrome";
|
|
4354
|
-
chromium: "chromium";
|
|
4355
4340
|
church: "church";
|
|
4356
4341
|
cigarette: "cigarette";
|
|
4357
4342
|
"cigarette-off": "cigarette-off";
|
|
@@ -4467,8 +4452,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4467
4452
|
"code-2": "code-2";
|
|
4468
4453
|
"code-square": "code-square";
|
|
4469
4454
|
"code-xml": "code-xml";
|
|
4470
|
-
codepen: "codepen";
|
|
4471
|
-
codesandbox: "codesandbox";
|
|
4472
4455
|
coffee: "coffee";
|
|
4473
4456
|
cog: "cog";
|
|
4474
4457
|
coins: "coins";
|
|
@@ -4566,7 +4549,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4566
4549
|
"download-cloud": "download-cloud";
|
|
4567
4550
|
"drafting-compass": "drafting-compass";
|
|
4568
4551
|
drama: "drama";
|
|
4569
|
-
dribbble: "dribbble";
|
|
4570
4552
|
drill: "drill";
|
|
4571
4553
|
drone: "drone";
|
|
4572
4554
|
droplet: "droplet";
|
|
@@ -4602,14 +4584,12 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4602
4584
|
eye: "eye";
|
|
4603
4585
|
"eye-closed": "eye-closed";
|
|
4604
4586
|
"eye-off": "eye-off";
|
|
4605
|
-
facebook: "facebook";
|
|
4606
4587
|
factory: "factory";
|
|
4607
4588
|
fan: "fan";
|
|
4608
4589
|
"fast-forward": "fast-forward";
|
|
4609
4590
|
feather: "feather";
|
|
4610
4591
|
fence: "fence";
|
|
4611
4592
|
"ferris-wheel": "ferris-wheel";
|
|
4612
|
-
figma: "figma";
|
|
4613
4593
|
"file-archive": "file-archive";
|
|
4614
4594
|
"file-audio": "file-audio";
|
|
4615
4595
|
"file-audio-2": "file-audio-2";
|
|
@@ -4764,7 +4744,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4764
4744
|
"form-input": "form-input";
|
|
4765
4745
|
forward: "forward";
|
|
4766
4746
|
frame: "frame";
|
|
4767
|
-
framer: "framer";
|
|
4768
4747
|
frown: "frown";
|
|
4769
4748
|
fuel: "fuel";
|
|
4770
4749
|
fullscreen: "fullscreen";
|
|
@@ -4807,8 +4786,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4807
4786
|
"git-pull-request-create": "git-pull-request-create";
|
|
4808
4787
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
4809
4788
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
4810
|
-
github: "github";
|
|
4811
|
-
gitlab: "gitlab";
|
|
4812
4789
|
"glass-water": "glass-water";
|
|
4813
4790
|
glasses: "glasses";
|
|
4814
4791
|
globe: "globe";
|
|
@@ -4919,7 +4896,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4919
4896
|
infinity: "infinity";
|
|
4920
4897
|
inspect: "inspect";
|
|
4921
4898
|
"inspection-panel": "inspection-panel";
|
|
4922
|
-
instagram: "instagram";
|
|
4923
4899
|
italic: "italic";
|
|
4924
4900
|
"iteration-ccw": "iteration-ccw";
|
|
4925
4901
|
"iteration-cw": "iteration-cw";
|
|
@@ -4978,9 +4954,9 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
4978
4954
|
"line-chart": "line-chart";
|
|
4979
4955
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
4980
4956
|
"line-squiggle": "line-squiggle";
|
|
4957
|
+
"line-style": "line-style";
|
|
4981
4958
|
"link-2": "link-2";
|
|
4982
4959
|
"link-2-off": "link-2-off";
|
|
4983
|
-
linkedin: "linkedin";
|
|
4984
4960
|
list: "list";
|
|
4985
4961
|
"list-check": "list-check";
|
|
4986
4962
|
"list-checks": "list-checks";
|
|
@@ -5044,6 +5020,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5044
5020
|
"map-pin-pen": "map-pin-pen";
|
|
5045
5021
|
"map-pin-plus": "map-pin-plus";
|
|
5046
5022
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
5023
|
+
"map-pin-search": "map-pin-search";
|
|
5047
5024
|
"map-pin-x": "map-pin-x";
|
|
5048
5025
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
5049
5026
|
"map-pinned": "map-pinned";
|
|
@@ -5297,7 +5274,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5297
5274
|
plus: "plus";
|
|
5298
5275
|
"plus-circle": "plus-circle";
|
|
5299
5276
|
"plus-square": "plus-square";
|
|
5300
|
-
pocket: "pocket";
|
|
5301
5277
|
"pocket-knife": "pocket-knife";
|
|
5302
5278
|
podcast: "podcast";
|
|
5303
5279
|
pointer: "pointer";
|
|
@@ -5324,10 +5300,10 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5324
5300
|
radiation: "radiation";
|
|
5325
5301
|
radical: "radical";
|
|
5326
5302
|
radio: "radio";
|
|
5303
|
+
"radio-off": "radio-off";
|
|
5327
5304
|
"radio-receiver": "radio-receiver";
|
|
5328
5305
|
"radio-tower": "radio-tower";
|
|
5329
5306
|
radius: "radius";
|
|
5330
|
-
"rail-symbol": "rail-symbol";
|
|
5331
5307
|
rainbow: "rainbow";
|
|
5332
5308
|
rat: "rat";
|
|
5333
5309
|
ratio: "ratio";
|
|
@@ -5364,6 +5340,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5364
5340
|
"reply-all": "reply-all";
|
|
5365
5341
|
rewind: "rewind";
|
|
5366
5342
|
ribbon: "ribbon";
|
|
5343
|
+
road: "road";
|
|
5367
5344
|
rocket: "rocket";
|
|
5368
5345
|
"rocking-chair": "rocking-chair";
|
|
5369
5346
|
"roller-coaster": "roller-coaster";
|
|
@@ -5449,6 +5426,8 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5449
5426
|
"shield-ban": "shield-ban";
|
|
5450
5427
|
"shield-check": "shield-check";
|
|
5451
5428
|
"shield-close": "shield-close";
|
|
5429
|
+
"shield-cog": "shield-cog";
|
|
5430
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
5452
5431
|
"shield-ellipsis": "shield-ellipsis";
|
|
5453
5432
|
"shield-half": "shield-half";
|
|
5454
5433
|
"shield-minus": "shield-minus";
|
|
@@ -5488,7 +5467,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5488
5467
|
"skip-back": "skip-back";
|
|
5489
5468
|
"skip-forward": "skip-forward";
|
|
5490
5469
|
skull: "skull";
|
|
5491
|
-
slack: "slack";
|
|
5492
5470
|
slash: "slash";
|
|
5493
5471
|
"slash-square": "slash-square";
|
|
5494
5472
|
sliders: "sliders";
|
|
@@ -5520,6 +5498,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5520
5498
|
"split-square-horizontal": "split-square-horizontal";
|
|
5521
5499
|
"split-square-vertical": "split-square-vertical";
|
|
5522
5500
|
spool: "spool";
|
|
5501
|
+
"sport-shoe": "sport-shoe";
|
|
5523
5502
|
spotlight: "spotlight";
|
|
5524
5503
|
"spray-can": "spray-can";
|
|
5525
5504
|
sprout: "sprout";
|
|
@@ -5556,6 +5535,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5556
5535
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
5557
5536
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
5558
5537
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
5538
|
+
"square-dashed-text": "square-dashed-text";
|
|
5559
5539
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
5560
5540
|
"square-divide": "square-divide";
|
|
5561
5541
|
"square-dot": "square-dot";
|
|
@@ -5719,7 +5699,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5719
5699
|
"tree-palm": "tree-palm";
|
|
5720
5700
|
"tree-pine": "tree-pine";
|
|
5721
5701
|
trees: "trees";
|
|
5722
|
-
trello: "trello";
|
|
5723
5702
|
"trending-down": "trending-down";
|
|
5724
5703
|
"trending-up": "trending-up";
|
|
5725
5704
|
"trending-up-down": "trending-up-down";
|
|
@@ -5737,8 +5716,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5737
5716
|
"tv-2": "tv-2";
|
|
5738
5717
|
"tv-minimal": "tv-minimal";
|
|
5739
5718
|
"tv-minimal-play": "tv-minimal-play";
|
|
5740
|
-
twitch: "twitch";
|
|
5741
|
-
twitter: "twitter";
|
|
5742
5719
|
"type-outline": "type-outline";
|
|
5743
5720
|
umbrella: "umbrella";
|
|
5744
5721
|
"umbrella-off": "umbrella-off";
|
|
@@ -5862,7 +5839,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
5862
5839
|
"x-line-top": "x-line-top";
|
|
5863
5840
|
"x-octagon": "x-octagon";
|
|
5864
5841
|
"x-square": "x-square";
|
|
5865
|
-
youtube: "youtube";
|
|
5866
5842
|
zap: "zap";
|
|
5867
5843
|
"zap-off": "zap-off";
|
|
5868
5844
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -6104,6 +6080,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6104
6080
|
"bed-double": "bed-double";
|
|
6105
6081
|
"bed-single": "bed-single";
|
|
6106
6082
|
beef: "beef";
|
|
6083
|
+
"beef-off": "beef-off";
|
|
6107
6084
|
beer: "beer";
|
|
6108
6085
|
"beer-off": "beer-off";
|
|
6109
6086
|
bell: "bell";
|
|
@@ -6166,6 +6143,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6166
6143
|
bookmark: "bookmark";
|
|
6167
6144
|
"bookmark-check": "bookmark-check";
|
|
6168
6145
|
"bookmark-minus": "bookmark-minus";
|
|
6146
|
+
"bookmark-off": "bookmark-off";
|
|
6169
6147
|
"bookmark-plus": "bookmark-plus";
|
|
6170
6148
|
"bookmark-x": "bookmark-x";
|
|
6171
6149
|
"boom-box": "boom-box";
|
|
@@ -6251,6 +6229,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6251
6229
|
castle: "castle";
|
|
6252
6230
|
cat: "cat";
|
|
6253
6231
|
cctv: "cctv";
|
|
6232
|
+
"cctv-off": "cctv-off";
|
|
6254
6233
|
"chart-area": "chart-area";
|
|
6255
6234
|
"chart-bar": "chart-bar";
|
|
6256
6235
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -6312,8 +6291,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6312
6291
|
"chevrons-right-left": "chevrons-right-left";
|
|
6313
6292
|
"chevrons-up": "chevrons-up";
|
|
6314
6293
|
"chevrons-up-down": "chevrons-up-down";
|
|
6315
|
-
chrome: "chrome";
|
|
6316
|
-
chromium: "chromium";
|
|
6317
6294
|
church: "church";
|
|
6318
6295
|
cigarette: "cigarette";
|
|
6319
6296
|
"cigarette-off": "cigarette-off";
|
|
@@ -6429,8 +6406,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6429
6406
|
"code-2": "code-2";
|
|
6430
6407
|
"code-square": "code-square";
|
|
6431
6408
|
"code-xml": "code-xml";
|
|
6432
|
-
codepen: "codepen";
|
|
6433
|
-
codesandbox: "codesandbox";
|
|
6434
6409
|
coffee: "coffee";
|
|
6435
6410
|
cog: "cog";
|
|
6436
6411
|
coins: "coins";
|
|
@@ -6528,7 +6503,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6528
6503
|
"download-cloud": "download-cloud";
|
|
6529
6504
|
"drafting-compass": "drafting-compass";
|
|
6530
6505
|
drama: "drama";
|
|
6531
|
-
dribbble: "dribbble";
|
|
6532
6506
|
drill: "drill";
|
|
6533
6507
|
drone: "drone";
|
|
6534
6508
|
droplet: "droplet";
|
|
@@ -6564,14 +6538,12 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6564
6538
|
eye: "eye";
|
|
6565
6539
|
"eye-closed": "eye-closed";
|
|
6566
6540
|
"eye-off": "eye-off";
|
|
6567
|
-
facebook: "facebook";
|
|
6568
6541
|
factory: "factory";
|
|
6569
6542
|
fan: "fan";
|
|
6570
6543
|
"fast-forward": "fast-forward";
|
|
6571
6544
|
feather: "feather";
|
|
6572
6545
|
fence: "fence";
|
|
6573
6546
|
"ferris-wheel": "ferris-wheel";
|
|
6574
|
-
figma: "figma";
|
|
6575
6547
|
"file-archive": "file-archive";
|
|
6576
6548
|
"file-audio": "file-audio";
|
|
6577
6549
|
"file-audio-2": "file-audio-2";
|
|
@@ -6726,7 +6698,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6726
6698
|
"form-input": "form-input";
|
|
6727
6699
|
forward: "forward";
|
|
6728
6700
|
frame: "frame";
|
|
6729
|
-
framer: "framer";
|
|
6730
6701
|
frown: "frown";
|
|
6731
6702
|
fuel: "fuel";
|
|
6732
6703
|
fullscreen: "fullscreen";
|
|
@@ -6769,8 +6740,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6769
6740
|
"git-pull-request-create": "git-pull-request-create";
|
|
6770
6741
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
6771
6742
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
6772
|
-
github: "github";
|
|
6773
|
-
gitlab: "gitlab";
|
|
6774
6743
|
"glass-water": "glass-water";
|
|
6775
6744
|
glasses: "glasses";
|
|
6776
6745
|
globe: "globe";
|
|
@@ -6881,7 +6850,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6881
6850
|
infinity: "infinity";
|
|
6882
6851
|
inspect: "inspect";
|
|
6883
6852
|
"inspection-panel": "inspection-panel";
|
|
6884
|
-
instagram: "instagram";
|
|
6885
6853
|
italic: "italic";
|
|
6886
6854
|
"iteration-ccw": "iteration-ccw";
|
|
6887
6855
|
"iteration-cw": "iteration-cw";
|
|
@@ -6940,9 +6908,9 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
6940
6908
|
"line-chart": "line-chart";
|
|
6941
6909
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
6942
6910
|
"line-squiggle": "line-squiggle";
|
|
6911
|
+
"line-style": "line-style";
|
|
6943
6912
|
"link-2": "link-2";
|
|
6944
6913
|
"link-2-off": "link-2-off";
|
|
6945
|
-
linkedin: "linkedin";
|
|
6946
6914
|
list: "list";
|
|
6947
6915
|
"list-check": "list-check";
|
|
6948
6916
|
"list-checks": "list-checks";
|
|
@@ -7006,6 +6974,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7006
6974
|
"map-pin-pen": "map-pin-pen";
|
|
7007
6975
|
"map-pin-plus": "map-pin-plus";
|
|
7008
6976
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
6977
|
+
"map-pin-search": "map-pin-search";
|
|
7009
6978
|
"map-pin-x": "map-pin-x";
|
|
7010
6979
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
7011
6980
|
"map-pinned": "map-pinned";
|
|
@@ -7259,7 +7228,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7259
7228
|
plus: "plus";
|
|
7260
7229
|
"plus-circle": "plus-circle";
|
|
7261
7230
|
"plus-square": "plus-square";
|
|
7262
|
-
pocket: "pocket";
|
|
7263
7231
|
"pocket-knife": "pocket-knife";
|
|
7264
7232
|
podcast: "podcast";
|
|
7265
7233
|
pointer: "pointer";
|
|
@@ -7286,10 +7254,10 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7286
7254
|
radiation: "radiation";
|
|
7287
7255
|
radical: "radical";
|
|
7288
7256
|
radio: "radio";
|
|
7257
|
+
"radio-off": "radio-off";
|
|
7289
7258
|
"radio-receiver": "radio-receiver";
|
|
7290
7259
|
"radio-tower": "radio-tower";
|
|
7291
7260
|
radius: "radius";
|
|
7292
|
-
"rail-symbol": "rail-symbol";
|
|
7293
7261
|
rainbow: "rainbow";
|
|
7294
7262
|
rat: "rat";
|
|
7295
7263
|
ratio: "ratio";
|
|
@@ -7326,6 +7294,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7326
7294
|
"reply-all": "reply-all";
|
|
7327
7295
|
rewind: "rewind";
|
|
7328
7296
|
ribbon: "ribbon";
|
|
7297
|
+
road: "road";
|
|
7329
7298
|
rocket: "rocket";
|
|
7330
7299
|
"rocking-chair": "rocking-chair";
|
|
7331
7300
|
"roller-coaster": "roller-coaster";
|
|
@@ -7411,6 +7380,8 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7411
7380
|
"shield-ban": "shield-ban";
|
|
7412
7381
|
"shield-check": "shield-check";
|
|
7413
7382
|
"shield-close": "shield-close";
|
|
7383
|
+
"shield-cog": "shield-cog";
|
|
7384
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
7414
7385
|
"shield-ellipsis": "shield-ellipsis";
|
|
7415
7386
|
"shield-half": "shield-half";
|
|
7416
7387
|
"shield-minus": "shield-minus";
|
|
@@ -7450,7 +7421,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7450
7421
|
"skip-back": "skip-back";
|
|
7451
7422
|
"skip-forward": "skip-forward";
|
|
7452
7423
|
skull: "skull";
|
|
7453
|
-
slack: "slack";
|
|
7454
7424
|
slash: "slash";
|
|
7455
7425
|
"slash-square": "slash-square";
|
|
7456
7426
|
sliders: "sliders";
|
|
@@ -7482,6 +7452,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7482
7452
|
"split-square-horizontal": "split-square-horizontal";
|
|
7483
7453
|
"split-square-vertical": "split-square-vertical";
|
|
7484
7454
|
spool: "spool";
|
|
7455
|
+
"sport-shoe": "sport-shoe";
|
|
7485
7456
|
spotlight: "spotlight";
|
|
7486
7457
|
"spray-can": "spray-can";
|
|
7487
7458
|
sprout: "sprout";
|
|
@@ -7518,6 +7489,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7518
7489
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
7519
7490
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
7520
7491
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
7492
|
+
"square-dashed-text": "square-dashed-text";
|
|
7521
7493
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
7522
7494
|
"square-divide": "square-divide";
|
|
7523
7495
|
"square-dot": "square-dot";
|
|
@@ -7681,7 +7653,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7681
7653
|
"tree-palm": "tree-palm";
|
|
7682
7654
|
"tree-pine": "tree-pine";
|
|
7683
7655
|
trees: "trees";
|
|
7684
|
-
trello: "trello";
|
|
7685
7656
|
"trending-down": "trending-down";
|
|
7686
7657
|
"trending-up": "trending-up";
|
|
7687
7658
|
"trending-up-down": "trending-up-down";
|
|
@@ -7699,8 +7670,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7699
7670
|
"tv-2": "tv-2";
|
|
7700
7671
|
"tv-minimal": "tv-minimal";
|
|
7701
7672
|
"tv-minimal-play": "tv-minimal-play";
|
|
7702
|
-
twitch: "twitch";
|
|
7703
|
-
twitter: "twitter";
|
|
7704
7673
|
"type-outline": "type-outline";
|
|
7705
7674
|
umbrella: "umbrella";
|
|
7706
7675
|
"umbrella-off": "umbrella-off";
|
|
@@ -7824,7 +7793,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
7824
7793
|
"x-line-top": "x-line-top";
|
|
7825
7794
|
"x-octagon": "x-octagon";
|
|
7826
7795
|
"x-square": "x-square";
|
|
7827
|
-
youtube: "youtube";
|
|
7828
7796
|
zap: "zap";
|
|
7829
7797
|
"zap-off": "zap-off";
|
|
7830
7798
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -8067,6 +8035,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8067
8035
|
"bed-double": "bed-double";
|
|
8068
8036
|
"bed-single": "bed-single";
|
|
8069
8037
|
beef: "beef";
|
|
8038
|
+
"beef-off": "beef-off";
|
|
8070
8039
|
beer: "beer";
|
|
8071
8040
|
"beer-off": "beer-off";
|
|
8072
8041
|
bell: "bell";
|
|
@@ -8129,6 +8098,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8129
8098
|
bookmark: "bookmark";
|
|
8130
8099
|
"bookmark-check": "bookmark-check";
|
|
8131
8100
|
"bookmark-minus": "bookmark-minus";
|
|
8101
|
+
"bookmark-off": "bookmark-off";
|
|
8132
8102
|
"bookmark-plus": "bookmark-plus";
|
|
8133
8103
|
"bookmark-x": "bookmark-x";
|
|
8134
8104
|
"boom-box": "boom-box";
|
|
@@ -8214,6 +8184,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8214
8184
|
castle: "castle";
|
|
8215
8185
|
cat: "cat";
|
|
8216
8186
|
cctv: "cctv";
|
|
8187
|
+
"cctv-off": "cctv-off";
|
|
8217
8188
|
"chart-area": "chart-area";
|
|
8218
8189
|
"chart-bar": "chart-bar";
|
|
8219
8190
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -8275,8 +8246,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8275
8246
|
"chevrons-right-left": "chevrons-right-left";
|
|
8276
8247
|
"chevrons-up": "chevrons-up";
|
|
8277
8248
|
"chevrons-up-down": "chevrons-up-down";
|
|
8278
|
-
chrome: "chrome";
|
|
8279
|
-
chromium: "chromium";
|
|
8280
8249
|
church: "church";
|
|
8281
8250
|
cigarette: "cigarette";
|
|
8282
8251
|
"cigarette-off": "cigarette-off";
|
|
@@ -8392,8 +8361,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8392
8361
|
"code-2": "code-2";
|
|
8393
8362
|
"code-square": "code-square";
|
|
8394
8363
|
"code-xml": "code-xml";
|
|
8395
|
-
codepen: "codepen";
|
|
8396
|
-
codesandbox: "codesandbox";
|
|
8397
8364
|
coffee: "coffee";
|
|
8398
8365
|
cog: "cog";
|
|
8399
8366
|
coins: "coins";
|
|
@@ -8491,7 +8458,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8491
8458
|
"download-cloud": "download-cloud";
|
|
8492
8459
|
"drafting-compass": "drafting-compass";
|
|
8493
8460
|
drama: "drama";
|
|
8494
|
-
dribbble: "dribbble";
|
|
8495
8461
|
drill: "drill";
|
|
8496
8462
|
drone: "drone";
|
|
8497
8463
|
droplet: "droplet";
|
|
@@ -8527,14 +8493,12 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8527
8493
|
eye: "eye";
|
|
8528
8494
|
"eye-closed": "eye-closed";
|
|
8529
8495
|
"eye-off": "eye-off";
|
|
8530
|
-
facebook: "facebook";
|
|
8531
8496
|
factory: "factory";
|
|
8532
8497
|
fan: "fan";
|
|
8533
8498
|
"fast-forward": "fast-forward";
|
|
8534
8499
|
feather: "feather";
|
|
8535
8500
|
fence: "fence";
|
|
8536
8501
|
"ferris-wheel": "ferris-wheel";
|
|
8537
|
-
figma: "figma";
|
|
8538
8502
|
"file-archive": "file-archive";
|
|
8539
8503
|
"file-audio": "file-audio";
|
|
8540
8504
|
"file-audio-2": "file-audio-2";
|
|
@@ -8689,7 +8653,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8689
8653
|
"form-input": "form-input";
|
|
8690
8654
|
forward: "forward";
|
|
8691
8655
|
frame: "frame";
|
|
8692
|
-
framer: "framer";
|
|
8693
8656
|
frown: "frown";
|
|
8694
8657
|
fuel: "fuel";
|
|
8695
8658
|
fullscreen: "fullscreen";
|
|
@@ -8732,8 +8695,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8732
8695
|
"git-pull-request-create": "git-pull-request-create";
|
|
8733
8696
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
8734
8697
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
8735
|
-
github: "github";
|
|
8736
|
-
gitlab: "gitlab";
|
|
8737
8698
|
"glass-water": "glass-water";
|
|
8738
8699
|
glasses: "glasses";
|
|
8739
8700
|
globe: "globe";
|
|
@@ -8844,7 +8805,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8844
8805
|
infinity: "infinity";
|
|
8845
8806
|
inspect: "inspect";
|
|
8846
8807
|
"inspection-panel": "inspection-panel";
|
|
8847
|
-
instagram: "instagram";
|
|
8848
8808
|
italic: "italic";
|
|
8849
8809
|
"iteration-ccw": "iteration-ccw";
|
|
8850
8810
|
"iteration-cw": "iteration-cw";
|
|
@@ -8903,9 +8863,9 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8903
8863
|
"line-chart": "line-chart";
|
|
8904
8864
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
8905
8865
|
"line-squiggle": "line-squiggle";
|
|
8866
|
+
"line-style": "line-style";
|
|
8906
8867
|
"link-2": "link-2";
|
|
8907
8868
|
"link-2-off": "link-2-off";
|
|
8908
|
-
linkedin: "linkedin";
|
|
8909
8869
|
list: "list";
|
|
8910
8870
|
"list-check": "list-check";
|
|
8911
8871
|
"list-checks": "list-checks";
|
|
@@ -8969,6 +8929,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
8969
8929
|
"map-pin-pen": "map-pin-pen";
|
|
8970
8930
|
"map-pin-plus": "map-pin-plus";
|
|
8971
8931
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
8932
|
+
"map-pin-search": "map-pin-search";
|
|
8972
8933
|
"map-pin-x": "map-pin-x";
|
|
8973
8934
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
8974
8935
|
"map-pinned": "map-pinned";
|
|
@@ -9222,7 +9183,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9222
9183
|
plus: "plus";
|
|
9223
9184
|
"plus-circle": "plus-circle";
|
|
9224
9185
|
"plus-square": "plus-square";
|
|
9225
|
-
pocket: "pocket";
|
|
9226
9186
|
"pocket-knife": "pocket-knife";
|
|
9227
9187
|
podcast: "podcast";
|
|
9228
9188
|
pointer: "pointer";
|
|
@@ -9249,10 +9209,10 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9249
9209
|
radiation: "radiation";
|
|
9250
9210
|
radical: "radical";
|
|
9251
9211
|
radio: "radio";
|
|
9212
|
+
"radio-off": "radio-off";
|
|
9252
9213
|
"radio-receiver": "radio-receiver";
|
|
9253
9214
|
"radio-tower": "radio-tower";
|
|
9254
9215
|
radius: "radius";
|
|
9255
|
-
"rail-symbol": "rail-symbol";
|
|
9256
9216
|
rainbow: "rainbow";
|
|
9257
9217
|
rat: "rat";
|
|
9258
9218
|
ratio: "ratio";
|
|
@@ -9289,6 +9249,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9289
9249
|
"reply-all": "reply-all";
|
|
9290
9250
|
rewind: "rewind";
|
|
9291
9251
|
ribbon: "ribbon";
|
|
9252
|
+
road: "road";
|
|
9292
9253
|
rocket: "rocket";
|
|
9293
9254
|
"rocking-chair": "rocking-chair";
|
|
9294
9255
|
"roller-coaster": "roller-coaster";
|
|
@@ -9374,6 +9335,8 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9374
9335
|
"shield-ban": "shield-ban";
|
|
9375
9336
|
"shield-check": "shield-check";
|
|
9376
9337
|
"shield-close": "shield-close";
|
|
9338
|
+
"shield-cog": "shield-cog";
|
|
9339
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
9377
9340
|
"shield-ellipsis": "shield-ellipsis";
|
|
9378
9341
|
"shield-half": "shield-half";
|
|
9379
9342
|
"shield-minus": "shield-minus";
|
|
@@ -9413,7 +9376,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9413
9376
|
"skip-back": "skip-back";
|
|
9414
9377
|
"skip-forward": "skip-forward";
|
|
9415
9378
|
skull: "skull";
|
|
9416
|
-
slack: "slack";
|
|
9417
9379
|
slash: "slash";
|
|
9418
9380
|
"slash-square": "slash-square";
|
|
9419
9381
|
sliders: "sliders";
|
|
@@ -9445,6 +9407,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9445
9407
|
"split-square-horizontal": "split-square-horizontal";
|
|
9446
9408
|
"split-square-vertical": "split-square-vertical";
|
|
9447
9409
|
spool: "spool";
|
|
9410
|
+
"sport-shoe": "sport-shoe";
|
|
9448
9411
|
spotlight: "spotlight";
|
|
9449
9412
|
"spray-can": "spray-can";
|
|
9450
9413
|
sprout: "sprout";
|
|
@@ -9481,6 +9444,7 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9481
9444
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
9482
9445
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
9483
9446
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
9447
|
+
"square-dashed-text": "square-dashed-text";
|
|
9484
9448
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
9485
9449
|
"square-divide": "square-divide";
|
|
9486
9450
|
"square-dot": "square-dot";
|
|
@@ -9644,7 +9608,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9644
9608
|
"tree-palm": "tree-palm";
|
|
9645
9609
|
"tree-pine": "tree-pine";
|
|
9646
9610
|
trees: "trees";
|
|
9647
|
-
trello: "trello";
|
|
9648
9611
|
"trending-down": "trending-down";
|
|
9649
9612
|
"trending-up": "trending-up";
|
|
9650
9613
|
"trending-up-down": "trending-up-down";
|
|
@@ -9662,8 +9625,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9662
9625
|
"tv-2": "tv-2";
|
|
9663
9626
|
"tv-minimal": "tv-minimal";
|
|
9664
9627
|
"tv-minimal-play": "tv-minimal-play";
|
|
9665
|
-
twitch: "twitch";
|
|
9666
|
-
twitter: "twitter";
|
|
9667
9628
|
"type-outline": "type-outline";
|
|
9668
9629
|
umbrella: "umbrella";
|
|
9669
9630
|
"umbrella-off": "umbrella-off";
|
|
@@ -9787,7 +9748,6 @@ declare const HeaderNavItemSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
9787
9748
|
"x-line-top": "x-line-top";
|
|
9788
9749
|
"x-octagon": "x-octagon";
|
|
9789
9750
|
"x-square": "x-square";
|
|
9790
|
-
youtube: "youtube";
|
|
9791
9751
|
zap: "zap";
|
|
9792
9752
|
"zap-off": "zap-off";
|
|
9793
9753
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -10031,6 +9991,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10031
9991
|
"bed-double": "bed-double";
|
|
10032
9992
|
"bed-single": "bed-single";
|
|
10033
9993
|
beef: "beef";
|
|
9994
|
+
"beef-off": "beef-off";
|
|
10034
9995
|
beer: "beer";
|
|
10035
9996
|
"beer-off": "beer-off";
|
|
10036
9997
|
bell: "bell";
|
|
@@ -10093,6 +10054,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10093
10054
|
bookmark: "bookmark";
|
|
10094
10055
|
"bookmark-check": "bookmark-check";
|
|
10095
10056
|
"bookmark-minus": "bookmark-minus";
|
|
10057
|
+
"bookmark-off": "bookmark-off";
|
|
10096
10058
|
"bookmark-plus": "bookmark-plus";
|
|
10097
10059
|
"bookmark-x": "bookmark-x";
|
|
10098
10060
|
"boom-box": "boom-box";
|
|
@@ -10178,6 +10140,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10178
10140
|
castle: "castle";
|
|
10179
10141
|
cat: "cat";
|
|
10180
10142
|
cctv: "cctv";
|
|
10143
|
+
"cctv-off": "cctv-off";
|
|
10181
10144
|
"chart-area": "chart-area";
|
|
10182
10145
|
"chart-bar": "chart-bar";
|
|
10183
10146
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -10239,8 +10202,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10239
10202
|
"chevrons-right-left": "chevrons-right-left";
|
|
10240
10203
|
"chevrons-up": "chevrons-up";
|
|
10241
10204
|
"chevrons-up-down": "chevrons-up-down";
|
|
10242
|
-
chrome: "chrome";
|
|
10243
|
-
chromium: "chromium";
|
|
10244
10205
|
church: "church";
|
|
10245
10206
|
cigarette: "cigarette";
|
|
10246
10207
|
"cigarette-off": "cigarette-off";
|
|
@@ -10356,8 +10317,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10356
10317
|
"code-2": "code-2";
|
|
10357
10318
|
"code-square": "code-square";
|
|
10358
10319
|
"code-xml": "code-xml";
|
|
10359
|
-
codepen: "codepen";
|
|
10360
|
-
codesandbox: "codesandbox";
|
|
10361
10320
|
coffee: "coffee";
|
|
10362
10321
|
cog: "cog";
|
|
10363
10322
|
coins: "coins";
|
|
@@ -10455,7 +10414,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10455
10414
|
"download-cloud": "download-cloud";
|
|
10456
10415
|
"drafting-compass": "drafting-compass";
|
|
10457
10416
|
drama: "drama";
|
|
10458
|
-
dribbble: "dribbble";
|
|
10459
10417
|
drill: "drill";
|
|
10460
10418
|
drone: "drone";
|
|
10461
10419
|
droplet: "droplet";
|
|
@@ -10491,14 +10449,12 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10491
10449
|
eye: "eye";
|
|
10492
10450
|
"eye-closed": "eye-closed";
|
|
10493
10451
|
"eye-off": "eye-off";
|
|
10494
|
-
facebook: "facebook";
|
|
10495
10452
|
factory: "factory";
|
|
10496
10453
|
fan: "fan";
|
|
10497
10454
|
"fast-forward": "fast-forward";
|
|
10498
10455
|
feather: "feather";
|
|
10499
10456
|
fence: "fence";
|
|
10500
10457
|
"ferris-wheel": "ferris-wheel";
|
|
10501
|
-
figma: "figma";
|
|
10502
10458
|
"file-archive": "file-archive";
|
|
10503
10459
|
"file-audio": "file-audio";
|
|
10504
10460
|
"file-audio-2": "file-audio-2";
|
|
@@ -10653,7 +10609,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10653
10609
|
"form-input": "form-input";
|
|
10654
10610
|
forward: "forward";
|
|
10655
10611
|
frame: "frame";
|
|
10656
|
-
framer: "framer";
|
|
10657
10612
|
frown: "frown";
|
|
10658
10613
|
fuel: "fuel";
|
|
10659
10614
|
fullscreen: "fullscreen";
|
|
@@ -10696,8 +10651,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10696
10651
|
"git-pull-request-create": "git-pull-request-create";
|
|
10697
10652
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
10698
10653
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
10699
|
-
github: "github";
|
|
10700
|
-
gitlab: "gitlab";
|
|
10701
10654
|
"glass-water": "glass-water";
|
|
10702
10655
|
glasses: "glasses";
|
|
10703
10656
|
globe: "globe";
|
|
@@ -10808,7 +10761,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10808
10761
|
infinity: "infinity";
|
|
10809
10762
|
inspect: "inspect";
|
|
10810
10763
|
"inspection-panel": "inspection-panel";
|
|
10811
|
-
instagram: "instagram";
|
|
10812
10764
|
italic: "italic";
|
|
10813
10765
|
"iteration-ccw": "iteration-ccw";
|
|
10814
10766
|
"iteration-cw": "iteration-cw";
|
|
@@ -10867,9 +10819,9 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10867
10819
|
"line-chart": "line-chart";
|
|
10868
10820
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
10869
10821
|
"line-squiggle": "line-squiggle";
|
|
10822
|
+
"line-style": "line-style";
|
|
10870
10823
|
"link-2": "link-2";
|
|
10871
10824
|
"link-2-off": "link-2-off";
|
|
10872
|
-
linkedin: "linkedin";
|
|
10873
10825
|
list: "list";
|
|
10874
10826
|
"list-check": "list-check";
|
|
10875
10827
|
"list-checks": "list-checks";
|
|
@@ -10933,6 +10885,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
10933
10885
|
"map-pin-pen": "map-pin-pen";
|
|
10934
10886
|
"map-pin-plus": "map-pin-plus";
|
|
10935
10887
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
10888
|
+
"map-pin-search": "map-pin-search";
|
|
10936
10889
|
"map-pin-x": "map-pin-x";
|
|
10937
10890
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
10938
10891
|
"map-pinned": "map-pinned";
|
|
@@ -11186,7 +11139,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11186
11139
|
plus: "plus";
|
|
11187
11140
|
"plus-circle": "plus-circle";
|
|
11188
11141
|
"plus-square": "plus-square";
|
|
11189
|
-
pocket: "pocket";
|
|
11190
11142
|
"pocket-knife": "pocket-knife";
|
|
11191
11143
|
podcast: "podcast";
|
|
11192
11144
|
pointer: "pointer";
|
|
@@ -11213,10 +11165,10 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11213
11165
|
radiation: "radiation";
|
|
11214
11166
|
radical: "radical";
|
|
11215
11167
|
radio: "radio";
|
|
11168
|
+
"radio-off": "radio-off";
|
|
11216
11169
|
"radio-receiver": "radio-receiver";
|
|
11217
11170
|
"radio-tower": "radio-tower";
|
|
11218
11171
|
radius: "radius";
|
|
11219
|
-
"rail-symbol": "rail-symbol";
|
|
11220
11172
|
rainbow: "rainbow";
|
|
11221
11173
|
rat: "rat";
|
|
11222
11174
|
ratio: "ratio";
|
|
@@ -11253,6 +11205,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11253
11205
|
"reply-all": "reply-all";
|
|
11254
11206
|
rewind: "rewind";
|
|
11255
11207
|
ribbon: "ribbon";
|
|
11208
|
+
road: "road";
|
|
11256
11209
|
rocket: "rocket";
|
|
11257
11210
|
"rocking-chair": "rocking-chair";
|
|
11258
11211
|
"roller-coaster": "roller-coaster";
|
|
@@ -11338,6 +11291,8 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11338
11291
|
"shield-ban": "shield-ban";
|
|
11339
11292
|
"shield-check": "shield-check";
|
|
11340
11293
|
"shield-close": "shield-close";
|
|
11294
|
+
"shield-cog": "shield-cog";
|
|
11295
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
11341
11296
|
"shield-ellipsis": "shield-ellipsis";
|
|
11342
11297
|
"shield-half": "shield-half";
|
|
11343
11298
|
"shield-minus": "shield-minus";
|
|
@@ -11377,7 +11332,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11377
11332
|
"skip-back": "skip-back";
|
|
11378
11333
|
"skip-forward": "skip-forward";
|
|
11379
11334
|
skull: "skull";
|
|
11380
|
-
slack: "slack";
|
|
11381
11335
|
slash: "slash";
|
|
11382
11336
|
"slash-square": "slash-square";
|
|
11383
11337
|
sliders: "sliders";
|
|
@@ -11409,6 +11363,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11409
11363
|
"split-square-horizontal": "split-square-horizontal";
|
|
11410
11364
|
"split-square-vertical": "split-square-vertical";
|
|
11411
11365
|
spool: "spool";
|
|
11366
|
+
"sport-shoe": "sport-shoe";
|
|
11412
11367
|
spotlight: "spotlight";
|
|
11413
11368
|
"spray-can": "spray-can";
|
|
11414
11369
|
sprout: "sprout";
|
|
@@ -11445,6 +11400,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11445
11400
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
11446
11401
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
11447
11402
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
11403
|
+
"square-dashed-text": "square-dashed-text";
|
|
11448
11404
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
11449
11405
|
"square-divide": "square-divide";
|
|
11450
11406
|
"square-dot": "square-dot";
|
|
@@ -11608,7 +11564,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11608
11564
|
"tree-palm": "tree-palm";
|
|
11609
11565
|
"tree-pine": "tree-pine";
|
|
11610
11566
|
trees: "trees";
|
|
11611
|
-
trello: "trello";
|
|
11612
11567
|
"trending-down": "trending-down";
|
|
11613
11568
|
"trending-up": "trending-up";
|
|
11614
11569
|
"trending-up-down": "trending-up-down";
|
|
@@ -11626,8 +11581,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11626
11581
|
"tv-2": "tv-2";
|
|
11627
11582
|
"tv-minimal": "tv-minimal";
|
|
11628
11583
|
"tv-minimal-play": "tv-minimal-play";
|
|
11629
|
-
twitch: "twitch";
|
|
11630
|
-
twitter: "twitter";
|
|
11631
11584
|
"type-outline": "type-outline";
|
|
11632
11585
|
umbrella: "umbrella";
|
|
11633
11586
|
"umbrella-off": "umbrella-off";
|
|
@@ -11751,7 +11704,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11751
11704
|
"x-line-top": "x-line-top";
|
|
11752
11705
|
"x-octagon": "x-octagon";
|
|
11753
11706
|
"x-square": "x-square";
|
|
11754
|
-
youtube: "youtube";
|
|
11755
11707
|
zap: "zap";
|
|
11756
11708
|
"zap-off": "zap-off";
|
|
11757
11709
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -11993,6 +11945,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
11993
11945
|
"bed-double": "bed-double";
|
|
11994
11946
|
"bed-single": "bed-single";
|
|
11995
11947
|
beef: "beef";
|
|
11948
|
+
"beef-off": "beef-off";
|
|
11996
11949
|
beer: "beer";
|
|
11997
11950
|
"beer-off": "beer-off";
|
|
11998
11951
|
bell: "bell";
|
|
@@ -12055,6 +12008,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12055
12008
|
bookmark: "bookmark";
|
|
12056
12009
|
"bookmark-check": "bookmark-check";
|
|
12057
12010
|
"bookmark-minus": "bookmark-minus";
|
|
12011
|
+
"bookmark-off": "bookmark-off";
|
|
12058
12012
|
"bookmark-plus": "bookmark-plus";
|
|
12059
12013
|
"bookmark-x": "bookmark-x";
|
|
12060
12014
|
"boom-box": "boom-box";
|
|
@@ -12140,6 +12094,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12140
12094
|
castle: "castle";
|
|
12141
12095
|
cat: "cat";
|
|
12142
12096
|
cctv: "cctv";
|
|
12097
|
+
"cctv-off": "cctv-off";
|
|
12143
12098
|
"chart-area": "chart-area";
|
|
12144
12099
|
"chart-bar": "chart-bar";
|
|
12145
12100
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -12201,8 +12156,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12201
12156
|
"chevrons-right-left": "chevrons-right-left";
|
|
12202
12157
|
"chevrons-up": "chevrons-up";
|
|
12203
12158
|
"chevrons-up-down": "chevrons-up-down";
|
|
12204
|
-
chrome: "chrome";
|
|
12205
|
-
chromium: "chromium";
|
|
12206
12159
|
church: "church";
|
|
12207
12160
|
cigarette: "cigarette";
|
|
12208
12161
|
"cigarette-off": "cigarette-off";
|
|
@@ -12318,8 +12271,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12318
12271
|
"code-2": "code-2";
|
|
12319
12272
|
"code-square": "code-square";
|
|
12320
12273
|
"code-xml": "code-xml";
|
|
12321
|
-
codepen: "codepen";
|
|
12322
|
-
codesandbox: "codesandbox";
|
|
12323
12274
|
coffee: "coffee";
|
|
12324
12275
|
cog: "cog";
|
|
12325
12276
|
coins: "coins";
|
|
@@ -12417,7 +12368,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12417
12368
|
"download-cloud": "download-cloud";
|
|
12418
12369
|
"drafting-compass": "drafting-compass";
|
|
12419
12370
|
drama: "drama";
|
|
12420
|
-
dribbble: "dribbble";
|
|
12421
12371
|
drill: "drill";
|
|
12422
12372
|
drone: "drone";
|
|
12423
12373
|
droplet: "droplet";
|
|
@@ -12453,14 +12403,12 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12453
12403
|
eye: "eye";
|
|
12454
12404
|
"eye-closed": "eye-closed";
|
|
12455
12405
|
"eye-off": "eye-off";
|
|
12456
|
-
facebook: "facebook";
|
|
12457
12406
|
factory: "factory";
|
|
12458
12407
|
fan: "fan";
|
|
12459
12408
|
"fast-forward": "fast-forward";
|
|
12460
12409
|
feather: "feather";
|
|
12461
12410
|
fence: "fence";
|
|
12462
12411
|
"ferris-wheel": "ferris-wheel";
|
|
12463
|
-
figma: "figma";
|
|
12464
12412
|
"file-archive": "file-archive";
|
|
12465
12413
|
"file-audio": "file-audio";
|
|
12466
12414
|
"file-audio-2": "file-audio-2";
|
|
@@ -12615,7 +12563,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12615
12563
|
"form-input": "form-input";
|
|
12616
12564
|
forward: "forward";
|
|
12617
12565
|
frame: "frame";
|
|
12618
|
-
framer: "framer";
|
|
12619
12566
|
frown: "frown";
|
|
12620
12567
|
fuel: "fuel";
|
|
12621
12568
|
fullscreen: "fullscreen";
|
|
@@ -12658,8 +12605,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12658
12605
|
"git-pull-request-create": "git-pull-request-create";
|
|
12659
12606
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
12660
12607
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
12661
|
-
github: "github";
|
|
12662
|
-
gitlab: "gitlab";
|
|
12663
12608
|
"glass-water": "glass-water";
|
|
12664
12609
|
glasses: "glasses";
|
|
12665
12610
|
globe: "globe";
|
|
@@ -12770,7 +12715,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12770
12715
|
infinity: "infinity";
|
|
12771
12716
|
inspect: "inspect";
|
|
12772
12717
|
"inspection-panel": "inspection-panel";
|
|
12773
|
-
instagram: "instagram";
|
|
12774
12718
|
italic: "italic";
|
|
12775
12719
|
"iteration-ccw": "iteration-ccw";
|
|
12776
12720
|
"iteration-cw": "iteration-cw";
|
|
@@ -12829,9 +12773,9 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12829
12773
|
"line-chart": "line-chart";
|
|
12830
12774
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
12831
12775
|
"line-squiggle": "line-squiggle";
|
|
12776
|
+
"line-style": "line-style";
|
|
12832
12777
|
"link-2": "link-2";
|
|
12833
12778
|
"link-2-off": "link-2-off";
|
|
12834
|
-
linkedin: "linkedin";
|
|
12835
12779
|
list: "list";
|
|
12836
12780
|
"list-check": "list-check";
|
|
12837
12781
|
"list-checks": "list-checks";
|
|
@@ -12895,6 +12839,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
12895
12839
|
"map-pin-pen": "map-pin-pen";
|
|
12896
12840
|
"map-pin-plus": "map-pin-plus";
|
|
12897
12841
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
12842
|
+
"map-pin-search": "map-pin-search";
|
|
12898
12843
|
"map-pin-x": "map-pin-x";
|
|
12899
12844
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
12900
12845
|
"map-pinned": "map-pinned";
|
|
@@ -13148,7 +13093,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13148
13093
|
plus: "plus";
|
|
13149
13094
|
"plus-circle": "plus-circle";
|
|
13150
13095
|
"plus-square": "plus-square";
|
|
13151
|
-
pocket: "pocket";
|
|
13152
13096
|
"pocket-knife": "pocket-knife";
|
|
13153
13097
|
podcast: "podcast";
|
|
13154
13098
|
pointer: "pointer";
|
|
@@ -13175,10 +13119,10 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13175
13119
|
radiation: "radiation";
|
|
13176
13120
|
radical: "radical";
|
|
13177
13121
|
radio: "radio";
|
|
13122
|
+
"radio-off": "radio-off";
|
|
13178
13123
|
"radio-receiver": "radio-receiver";
|
|
13179
13124
|
"radio-tower": "radio-tower";
|
|
13180
13125
|
radius: "radius";
|
|
13181
|
-
"rail-symbol": "rail-symbol";
|
|
13182
13126
|
rainbow: "rainbow";
|
|
13183
13127
|
rat: "rat";
|
|
13184
13128
|
ratio: "ratio";
|
|
@@ -13215,6 +13159,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13215
13159
|
"reply-all": "reply-all";
|
|
13216
13160
|
rewind: "rewind";
|
|
13217
13161
|
ribbon: "ribbon";
|
|
13162
|
+
road: "road";
|
|
13218
13163
|
rocket: "rocket";
|
|
13219
13164
|
"rocking-chair": "rocking-chair";
|
|
13220
13165
|
"roller-coaster": "roller-coaster";
|
|
@@ -13300,6 +13245,8 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13300
13245
|
"shield-ban": "shield-ban";
|
|
13301
13246
|
"shield-check": "shield-check";
|
|
13302
13247
|
"shield-close": "shield-close";
|
|
13248
|
+
"shield-cog": "shield-cog";
|
|
13249
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
13303
13250
|
"shield-ellipsis": "shield-ellipsis";
|
|
13304
13251
|
"shield-half": "shield-half";
|
|
13305
13252
|
"shield-minus": "shield-minus";
|
|
@@ -13339,7 +13286,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13339
13286
|
"skip-back": "skip-back";
|
|
13340
13287
|
"skip-forward": "skip-forward";
|
|
13341
13288
|
skull: "skull";
|
|
13342
|
-
slack: "slack";
|
|
13343
13289
|
slash: "slash";
|
|
13344
13290
|
"slash-square": "slash-square";
|
|
13345
13291
|
sliders: "sliders";
|
|
@@ -13371,6 +13317,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13371
13317
|
"split-square-horizontal": "split-square-horizontal";
|
|
13372
13318
|
"split-square-vertical": "split-square-vertical";
|
|
13373
13319
|
spool: "spool";
|
|
13320
|
+
"sport-shoe": "sport-shoe";
|
|
13374
13321
|
spotlight: "spotlight";
|
|
13375
13322
|
"spray-can": "spray-can";
|
|
13376
13323
|
sprout: "sprout";
|
|
@@ -13407,6 +13354,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13407
13354
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
13408
13355
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
13409
13356
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
13357
|
+
"square-dashed-text": "square-dashed-text";
|
|
13410
13358
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
13411
13359
|
"square-divide": "square-divide";
|
|
13412
13360
|
"square-dot": "square-dot";
|
|
@@ -13570,7 +13518,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13570
13518
|
"tree-palm": "tree-palm";
|
|
13571
13519
|
"tree-pine": "tree-pine";
|
|
13572
13520
|
trees: "trees";
|
|
13573
|
-
trello: "trello";
|
|
13574
13521
|
"trending-down": "trending-down";
|
|
13575
13522
|
"trending-up": "trending-up";
|
|
13576
13523
|
"trending-up-down": "trending-up-down";
|
|
@@ -13588,8 +13535,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13588
13535
|
"tv-2": "tv-2";
|
|
13589
13536
|
"tv-minimal": "tv-minimal";
|
|
13590
13537
|
"tv-minimal-play": "tv-minimal-play";
|
|
13591
|
-
twitch: "twitch";
|
|
13592
|
-
twitter: "twitter";
|
|
13593
13538
|
"type-outline": "type-outline";
|
|
13594
13539
|
umbrella: "umbrella";
|
|
13595
13540
|
"umbrella-off": "umbrella-off";
|
|
@@ -13713,7 +13658,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13713
13658
|
"x-line-top": "x-line-top";
|
|
13714
13659
|
"x-octagon": "x-octagon";
|
|
13715
13660
|
"x-square": "x-square";
|
|
13716
|
-
youtube: "youtube";
|
|
13717
13661
|
zap: "zap";
|
|
13718
13662
|
"zap-off": "zap-off";
|
|
13719
13663
|
"zodiac-aquarius": "zodiac-aquarius";
|
|
@@ -13956,6 +13900,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
13956
13900
|
"bed-double": "bed-double";
|
|
13957
13901
|
"bed-single": "bed-single";
|
|
13958
13902
|
beef: "beef";
|
|
13903
|
+
"beef-off": "beef-off";
|
|
13959
13904
|
beer: "beer";
|
|
13960
13905
|
"beer-off": "beer-off";
|
|
13961
13906
|
bell: "bell";
|
|
@@ -14018,6 +13963,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14018
13963
|
bookmark: "bookmark";
|
|
14019
13964
|
"bookmark-check": "bookmark-check";
|
|
14020
13965
|
"bookmark-minus": "bookmark-minus";
|
|
13966
|
+
"bookmark-off": "bookmark-off";
|
|
14021
13967
|
"bookmark-plus": "bookmark-plus";
|
|
14022
13968
|
"bookmark-x": "bookmark-x";
|
|
14023
13969
|
"boom-box": "boom-box";
|
|
@@ -14103,6 +14049,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14103
14049
|
castle: "castle";
|
|
14104
14050
|
cat: "cat";
|
|
14105
14051
|
cctv: "cctv";
|
|
14052
|
+
"cctv-off": "cctv-off";
|
|
14106
14053
|
"chart-area": "chart-area";
|
|
14107
14054
|
"chart-bar": "chart-bar";
|
|
14108
14055
|
"chart-bar-big": "chart-bar-big";
|
|
@@ -14164,8 +14111,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14164
14111
|
"chevrons-right-left": "chevrons-right-left";
|
|
14165
14112
|
"chevrons-up": "chevrons-up";
|
|
14166
14113
|
"chevrons-up-down": "chevrons-up-down";
|
|
14167
|
-
chrome: "chrome";
|
|
14168
|
-
chromium: "chromium";
|
|
14169
14114
|
church: "church";
|
|
14170
14115
|
cigarette: "cigarette";
|
|
14171
14116
|
"cigarette-off": "cigarette-off";
|
|
@@ -14281,8 +14226,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14281
14226
|
"code-2": "code-2";
|
|
14282
14227
|
"code-square": "code-square";
|
|
14283
14228
|
"code-xml": "code-xml";
|
|
14284
|
-
codepen: "codepen";
|
|
14285
|
-
codesandbox: "codesandbox";
|
|
14286
14229
|
coffee: "coffee";
|
|
14287
14230
|
cog: "cog";
|
|
14288
14231
|
coins: "coins";
|
|
@@ -14380,7 +14323,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14380
14323
|
"download-cloud": "download-cloud";
|
|
14381
14324
|
"drafting-compass": "drafting-compass";
|
|
14382
14325
|
drama: "drama";
|
|
14383
|
-
dribbble: "dribbble";
|
|
14384
14326
|
drill: "drill";
|
|
14385
14327
|
drone: "drone";
|
|
14386
14328
|
droplet: "droplet";
|
|
@@ -14416,14 +14358,12 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14416
14358
|
eye: "eye";
|
|
14417
14359
|
"eye-closed": "eye-closed";
|
|
14418
14360
|
"eye-off": "eye-off";
|
|
14419
|
-
facebook: "facebook";
|
|
14420
14361
|
factory: "factory";
|
|
14421
14362
|
fan: "fan";
|
|
14422
14363
|
"fast-forward": "fast-forward";
|
|
14423
14364
|
feather: "feather";
|
|
14424
14365
|
fence: "fence";
|
|
14425
14366
|
"ferris-wheel": "ferris-wheel";
|
|
14426
|
-
figma: "figma";
|
|
14427
14367
|
"file-archive": "file-archive";
|
|
14428
14368
|
"file-audio": "file-audio";
|
|
14429
14369
|
"file-audio-2": "file-audio-2";
|
|
@@ -14578,7 +14518,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14578
14518
|
"form-input": "form-input";
|
|
14579
14519
|
forward: "forward";
|
|
14580
14520
|
frame: "frame";
|
|
14581
|
-
framer: "framer";
|
|
14582
14521
|
frown: "frown";
|
|
14583
14522
|
fuel: "fuel";
|
|
14584
14523
|
fullscreen: "fullscreen";
|
|
@@ -14621,8 +14560,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14621
14560
|
"git-pull-request-create": "git-pull-request-create";
|
|
14622
14561
|
"git-pull-request-create-arrow": "git-pull-request-create-arrow";
|
|
14623
14562
|
"git-pull-request-draft": "git-pull-request-draft";
|
|
14624
|
-
github: "github";
|
|
14625
|
-
gitlab: "gitlab";
|
|
14626
14563
|
"glass-water": "glass-water";
|
|
14627
14564
|
glasses: "glasses";
|
|
14628
14565
|
globe: "globe";
|
|
@@ -14733,7 +14670,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14733
14670
|
infinity: "infinity";
|
|
14734
14671
|
inspect: "inspect";
|
|
14735
14672
|
"inspection-panel": "inspection-panel";
|
|
14736
|
-
instagram: "instagram";
|
|
14737
14673
|
italic: "italic";
|
|
14738
14674
|
"iteration-ccw": "iteration-ccw";
|
|
14739
14675
|
"iteration-cw": "iteration-cw";
|
|
@@ -14792,9 +14728,9 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14792
14728
|
"line-chart": "line-chart";
|
|
14793
14729
|
"line-dot-right-horizontal": "line-dot-right-horizontal";
|
|
14794
14730
|
"line-squiggle": "line-squiggle";
|
|
14731
|
+
"line-style": "line-style";
|
|
14795
14732
|
"link-2": "link-2";
|
|
14796
14733
|
"link-2-off": "link-2-off";
|
|
14797
|
-
linkedin: "linkedin";
|
|
14798
14734
|
list: "list";
|
|
14799
14735
|
"list-check": "list-check";
|
|
14800
14736
|
"list-checks": "list-checks";
|
|
@@ -14858,6 +14794,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
14858
14794
|
"map-pin-pen": "map-pin-pen";
|
|
14859
14795
|
"map-pin-plus": "map-pin-plus";
|
|
14860
14796
|
"map-pin-plus-inside": "map-pin-plus-inside";
|
|
14797
|
+
"map-pin-search": "map-pin-search";
|
|
14861
14798
|
"map-pin-x": "map-pin-x";
|
|
14862
14799
|
"map-pin-x-inside": "map-pin-x-inside";
|
|
14863
14800
|
"map-pinned": "map-pinned";
|
|
@@ -15111,7 +15048,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15111
15048
|
plus: "plus";
|
|
15112
15049
|
"plus-circle": "plus-circle";
|
|
15113
15050
|
"plus-square": "plus-square";
|
|
15114
|
-
pocket: "pocket";
|
|
15115
15051
|
"pocket-knife": "pocket-knife";
|
|
15116
15052
|
podcast: "podcast";
|
|
15117
15053
|
pointer: "pointer";
|
|
@@ -15138,10 +15074,10 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15138
15074
|
radiation: "radiation";
|
|
15139
15075
|
radical: "radical";
|
|
15140
15076
|
radio: "radio";
|
|
15077
|
+
"radio-off": "radio-off";
|
|
15141
15078
|
"radio-receiver": "radio-receiver";
|
|
15142
15079
|
"radio-tower": "radio-tower";
|
|
15143
15080
|
radius: "radius";
|
|
15144
|
-
"rail-symbol": "rail-symbol";
|
|
15145
15081
|
rainbow: "rainbow";
|
|
15146
15082
|
rat: "rat";
|
|
15147
15083
|
ratio: "ratio";
|
|
@@ -15178,6 +15114,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15178
15114
|
"reply-all": "reply-all";
|
|
15179
15115
|
rewind: "rewind";
|
|
15180
15116
|
ribbon: "ribbon";
|
|
15117
|
+
road: "road";
|
|
15181
15118
|
rocket: "rocket";
|
|
15182
15119
|
"rocking-chair": "rocking-chair";
|
|
15183
15120
|
"roller-coaster": "roller-coaster";
|
|
@@ -15263,6 +15200,8 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15263
15200
|
"shield-ban": "shield-ban";
|
|
15264
15201
|
"shield-check": "shield-check";
|
|
15265
15202
|
"shield-close": "shield-close";
|
|
15203
|
+
"shield-cog": "shield-cog";
|
|
15204
|
+
"shield-cog-corner": "shield-cog-corner";
|
|
15266
15205
|
"shield-ellipsis": "shield-ellipsis";
|
|
15267
15206
|
"shield-half": "shield-half";
|
|
15268
15207
|
"shield-minus": "shield-minus";
|
|
@@ -15302,7 +15241,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15302
15241
|
"skip-back": "skip-back";
|
|
15303
15242
|
"skip-forward": "skip-forward";
|
|
15304
15243
|
skull: "skull";
|
|
15305
|
-
slack: "slack";
|
|
15306
15244
|
slash: "slash";
|
|
15307
15245
|
"slash-square": "slash-square";
|
|
15308
15246
|
sliders: "sliders";
|
|
@@ -15334,6 +15272,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15334
15272
|
"split-square-horizontal": "split-square-horizontal";
|
|
15335
15273
|
"split-square-vertical": "split-square-vertical";
|
|
15336
15274
|
spool: "spool";
|
|
15275
|
+
"sport-shoe": "sport-shoe";
|
|
15337
15276
|
spotlight: "spotlight";
|
|
15338
15277
|
"spray-can": "spray-can";
|
|
15339
15278
|
sprout: "sprout";
|
|
@@ -15370,6 +15309,7 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15370
15309
|
"square-dashed-bottom-code": "square-dashed-bottom-code";
|
|
15371
15310
|
"square-dashed-kanban": "square-dashed-kanban";
|
|
15372
15311
|
"square-dashed-mouse-pointer": "square-dashed-mouse-pointer";
|
|
15312
|
+
"square-dashed-text": "square-dashed-text";
|
|
15373
15313
|
"square-dashed-top-solid": "square-dashed-top-solid";
|
|
15374
15314
|
"square-divide": "square-divide";
|
|
15375
15315
|
"square-dot": "square-dot";
|
|
@@ -15533,7 +15473,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15533
15473
|
"tree-palm": "tree-palm";
|
|
15534
15474
|
"tree-pine": "tree-pine";
|
|
15535
15475
|
trees: "trees";
|
|
15536
|
-
trello: "trello";
|
|
15537
15476
|
"trending-down": "trending-down";
|
|
15538
15477
|
"trending-up": "trending-up";
|
|
15539
15478
|
"trending-up-down": "trending-up-down";
|
|
@@ -15551,8 +15490,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15551
15490
|
"tv-2": "tv-2";
|
|
15552
15491
|
"tv-minimal": "tv-minimal";
|
|
15553
15492
|
"tv-minimal-play": "tv-minimal-play";
|
|
15554
|
-
twitch: "twitch";
|
|
15555
|
-
twitter: "twitter";
|
|
15556
15493
|
"type-outline": "type-outline";
|
|
15557
15494
|
umbrella: "umbrella";
|
|
15558
15495
|
"umbrella-off": "umbrella-off";
|
|
@@ -15676,7 +15613,6 @@ export declare const HeaderNavigationSchema: z.ZodArray<z.ZodUnion<readonly [z.Z
|
|
|
15676
15613
|
"x-line-top": "x-line-top";
|
|
15677
15614
|
"x-octagon": "x-octagon";
|
|
15678
15615
|
"x-square": "x-square";
|
|
15679
|
-
youtube: "youtube";
|
|
15680
15616
|
zap: "zap";
|
|
15681
15617
|
"zap-off": "zap-off";
|
|
15682
15618
|
"zodiac-aquarius": "zodiac-aquarius";
|