@dscout/particle 1.0.0-alpha.53 → 1.0.0-alpha.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/AGENTS.md ADDED
@@ -0,0 +1,99 @@
1
+ # AGENTS.md
2
+
3
+ Guidance for AI agents working in an application that **consumes** `@dscout/particle`.
4
+
5
+ > This file ships inside the published package. It describes how to *use* Particle, not how to develop it. (Contributors to Particle itself should read `CLAUDE.md` in the repo root instead.)
6
+
7
+ ## What Particle is
8
+
9
+ Particle is dscout's design system: a React component library plus a set of SCSS/CSS stylesheets, published as `@dscout/particle`. You import components, utility classes, and styles from it; you do not modify it from a consuming app.
10
+
11
+ The authoritative reference for what components exist, their props, and their variants is the hosted Storybook: https://dscout.github.io/particle/v1/storybook/ — prefer it over guessing a component or prop name.
12
+
13
+ ## Installing and peer dependencies
14
+
15
+ ```bash
16
+ yarn add @dscout/particle react react-dom react-router-dom
17
+ ```
18
+
19
+ - **Peer dependencies (you install these):** `react`, `react-dom` (18.x or 19.x), and `react-router-dom` (6.x or 7.x).
20
+ - **`@floating-ui/dom`** is a regular dependency of Particle — it is installed automatically and powers `TooltipContainer` and `DropdownContainer`. You do not add it yourself.
21
+
22
+ Particle is built against React 18 but supports React 19 with no code changes; validate behavior when running on 19.
23
+
24
+ ## Importing components
25
+
26
+ Everything is a **named export** off the package root. There are no deep component import paths.
27
+
28
+ ```tsx
29
+ import { Container, Heading, Button } from '@dscout/particle';
30
+ ```
31
+
32
+ Components accept text as props rather than hardcoding copy — e.g. `Button` takes its label as a prop. Supply all user-facing strings from the consuming app.
33
+
34
+ ## Importing styles
35
+
36
+ Components are unstyled, and the utility classes below are unavailable, until you import Particle's stylesheet once near your app entry point.
37
+
38
+ Pre-compiled CSS (no build tooling required):
39
+
40
+ ```css
41
+ @import 'node_modules/@dscout/particle/lib/stylesheets/particle.css';
42
+ /* or the minified build */
43
+ @import 'node_modules/@dscout/particle/lib/stylesheets/particle.min.css';
44
+ ```
45
+
46
+ SCSS source (if your app compiles SCSS):
47
+
48
+ ```scss
49
+ @import '@dscout/particle/styles/particle.scss';
50
+ ```
51
+
52
+ ## Utility classes
53
+
54
+ Importing the stylesheet also brings in Particle's utility classes — single-purpose classes that apply design-system values for layout, spacing, color, typography, etc. **Prefer these over hand-written CSS or inline styles in a consuming app**: they keep you on the system's scale and tokens, and they're the intended way to compose layouts around Particle components.
55
+
56
+ The class-name convention is `category--value` (a double dash before the value). Categories live in the package's `styles/utilities/` directory. The common ones:
57
+
58
+ | Category | Examples | What it does |
59
+ |---|---|---|
60
+ | Display | `.display--f` (flex), `.display--ib` (inline-block), `.display--n` (none) | `display` |
61
+ | Flex / alignment | `.flex`, `.flex--1`, `.direction--column`, `.align-items--center`, `.align-content--between` | flexbox layout |
62
+ | Spacing — gap | `.flex-gap--1em`, `.flex-gap-v--0.5em`, `.flex-gap-h--1em` | `gap` between flex children |
63
+ | Spacing — margin | `.margin--1em`, `.margin-t--0.5em`, `.margin-h--2em` | `margin` (t/b/l/r/v/h variants) |
64
+ | Spacing — padding | `.padding--1em`, `.padding-v--0.5em`, `.padding-h--1em` | `padding` |
65
+ | Color | `.color--gray-500`, `.bg-color--blue-500`, `.b-color--gray-50` | text / background / border color |
66
+ | Typography | `.font-size--base`, `.font-weight--bold`, `.font--monospace` | type scale, weight, family |
67
+
68
+ Spacing values come from a fixed em-based scale — `none`, `0.25em`, `0.5em`, `0.75em`, `1em`, `1.25em`, `1.5em`, `2em`, `3em`, `4em`. Use a value from the scale; don't expect arbitrary values like `.margin--13px` to exist.
69
+
70
+ Color utility values mirror the base color tokens (e.g. `gray-5`…`gray-900`, `blue-500`, `red-500`, `green-500`). If you're unsure a class exists, check `styles/utilities/` in the installed package rather than guessing.
71
+
72
+ ## Theming and overrides: the token naming pattern
73
+
74
+ For per-component look-and-feel, Particle exposes **CSS variables (design tokens)**, so a consuming app can re-theme components without targeting their class names. This is the intended override mechanism — overriding raw class names is not.
75
+
76
+ The token naming convention is precise, and getting a separator wrong silently does nothing. The pattern is:
77
+
78
+ ```
79
+ --[ComponentName][--variant][__NestedElement][____property]
80
+ ```
81
+
82
+ - **Four underscores (`____`)** separate the component (or nested element) from the property.
83
+ - **Double dash (`--`)** separates a variant.
84
+ - **Two underscores (`__`)** separate a nested element.
85
+
86
+ | Example token | Meaning |
87
+ |---|---|
88
+ | `--Button____bg-color` | Button background color |
89
+ | `--Button--outline____b-color` | Outline-variant button border color |
90
+ | `--Input____border-color` | Input border color |
91
+ | `--Checkbox--checked__Icon____color` | Icon color inside a checked checkbox |
92
+
93
+ Do not invent token names. If you can't confirm a token exists, check Storybook or the package's `styles/` directory rather than approximating one.
94
+
95
+ ## Links
96
+
97
+ - Storybook (components, props, variants): https://dscout.github.io/particle/v1/storybook/
98
+ - Documentation site: https://dscout.github.io/particle/
99
+ - npm: https://www.npmjs.com/package/@dscout/particle
package/README.md CHANGED
@@ -25,7 +25,7 @@ yarn add @dscout/particle react@^19.0.0 react-dom@^19.0.0
25
25
 
26
26
  ### Peer dependencies
27
27
 
28
- Particle requires the implementing application install React and React Router. Optionally the implementing application can also install `lodash` and `@floating-ui/dom`. These optional peer dependencies are **required** when using the tooltip or dropdown components from Particle, but can be omitted if those are not used.
28
+ Particle requires the implementing application install React (`react`, `react-dom`) and React Router (`react-router-dom`). `@floating-ui/dom` which powers the tooltip and dropdown components is a regular dependency of Particle and installs automatically; the implementing application does not need to add it.
29
29
 
30
30
  ### Importing
31
31
 
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { type IconProps } from './core';
3
+ interface IconDoubleChevronLeftProps extends IconProps {
4
+ base?: '16' | '24';
5
+ }
6
+ export declare function IconDoubleChevronLeft({ base, ...props }: IconDoubleChevronLeftProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ var __importDefault = (this && this.__importDefault) || function (mod) {
25
+ return (mod && mod.__esModule) ? mod : { "default": mod };
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.IconDoubleChevronLeft = void 0;
29
+ var react_1 = __importDefault(require("react"));
30
+ var core_1 = require("./core");
31
+ var BASE_MAP = {
32
+ 16: (react_1.default.createElement(react_1.default.Fragment, null,
33
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M13.593 2.195 7.788 8l5.804 5.805.943-.943L9.673 8l4.862-4.862z", clipRule: "evenodd" }),
34
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M7.176 2.195 1.37 8l5.805 5.805.943-.943L3.257 8l4.862-4.862z", clipRule: "evenodd" }))),
35
+ 24: (react_1.default.createElement(react_1.default.Fragment, null,
36
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M20.389 3.293 11.682 12l8.707 8.707 1.414-1.414L14.51 12l7.293-7.293z", clipRule: "evenodd" }),
37
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M10.764 3.293 2.056 12l8.708 8.707 1.414-1.414L4.885 12l7.293-7.293z", clipRule: "evenodd" })))
38
+ };
39
+ function IconDoubleChevronLeft(_a) {
40
+ var _b = _a.base, base = _b === void 0 ? '16' : _b, props = __rest(_a, ["base"]);
41
+ return (react_1.default.createElement(core_1.IconSVG, __assign({}, props, { viewBox: "0 0 ".concat(base, " ").concat(base) }), BASE_MAP[base] || null));
42
+ }
43
+ exports.IconDoubleChevronLeft = IconDoubleChevronLeft;
44
+ //# sourceMappingURL=double_chevron_left.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"double_chevron_left.js","sourceRoot":"","sources":["../../../../src/icons/express/double_chevron_left.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,gDAA0B;AAC1B,+BAAiD;AAMjD,IAAM,QAAQ,GAAG;IACf,EAAE,EAAE,CACF;QACE,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,iEAAiE,EACnE,QAAQ,EAAC,SAAS,GAClB;QACF,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,+DAA+D,EACjE,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;IACD,EAAE,EAAE,CACF;QACE,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,uEAAuE,EACzE,QAAQ,EAAC,SAAS,GAClB;QACF,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,sEAAsE,EACxE,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;CACF,CAAC;AAEF,SAAgB,qBAAqB,CAAC,EAGT;IAF3B,IAAA,YAAW,EAAX,IAAI,mBAAG,IAAI,KAAA,EACR,KAAK,cAF4B,QAGrC,CADS;IAER,OAAO,CACL,8BAAC,cAAO,eAAK,KAAK,IAAE,OAAO,EAAE,cAAO,IAAI,cAAI,IAAI,CAAE,KAC/C,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CACf,CACX,CAAC;AACJ,CAAC;AATD,sDASC"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { type IconProps } from './core';
3
+ interface IconDoubleChevronRightProps extends IconProps {
4
+ base?: '16' | '24';
5
+ }
6
+ export declare function IconDoubleChevronRight({ base, ...props }: IconDoubleChevronRightProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ var __importDefault = (this && this.__importDefault) || function (mod) {
25
+ return (mod && mod.__esModule) ? mod : { "default": mod };
26
+ };
27
+ Object.defineProperty(exports, "__esModule", { value: true });
28
+ exports.IconDoubleChevronRight = void 0;
29
+ var react_1 = __importDefault(require("react"));
30
+ var core_1 = require("./core");
31
+ var BASE_MAP = {
32
+ 16: (react_1.default.createElement(react_1.default.Fragment, null,
33
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M2.408 2.195 8.212 8l-5.804 5.805-.943-.943L6.327 8 1.465 3.138z", clipRule: "evenodd" }),
34
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M8.824 2.195 14.63 8l-5.805 5.805-.943-.943L12.743 8 7.881 3.138z", clipRule: "evenodd" }))),
35
+ 24: (react_1.default.createElement(react_1.default.Fragment, null,
36
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M3.611 3.293 12.318 12l-8.707 8.707-1.414-1.414L9.49 12 2.197 4.707z", clipRule: "evenodd" }),
37
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M13.236 3.293 21.944 12l-8.708 8.707-1.414-1.414L19.115 12l-7.293-7.293z", clipRule: "evenodd" })))
38
+ };
39
+ function IconDoubleChevronRight(_a) {
40
+ var _b = _a.base, base = _b === void 0 ? '16' : _b, props = __rest(_a, ["base"]);
41
+ return (react_1.default.createElement(core_1.IconSVG, __assign({}, props, { viewBox: "0 0 ".concat(base, " ").concat(base) }), BASE_MAP[base] || null));
42
+ }
43
+ exports.IconDoubleChevronRight = IconDoubleChevronRight;
44
+ //# sourceMappingURL=double_chevron_right.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"double_chevron_right.js","sourceRoot":"","sources":["../../../../src/icons/express/double_chevron_right.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,gDAA0B;AAC1B,+BAAiD;AAMjD,IAAM,QAAQ,GAAG;IACf,EAAE,EAAE,CACF;QACE,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,kEAAkE,EACpE,QAAQ,EAAC,SAAS,GAClB;QACF,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,mEAAmE,EACrE,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;IACD,EAAE,EAAE,CACF;QACE,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,sEAAsE,EACxE,QAAQ,EAAC,SAAS,GAClB;QACF,wCACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0EAA0E,EAC5E,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;CACF,CAAC;AAEF,SAAgB,sBAAsB,CAAC,EAGT;IAF5B,IAAA,YAAW,EAAX,IAAI,mBAAG,IAAI,KAAA,EACR,KAAK,cAF6B,QAGtC,CADS;IAER,OAAO,CACL,8BAAC,cAAO,eAAK,KAAK,IAAE,OAAO,EAAE,cAAO,IAAI,cAAI,IAAI,CAAE,KAC/C,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CACf,CACX,CAAC;AACJ,CAAC;AATD,wDASC"}
@@ -119,6 +119,8 @@ import { IconDocumentX } from './document_x';
119
119
  import { IconDotsSixVertical } from './dots_six_vertical';
120
120
  import { IconDotsThreeHorizontal } from './dots_three_horizontal';
121
121
  import { IconDotsThreeVertical } from './dots_three_vertical';
122
+ import { IconDoubleChevronLeft } from './double_chevron_left';
123
+ import { IconDoubleChevronRight } from './double_chevron_right';
122
124
  import { IconEnvelope } from './envelope';
123
125
  import { IconExpress } from './express';
124
126
  import { IconEyeOff } from './eye_off';
@@ -367,6 +369,8 @@ declare const ExpressIcons: {
367
369
  IconDotsSixVertical: typeof IconDotsSixVertical;
368
370
  IconDotsThreeHorizontal: typeof IconDotsThreeHorizontal;
369
371
  IconDotsThreeVertical: typeof IconDotsThreeVertical;
372
+ IconDoubleChevronLeft: typeof IconDoubleChevronLeft;
373
+ IconDoubleChevronRight: typeof IconDoubleChevronRight;
370
374
  IconEnvelope: typeof IconEnvelope;
371
375
  IconExpress: typeof IconExpress;
372
376
  IconEyeOff: typeof IconEyeOff;
@@ -137,6 +137,8 @@ var document_x_1 = require("./document_x");
137
137
  var dots_six_vertical_1 = require("./dots_six_vertical");
138
138
  var dots_three_horizontal_1 = require("./dots_three_horizontal");
139
139
  var dots_three_vertical_1 = require("./dots_three_vertical");
140
+ var double_chevron_left_1 = require("./double_chevron_left");
141
+ var double_chevron_right_1 = require("./double_chevron_right");
140
142
  var envelope_1 = require("./envelope");
141
143
  var express_1 = require("./express");
142
144
  var eye_off_1 = require("./eye_off");
@@ -279,6 +281,6 @@ var AiIconAliases = {
279
281
  // These are exported as an object with named exports for each icon, so they can be used in code
280
282
  // like `<ExpressIcons.Icon123 />` or `<ExpressIcons.IconArrowDown />`. This is intentional to help
281
283
  // differentiate between Express icons and other icon set in Particle that is legacy and only intended for Diary.
282
- var ExpressIcons = __assign(__assign({}, AiIconAliases), { Icon123: _123_1.Icon123, IconAiExplore: ai_explore_1.IconAiExplore, IconAiModerated: ai_moderated_1.IconAiModerated, IconAiPhoto: ai_photo_1.IconAiPhoto, IconAiSummary: ai_summary_1.IconAiSummary, IconAiTag: ai_tag_1.IconAiTag, IconAiVideo: ai_video_1.IconAiVideo, IconArrowClock: arrow_clock_1.IconArrowClock, IconArrowDown: arrow_down_1.IconArrowDown, IconArrowLeft: arrow_left_1.IconArrowLeft, IconArrowRight: arrow_right_1.IconArrowRight, IconArrowUp: arrow_up_1.IconArrowUp, IconArrowDownToBracket: arrow_down_to_bracket_1.IconArrowDownToBracket, IconArrowDownToLine: arrow_down_to_line_1.IconArrowDownToLine, IconArrowListDown: arrow_list_down_1.IconArrowListDown, IconArrowListUp: arrow_list_up_1.IconArrowListUp, IconArrowRightLine: arrow_right_line_1.IconArrowRightLine, IconArrowRightX: arrow_right_x_1.IconArrowRightX, IconArrowUpFromBracket: arrow_up_from_bracket_1.IconArrowUpFromBracket, IconArrowUpFromScreenOff: arrow_up_from_screen_off_1.IconArrowUpFromScreenOff, IconArrowUpFromScreenOn: arrow_up_from_screen_on_1.IconArrowUpFromScreenOn, IconArrowUpRightFromSquare: arrow_up_right_from_square_1.IconArrowUpRightFromSquare, IconArrowUpRightIntoSquare: arrow_up_right_into_square_1.IconArrowUpRightIntoSquare, IconArrowsFlip: arrows_flip_1.IconArrowsFlip, IconArrowsInward: arrows_inward_1.IconArrowsInward, IconArrowsOutward: arrows_outward_1.IconArrowsOutward, IconAsterisk: asterisk_1.IconAsterisk, IconAt: at_1.IconAt, IconBadgeCheck: badge_check_1.IconBadgeCheck, IconBadgeCheckFilled: badge_check_filled_1.IconBadgeCheckFilled, IconBarsFilter: bars_filter_1.IconBarsFilter, IconBarsFiveVertical: bars_five_vertical_1.IconBarsFiveVertical, IconBarsThreeHorizontal: bars_three_horizontal_1.IconBarsThreeHorizontal, IconBellFilled: bell_filled_1.IconBellFilled, IconBellOutlined: bell_outlined_1.IconBellOutlined, IconBlur: blur_1.IconBlur, IconBoltOff: bolt_off_1.IconBoltOff, IconBoltOn: bolt_on_1.IconBoltOn, IconBookmarkFilled: bookmark_filled_1.IconBookmarkFilled, IconBookmarkOutlined: bookmark_outlined_1.IconBookmarkOutlined, IconBoxArchive: box_archive_1.IconBoxArchive, IconBubble: bubble_1.IconBubble, IconBulbStars: bulb_stars_1.IconBulbStars, IconBulletedList: bulleted_list_1.IconBulletedList, IconCalendar: calendar_1.IconCalendar, IconCalendarPlus: calendar_plus_1.IconCalendarPlus, IconCamera: camera_1.IconCamera, IconCameraVideoOff: camera_video_off_1.IconCameraVideoOff, IconCameraVideoOn: camera_video_on_1.IconCameraVideoOn, IconCards: cards_1.IconCards, IconChartCircles: chart_circles_1.IconChartCircles, IconChartHorizontal: chart_horizontal_1.IconChartHorizontal, IconCheckHexagonFilled: check_hexagon_filled_1.IconCheckHexagonFilled, IconCheck: check_1.IconCheck, IconCheckHexagon: check_hexagon_1.IconCheckHexagon, IconCheckpoint: checkpoint_1.IconCheckpoint, IconChevronDown: chevron_down_1.IconChevronDown, IconChevronLeft: chevron_left_1.IconChevronLeft, IconChevronRight: chevron_right_1.IconChevronRight, IconChevronUp: chevron_up_1.IconChevronUp, IconChoicePowerup: choice_powerup_1.IconChoicePowerup, IconCircle: circle_1.IconCircle, IconCircleOutline: circle_outline_filled_1.IconCircleOutline, IconCircleArrowDown: circle_arrow_down_1.IconCircleArrowDown, IconCircleArrowLeft: circle_arrow_left_1.IconCircleArrowLeft, IconCircleArrowRight: circle_arrow_right_1.IconCircleArrowRight, IconCircleArrowUp: circle_arrow_up_1.IconCircleArrowUp, IconCircleCheckFilled: circle_check_filled_1.IconCircleCheckFilled, IconCircleCheckOutlined: circle_check_outlined_1.IconCircleCheckOutlined, IconCircleDollar: circle_dollar_1.IconCircleDollar, IconCircleDollarCheck: circle_dollar_check_1.IconCircleDollarCheck, IconCircleDollarRightArrow: circle_dollar_right_arrow_1.IconCircleDollarRightArrow, IconCircleExclamationFilled: circle_exclamation_filled_1.IconCircleExclamationFilled, IconCircleExclamationOutlined: circle_exclamation_outlined_1.IconCircleExclamationOutlined, IconCircleInCornerBrackets: circle_in_corner_brackets_1.IconCircleInCornerBrackets, IconCircleInfoFilled: circle_info_filled_1.IconCircleInfoFilled, IconCircleInfoOutlined: circle_info_outlined_1.IconCircleInfoOutlined, IconCircleInfoAltFilled: circle_info_alt_filled_1.IconCircleInfoAltFilled, IconCircleInfoAltOutlined: circle_info_alt_outlined_1.IconCircleInfoAltOutlined, IconCircleMinusFilled: circle_minus_filled_1.IconCircleMinusFilled, IconCircleMinusOutlined: circle_minus_outlined_1.IconCircleMinusOutlined, IconCirclePauseFilled: circle_pause_filled_1.IconCirclePauseFilled, IconCirclePauseOutlined: circle_pause_outlined_1.IconCirclePauseOutlined, IconCirclePerson: circle_person_1.IconCirclePerson, IconCirclePlusFilled: circle_plus_filled_1.IconCirclePlusFilled, IconCirclePlusOutlined: circle_plus_outlined_1.IconCirclePlusOutlined, IconCircleQuestionFilled: circle_question_filled_1.IconCircleQuestionFilled, IconCircleQuestionOutlined: circle_question_outlined_1.IconCircleQuestionOutlined, IconCircleSlash: circle_slash_1.IconCircleSlash, IconCircleStar: circle_star_1.IconCircleStar, IconCircleThreeDotsFilled: circle_three_dots_filled_1.IconCircleThreeDotsFilled, IconCircleThreeDotsOutlined: circle_three_dots_outlined_1.IconCircleThreeDotsOutlined, IconCircleXFilled: circle_x_filled_1.IconCircleXFilled, IconCircleXOutlined: circle_x_outlined_1.IconCircleXOutlined, IconCirclesLists: circles_lists_1.IconCirclesLists, IconClickEvent: click_event_1.IconClickEvent, IconClipboardBars: clipboard_bars_1.IconClipboardBars, IconClipboardBarsCheck: clipboard_bars_check_1.IconClipboardBarsCheck, IconClipboardBarsX: clipboard_bars_x_1.IconClipboardBarsX, IconClipboardCheckOff: clipboard_check_off_1.IconClipboardCheckOff, IconClipboardCheckOn: clipboard_check_on_1.IconClipboardCheckOn, IconClipboardMagnifyingGlass: clipboard_magnifying_glass_1.IconClipboardMagnifyingGlass, IconClock: clock_1.IconClock, IconCompass: compass_1.IconCompass, IconCursorLines: cursor_lines_1.IconCursorLines, IconCurvedDownArrow: curved_down_arrow_1.IconCurvedDownArrow, IconCurvedUpArrow: curved_up_arrow_1.IconCurvedUpArrow, IconCurvedArrowInSquare: curved_arrow_in_square_1.IconCurvedArrowInSquare, IconCurvedArrowOverThreeDots: curved_arrow_over_three_dots_1.IconCurvedArrowOverThreeDots, IconDiamondCircle: diamond_circle_1.IconDiamondCircle, IconDiamondCircleCorners: diamond_circle_corners_1.IconDiamondCircleCorners, IconDiamondStar: diamond_star_1.IconDiamondStar, IconDiamondStarOutlined: diamond_star_outlined_1.IconDiamondStarOutlined, IconDiary: diary_1.IconDiary, IconDocumentPlus: document_plus_1.IconDocumentPlus, IconDocumentStars: document_stars_1.IconDocumentStars, IconDocumentX: document_x_1.IconDocumentX, IconDotsSixVertical: dots_six_vertical_1.IconDotsSixVertical, IconDotsThreeHorizontal: dots_three_horizontal_1.IconDotsThreeHorizontal, IconDotsThreeVertical: dots_three_vertical_1.IconDotsThreeVertical, IconEnvelope: envelope_1.IconEnvelope, IconExpress: express_1.IconExpress, IconEyeOff: eye_off_1.IconEyeOff, IconEyeOn: eye_on_1.IconEyeOn, IconFigma: figma_1.IconFigma, IconFlagFilled: flag_filled_1.IconFlagFilled, IconFlagOutlined: flag_outlined_1.IconFlagOutlined, IconFolder: folder_1.IconFolder, IconGear: gear_1.IconGear, IconGlasses: glasses_1.IconGlasses, IconGrid: grid_1.IconGrid, IconHeartFilled: heart_filled_1.IconHeartFilled, IconHeartOutlined: heart_outlined_1.IconHeartOutlined, IconImage: image_1.IconImage, IconIntercept: intercept_1.IconIntercept, IconLanguage: language_1.IconLanguage, IconLaptop: laptop_1.IconLaptop, IconLaptopMobilePhone: laptop_mobile_phone_1.IconLaptopMobilePhone, IconLayeredDocumentsX: layered_documents_x_1.IconLayeredDocumentsX, IconLayeredRectangle: layered_rectangle_1.IconLayeredRectangle, IconLayeredSquareLines: layered_square_lines_1.IconLayeredSquareLines, IconLayeredSquares: layered_squares_1.IconLayeredSquares, IconLayeredSquaresPlay: layered_squares_play_1.IconLayeredSquaresPlay, IconLayeredSquaresQuestion: layered_squares_question_1.IconLayeredSquaresQuestion, IconLayeredSquaresThree: layered_squares_three_1.IconLayeredSquaresThree, IconLinesStaggered: lines_staggered_1.IconLinesStaggered, IconLightbulbFilled: lightbulb_filled_1.IconLightbulbFilled, IconLightbulb: lightbulb_1.IconLightbulb, IconLineInRectangle: line_in_rectangle_1.IconLineInRectangle, IconLink: link_1.IconLink, IconLinkOff: link_off_1.IconLinkOff, IconLocationPin: location_pin_1.IconLocationPin, IconLockClosed: lock_closed_1.IconLockClosed, IconLockOpen: lock_open_1.IconLockOpen, IconMagicWand: magic_wand_1.IconMagicWand, IconMagnifyingGlass: magnifying_glass_1.IconMagnifyingGlass, IconMap: map_1.IconMap, IconMedal: medal_1.IconMedal, IconMegaphone: megaphone_1.IconMegaphone, IconMergeArrows: merge_arrows_1.IconMergeArrows, IconMessageCameraVideo: message_camera_video_1.IconMessageCameraVideo, IconMicOff: mic_off_1.IconMicOff, IconMicOn: mic_on_1.IconMicOn, IconMinus: minus_1.IconMinus, IconMirror: mirror_1.IconMirror, IconMobilePhone: mobile_phone_1.IconMobilePhone, IconNodes: nodes_1.IconNodes, IconNoScreen: no_screen_1.IconNoScreen, IconNotebook: notebook_1.IconNotebook, IconPanelFox: panel_fox_1.IconPanelFox, IconPaperBars: paper_bars_1.IconPaperBars, IconPaperImage: paper_image_1.IconPaperImage, IconPaperPlane: paper_plane_1.IconPaperPlane, IconPaperPlay: paper_play_1.IconPaperPlay, IconPaperTable: paper_table_1.IconPaperTable, IconPause: pause_1.IconPause, IconPencilStars: pencil_stars_1.IconPencilStars, IconPenInSquare: pen_in_square_1.IconPenInSquare, IconPenToLine: pen_to_line_1.IconPenToLine, IconPeopleThree: people_three_1.IconPeopleThree, IconPeopleTwo: people_two_1.IconPeopleTwo, IconPersonInCornerBrackets: person_in_corner_brackets_1.IconPersonInCornerBrackets, IconPhoneX: phone_x_1.IconPhoneX, IconPieChart: pie_chart_1.IconPieChart, IconPinFilled: pin_filled_1.IconPinFilled, IconPinOutlined: pin_outlined_1.IconPinOutlined, IconPlayFilled: play_filled_1.IconPlayFilled, IconPlayOutlined: play_outlined_1.IconPlayOutlined, IconPlayInCornerBrackets: play_in_corner_brackets_1.IconPlayInCornerBrackets, IconPlayInRectangle: play_in_rectangle_1.IconPlayInRectangle, IconPlayLine: play_line_1.IconPlayLine, IconPlayTwoForward: play_two_forward_1.IconPlayTwoForward, IconPlayTwoRewind: play_two_rewind_1.IconPlayTwoRewind, IconPlus: plus_1.IconPlus, IconPointerInBrowser: pointer_in_browser_1.IconPointerInBrowser, IconQuote: quote_1.IconQuote, IconRectanglesOffset: rectangles_offset_1.IconRectanglesOffset, IconRocket: rocket_1.IconRocket, IconRotate: rotate_1.IconRotate, IconRotateCounterClockwise: rotate_counterclockwise_1.IconRotateCounterClockwise, IconRotateClockwiseSquare: rotate_clockwise_square_1.IconRotateClockwiseSquare, IconRulerPencil: ruler_pencil_1.IconRulerPencil, IconScale: scale_1.IconScale, IconScalePowerup: scale_powerup_1.IconScalePowerup, IconScissors: scissors_1.IconScissors, IconShoppingCart: shopping_cart_1.IconShoppingCart, IconShufflingArrows: shuffling_arrows_1.IconShufflingArrows, IconSoundWave: sound_wave_1.IconSoundWave, IconSidebar: sidebar_1.IconSidebar, IconSignalArcs: signal_arcs_1.IconSignalArcs, IconSignalArcsExclamation: signal_arcs_exclamation_1.IconSignalArcsExclamation, IconSignalBars: signal_bars_1.IconSignalBars, IconSpeakerOff: speaker_off_1.IconSpeakerOff, IconSpeakerOn: speaker_on_1.IconSpeakerOn, IconSpeechBubble: speech_bubble_1.IconSpeechBubble, IconSpeechBubbleStars: speech_bubble_stars_1.IconSpeechBubbleStars, IconStackStars: stack_stars_1.IconStackStars, IconStarFilled: star_filled_1.IconStarFilled, IconStarOutlined: star_outlined_1.IconStarOutlined, IconStars: stars_1.IconStars, IconStartingScreen: starting_screen_1.IconStartingScreen, IconSuccessScreen: success_screen_1.IconSuccessScreen, IconTagFilled: tag_filled_1.IconTagFilled, IconTagOutlined: tag_outlined_1.IconTagOutlined, IconTagsFilled: tags_filled_1.IconTagsFilled, IconTagsOutlined: tags_outlined_1.IconTagsOutlined, IconTarget: target_1.IconTarget, IconTextPowerup: text_powerup_1.IconTextPowerup, IconThumbDownFilled: thumb_down_filled_1.IconThumbDownFilled, IconThumbDownOutlined: thumb_down_outlined_1.IconThumbDownOutlined, IconThumbUpFilled: thumb_up_filled_1.IconThumbUpFilled, IconThumbUpOutlined: thumb_up_outlined_1.IconThumbUpOutlined, IconTimer: timer_1.IconTimer, IconTrash: trash_1.IconTrash, IconTree: tree_1.IconTree, IconTriangleDouble: triangle_double_1.IconTriangleDouble, IconTriangleDown: triangle_down_1.IconTriangleDown, IconTriangleLeft: triangle_left_1.IconTriangleLeft, IconTriangleRight: triangle_right_1.IconTriangleRight, IconTriangleUp: triangle_up_1.IconTriangleUp, IconTriangleExclamationFilled: triangle_exclamation_filled_1.IconTriangleExclamationFilled, IconTriangleExclamation: triangle_exclamation_1.IconTriangleExclamation, IconTrophy: trophy_1.IconTrophy, IconWand: wand_1.IconWand, IconWavingHandInstructions: waving_hand_instructions_1.IconWavingHandInstructions, IconWavingHandThankYou: waving_hand_thank_you_1.IconWavingHandThankYou, IconX: x_1.IconX });
284
+ var ExpressIcons = __assign(__assign({}, AiIconAliases), { Icon123: _123_1.Icon123, IconAiExplore: ai_explore_1.IconAiExplore, IconAiModerated: ai_moderated_1.IconAiModerated, IconAiPhoto: ai_photo_1.IconAiPhoto, IconAiSummary: ai_summary_1.IconAiSummary, IconAiTag: ai_tag_1.IconAiTag, IconAiVideo: ai_video_1.IconAiVideo, IconArrowClock: arrow_clock_1.IconArrowClock, IconArrowDown: arrow_down_1.IconArrowDown, IconArrowLeft: arrow_left_1.IconArrowLeft, IconArrowRight: arrow_right_1.IconArrowRight, IconArrowUp: arrow_up_1.IconArrowUp, IconArrowDownToBracket: arrow_down_to_bracket_1.IconArrowDownToBracket, IconArrowDownToLine: arrow_down_to_line_1.IconArrowDownToLine, IconArrowListDown: arrow_list_down_1.IconArrowListDown, IconArrowListUp: arrow_list_up_1.IconArrowListUp, IconArrowRightLine: arrow_right_line_1.IconArrowRightLine, IconArrowRightX: arrow_right_x_1.IconArrowRightX, IconArrowUpFromBracket: arrow_up_from_bracket_1.IconArrowUpFromBracket, IconArrowUpFromScreenOff: arrow_up_from_screen_off_1.IconArrowUpFromScreenOff, IconArrowUpFromScreenOn: arrow_up_from_screen_on_1.IconArrowUpFromScreenOn, IconArrowUpRightFromSquare: arrow_up_right_from_square_1.IconArrowUpRightFromSquare, IconArrowUpRightIntoSquare: arrow_up_right_into_square_1.IconArrowUpRightIntoSquare, IconArrowsFlip: arrows_flip_1.IconArrowsFlip, IconArrowsInward: arrows_inward_1.IconArrowsInward, IconArrowsOutward: arrows_outward_1.IconArrowsOutward, IconAsterisk: asterisk_1.IconAsterisk, IconAt: at_1.IconAt, IconBadgeCheck: badge_check_1.IconBadgeCheck, IconBadgeCheckFilled: badge_check_filled_1.IconBadgeCheckFilled, IconBarsFilter: bars_filter_1.IconBarsFilter, IconBarsFiveVertical: bars_five_vertical_1.IconBarsFiveVertical, IconBarsThreeHorizontal: bars_three_horizontal_1.IconBarsThreeHorizontal, IconBellFilled: bell_filled_1.IconBellFilled, IconBellOutlined: bell_outlined_1.IconBellOutlined, IconBlur: blur_1.IconBlur, IconBoltOff: bolt_off_1.IconBoltOff, IconBoltOn: bolt_on_1.IconBoltOn, IconBookmarkFilled: bookmark_filled_1.IconBookmarkFilled, IconBookmarkOutlined: bookmark_outlined_1.IconBookmarkOutlined, IconBoxArchive: box_archive_1.IconBoxArchive, IconBubble: bubble_1.IconBubble, IconBulbStars: bulb_stars_1.IconBulbStars, IconBulletedList: bulleted_list_1.IconBulletedList, IconCalendar: calendar_1.IconCalendar, IconCalendarPlus: calendar_plus_1.IconCalendarPlus, IconCamera: camera_1.IconCamera, IconCameraVideoOff: camera_video_off_1.IconCameraVideoOff, IconCameraVideoOn: camera_video_on_1.IconCameraVideoOn, IconCards: cards_1.IconCards, IconChartCircles: chart_circles_1.IconChartCircles, IconChartHorizontal: chart_horizontal_1.IconChartHorizontal, IconCheckHexagonFilled: check_hexagon_filled_1.IconCheckHexagonFilled, IconCheck: check_1.IconCheck, IconCheckHexagon: check_hexagon_1.IconCheckHexagon, IconCheckpoint: checkpoint_1.IconCheckpoint, IconChevronDown: chevron_down_1.IconChevronDown, IconChevronLeft: chevron_left_1.IconChevronLeft, IconChevronRight: chevron_right_1.IconChevronRight, IconChevronUp: chevron_up_1.IconChevronUp, IconChoicePowerup: choice_powerup_1.IconChoicePowerup, IconCircle: circle_1.IconCircle, IconCircleOutline: circle_outline_filled_1.IconCircleOutline, IconCircleArrowDown: circle_arrow_down_1.IconCircleArrowDown, IconCircleArrowLeft: circle_arrow_left_1.IconCircleArrowLeft, IconCircleArrowRight: circle_arrow_right_1.IconCircleArrowRight, IconCircleArrowUp: circle_arrow_up_1.IconCircleArrowUp, IconCircleCheckFilled: circle_check_filled_1.IconCircleCheckFilled, IconCircleCheckOutlined: circle_check_outlined_1.IconCircleCheckOutlined, IconCircleDollar: circle_dollar_1.IconCircleDollar, IconCircleDollarCheck: circle_dollar_check_1.IconCircleDollarCheck, IconCircleDollarRightArrow: circle_dollar_right_arrow_1.IconCircleDollarRightArrow, IconCircleExclamationFilled: circle_exclamation_filled_1.IconCircleExclamationFilled, IconCircleExclamationOutlined: circle_exclamation_outlined_1.IconCircleExclamationOutlined, IconCircleInCornerBrackets: circle_in_corner_brackets_1.IconCircleInCornerBrackets, IconCircleInfoFilled: circle_info_filled_1.IconCircleInfoFilled, IconCircleInfoOutlined: circle_info_outlined_1.IconCircleInfoOutlined, IconCircleInfoAltFilled: circle_info_alt_filled_1.IconCircleInfoAltFilled, IconCircleInfoAltOutlined: circle_info_alt_outlined_1.IconCircleInfoAltOutlined, IconCircleMinusFilled: circle_minus_filled_1.IconCircleMinusFilled, IconCircleMinusOutlined: circle_minus_outlined_1.IconCircleMinusOutlined, IconCirclePauseFilled: circle_pause_filled_1.IconCirclePauseFilled, IconCirclePauseOutlined: circle_pause_outlined_1.IconCirclePauseOutlined, IconCirclePerson: circle_person_1.IconCirclePerson, IconCirclePlusFilled: circle_plus_filled_1.IconCirclePlusFilled, IconCirclePlusOutlined: circle_plus_outlined_1.IconCirclePlusOutlined, IconCircleQuestionFilled: circle_question_filled_1.IconCircleQuestionFilled, IconCircleQuestionOutlined: circle_question_outlined_1.IconCircleQuestionOutlined, IconCircleSlash: circle_slash_1.IconCircleSlash, IconCircleStar: circle_star_1.IconCircleStar, IconCircleThreeDotsFilled: circle_three_dots_filled_1.IconCircleThreeDotsFilled, IconCircleThreeDotsOutlined: circle_three_dots_outlined_1.IconCircleThreeDotsOutlined, IconCircleXFilled: circle_x_filled_1.IconCircleXFilled, IconCircleXOutlined: circle_x_outlined_1.IconCircleXOutlined, IconCirclesLists: circles_lists_1.IconCirclesLists, IconClickEvent: click_event_1.IconClickEvent, IconClipboardBars: clipboard_bars_1.IconClipboardBars, IconClipboardBarsCheck: clipboard_bars_check_1.IconClipboardBarsCheck, IconClipboardBarsX: clipboard_bars_x_1.IconClipboardBarsX, IconClipboardCheckOff: clipboard_check_off_1.IconClipboardCheckOff, IconClipboardCheckOn: clipboard_check_on_1.IconClipboardCheckOn, IconClipboardMagnifyingGlass: clipboard_magnifying_glass_1.IconClipboardMagnifyingGlass, IconClock: clock_1.IconClock, IconCompass: compass_1.IconCompass, IconCursorLines: cursor_lines_1.IconCursorLines, IconCurvedDownArrow: curved_down_arrow_1.IconCurvedDownArrow, IconCurvedUpArrow: curved_up_arrow_1.IconCurvedUpArrow, IconCurvedArrowInSquare: curved_arrow_in_square_1.IconCurvedArrowInSquare, IconCurvedArrowOverThreeDots: curved_arrow_over_three_dots_1.IconCurvedArrowOverThreeDots, IconDiamondCircle: diamond_circle_1.IconDiamondCircle, IconDiamondCircleCorners: diamond_circle_corners_1.IconDiamondCircleCorners, IconDiamondStar: diamond_star_1.IconDiamondStar, IconDiamondStarOutlined: diamond_star_outlined_1.IconDiamondStarOutlined, IconDiary: diary_1.IconDiary, IconDocumentPlus: document_plus_1.IconDocumentPlus, IconDocumentStars: document_stars_1.IconDocumentStars, IconDocumentX: document_x_1.IconDocumentX, IconDotsSixVertical: dots_six_vertical_1.IconDotsSixVertical, IconDotsThreeHorizontal: dots_three_horizontal_1.IconDotsThreeHorizontal, IconDotsThreeVertical: dots_three_vertical_1.IconDotsThreeVertical, IconDoubleChevronLeft: double_chevron_left_1.IconDoubleChevronLeft, IconDoubleChevronRight: double_chevron_right_1.IconDoubleChevronRight, IconEnvelope: envelope_1.IconEnvelope, IconExpress: express_1.IconExpress, IconEyeOff: eye_off_1.IconEyeOff, IconEyeOn: eye_on_1.IconEyeOn, IconFigma: figma_1.IconFigma, IconFlagFilled: flag_filled_1.IconFlagFilled, IconFlagOutlined: flag_outlined_1.IconFlagOutlined, IconFolder: folder_1.IconFolder, IconGear: gear_1.IconGear, IconGlasses: glasses_1.IconGlasses, IconGrid: grid_1.IconGrid, IconHeartFilled: heart_filled_1.IconHeartFilled, IconHeartOutlined: heart_outlined_1.IconHeartOutlined, IconImage: image_1.IconImage, IconIntercept: intercept_1.IconIntercept, IconLanguage: language_1.IconLanguage, IconLaptop: laptop_1.IconLaptop, IconLaptopMobilePhone: laptop_mobile_phone_1.IconLaptopMobilePhone, IconLayeredDocumentsX: layered_documents_x_1.IconLayeredDocumentsX, IconLayeredRectangle: layered_rectangle_1.IconLayeredRectangle, IconLayeredSquareLines: layered_square_lines_1.IconLayeredSquareLines, IconLayeredSquares: layered_squares_1.IconLayeredSquares, IconLayeredSquaresPlay: layered_squares_play_1.IconLayeredSquaresPlay, IconLayeredSquaresQuestion: layered_squares_question_1.IconLayeredSquaresQuestion, IconLayeredSquaresThree: layered_squares_three_1.IconLayeredSquaresThree, IconLinesStaggered: lines_staggered_1.IconLinesStaggered, IconLightbulbFilled: lightbulb_filled_1.IconLightbulbFilled, IconLightbulb: lightbulb_1.IconLightbulb, IconLineInRectangle: line_in_rectangle_1.IconLineInRectangle, IconLink: link_1.IconLink, IconLinkOff: link_off_1.IconLinkOff, IconLocationPin: location_pin_1.IconLocationPin, IconLockClosed: lock_closed_1.IconLockClosed, IconLockOpen: lock_open_1.IconLockOpen, IconMagicWand: magic_wand_1.IconMagicWand, IconMagnifyingGlass: magnifying_glass_1.IconMagnifyingGlass, IconMap: map_1.IconMap, IconMedal: medal_1.IconMedal, IconMegaphone: megaphone_1.IconMegaphone, IconMergeArrows: merge_arrows_1.IconMergeArrows, IconMessageCameraVideo: message_camera_video_1.IconMessageCameraVideo, IconMicOff: mic_off_1.IconMicOff, IconMicOn: mic_on_1.IconMicOn, IconMinus: minus_1.IconMinus, IconMirror: mirror_1.IconMirror, IconMobilePhone: mobile_phone_1.IconMobilePhone, IconNodes: nodes_1.IconNodes, IconNoScreen: no_screen_1.IconNoScreen, IconNotebook: notebook_1.IconNotebook, IconPanelFox: panel_fox_1.IconPanelFox, IconPaperBars: paper_bars_1.IconPaperBars, IconPaperImage: paper_image_1.IconPaperImage, IconPaperPlane: paper_plane_1.IconPaperPlane, IconPaperPlay: paper_play_1.IconPaperPlay, IconPaperTable: paper_table_1.IconPaperTable, IconPause: pause_1.IconPause, IconPencilStars: pencil_stars_1.IconPencilStars, IconPenInSquare: pen_in_square_1.IconPenInSquare, IconPenToLine: pen_to_line_1.IconPenToLine, IconPeopleThree: people_three_1.IconPeopleThree, IconPeopleTwo: people_two_1.IconPeopleTwo, IconPersonInCornerBrackets: person_in_corner_brackets_1.IconPersonInCornerBrackets, IconPhoneX: phone_x_1.IconPhoneX, IconPieChart: pie_chart_1.IconPieChart, IconPinFilled: pin_filled_1.IconPinFilled, IconPinOutlined: pin_outlined_1.IconPinOutlined, IconPlayFilled: play_filled_1.IconPlayFilled, IconPlayOutlined: play_outlined_1.IconPlayOutlined, IconPlayInCornerBrackets: play_in_corner_brackets_1.IconPlayInCornerBrackets, IconPlayInRectangle: play_in_rectangle_1.IconPlayInRectangle, IconPlayLine: play_line_1.IconPlayLine, IconPlayTwoForward: play_two_forward_1.IconPlayTwoForward, IconPlayTwoRewind: play_two_rewind_1.IconPlayTwoRewind, IconPlus: plus_1.IconPlus, IconPointerInBrowser: pointer_in_browser_1.IconPointerInBrowser, IconQuote: quote_1.IconQuote, IconRectanglesOffset: rectangles_offset_1.IconRectanglesOffset, IconRocket: rocket_1.IconRocket, IconRotate: rotate_1.IconRotate, IconRotateCounterClockwise: rotate_counterclockwise_1.IconRotateCounterClockwise, IconRotateClockwiseSquare: rotate_clockwise_square_1.IconRotateClockwiseSquare, IconRulerPencil: ruler_pencil_1.IconRulerPencil, IconScale: scale_1.IconScale, IconScalePowerup: scale_powerup_1.IconScalePowerup, IconScissors: scissors_1.IconScissors, IconShoppingCart: shopping_cart_1.IconShoppingCart, IconShufflingArrows: shuffling_arrows_1.IconShufflingArrows, IconSoundWave: sound_wave_1.IconSoundWave, IconSidebar: sidebar_1.IconSidebar, IconSignalArcs: signal_arcs_1.IconSignalArcs, IconSignalArcsExclamation: signal_arcs_exclamation_1.IconSignalArcsExclamation, IconSignalBars: signal_bars_1.IconSignalBars, IconSpeakerOff: speaker_off_1.IconSpeakerOff, IconSpeakerOn: speaker_on_1.IconSpeakerOn, IconSpeechBubble: speech_bubble_1.IconSpeechBubble, IconSpeechBubbleStars: speech_bubble_stars_1.IconSpeechBubbleStars, IconStackStars: stack_stars_1.IconStackStars, IconStarFilled: star_filled_1.IconStarFilled, IconStarOutlined: star_outlined_1.IconStarOutlined, IconStars: stars_1.IconStars, IconStartingScreen: starting_screen_1.IconStartingScreen, IconSuccessScreen: success_screen_1.IconSuccessScreen, IconTagFilled: tag_filled_1.IconTagFilled, IconTagOutlined: tag_outlined_1.IconTagOutlined, IconTagsFilled: tags_filled_1.IconTagsFilled, IconTagsOutlined: tags_outlined_1.IconTagsOutlined, IconTarget: target_1.IconTarget, IconTextPowerup: text_powerup_1.IconTextPowerup, IconThumbDownFilled: thumb_down_filled_1.IconThumbDownFilled, IconThumbDownOutlined: thumb_down_outlined_1.IconThumbDownOutlined, IconThumbUpFilled: thumb_up_filled_1.IconThumbUpFilled, IconThumbUpOutlined: thumb_up_outlined_1.IconThumbUpOutlined, IconTimer: timer_1.IconTimer, IconTrash: trash_1.IconTrash, IconTree: tree_1.IconTree, IconTriangleDouble: triangle_double_1.IconTriangleDouble, IconTriangleDown: triangle_down_1.IconTriangleDown, IconTriangleLeft: triangle_left_1.IconTriangleLeft, IconTriangleRight: triangle_right_1.IconTriangleRight, IconTriangleUp: triangle_up_1.IconTriangleUp, IconTriangleExclamationFilled: triangle_exclamation_filled_1.IconTriangleExclamationFilled, IconTriangleExclamation: triangle_exclamation_1.IconTriangleExclamation, IconTrophy: trophy_1.IconTrophy, IconWand: wand_1.IconWand, IconWavingHandInstructions: waving_hand_instructions_1.IconWavingHandInstructions, IconWavingHandThankYou: waving_hand_thank_you_1.IconWavingHandThankYou, IconX: x_1.IconX });
283
285
  exports.ExpressIcons = ExpressIcons;
284
286
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/icons/express/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/icons/express/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { type IconProps } from './core';
3
+ interface IconDoubleChevronLeftProps extends IconProps {
4
+ base?: '16' | '24';
5
+ }
6
+ export declare function IconDoubleChevronLeft({ base, ...props }: IconDoubleChevronLeftProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,37 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React from 'react';
24
+ import { IconSVG } from './core';
25
+ var BASE_MAP = {
26
+ 16: (React.createElement(React.Fragment, null,
27
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M13.593 2.195 7.788 8l5.804 5.805.943-.943L9.673 8l4.862-4.862z", clipRule: "evenodd" }),
28
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M7.176 2.195 1.37 8l5.805 5.805.943-.943L3.257 8l4.862-4.862z", clipRule: "evenodd" }))),
29
+ 24: (React.createElement(React.Fragment, null,
30
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M20.389 3.293 11.682 12l8.707 8.707 1.414-1.414L14.51 12l7.293-7.293z", clipRule: "evenodd" }),
31
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M10.764 3.293 2.056 12l8.708 8.707 1.414-1.414L4.885 12l7.293-7.293z", clipRule: "evenodd" })))
32
+ };
33
+ export function IconDoubleChevronLeft(_a) {
34
+ var _b = _a.base, base = _b === void 0 ? '16' : _b, props = __rest(_a, ["base"]);
35
+ return (React.createElement(IconSVG, __assign({}, props, { viewBox: "0 0 ".concat(base, " ").concat(base) }), BASE_MAP[base] || null));
36
+ }
37
+ //# sourceMappingURL=double_chevron_left.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"double_chevron_left.js","sourceRoot":"","sources":["../../../../src/icons/express/double_chevron_left.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAkB,OAAO,EAAE,MAAM,QAAQ,CAAC;AAMjD,IAAM,QAAQ,GAAG;IACf,EAAE,EAAE,CACF;QACE,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,iEAAiE,EACnE,QAAQ,EAAC,SAAS,GAClB;QACF,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,+DAA+D,EACjE,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;IACD,EAAE,EAAE,CACF;QACE,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,uEAAuE,EACzE,QAAQ,EAAC,SAAS,GAClB;QACF,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,sEAAsE,EACxE,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;CACF,CAAC;AAEF,MAAM,UAAU,qBAAqB,CAAC,EAGT;IAF3B,IAAA,YAAW,EAAX,IAAI,mBAAG,IAAI,KAAA,EACR,KAAK,cAF4B,QAGrC,CADS;IAER,OAAO,CACL,oBAAC,OAAO,eAAK,KAAK,IAAE,OAAO,EAAE,cAAO,IAAI,cAAI,IAAI,CAAE,KAC/C,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CACf,CACX,CAAC;AACJ,CAAC"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { type IconProps } from './core';
3
+ interface IconDoubleChevronRightProps extends IconProps {
4
+ base?: '16' | '24';
5
+ }
6
+ export declare function IconDoubleChevronRight({ base, ...props }: IconDoubleChevronRightProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,37 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React from 'react';
24
+ import { IconSVG } from './core';
25
+ var BASE_MAP = {
26
+ 16: (React.createElement(React.Fragment, null,
27
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M2.408 2.195 8.212 8l-5.804 5.805-.943-.943L6.327 8 1.465 3.138z", clipRule: "evenodd" }),
28
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M8.824 2.195 14.63 8l-5.805 5.805-.943-.943L12.743 8 7.881 3.138z", clipRule: "evenodd" }))),
29
+ 24: (React.createElement(React.Fragment, null,
30
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M3.611 3.293 12.318 12l-8.707 8.707-1.414-1.414L9.49 12 2.197 4.707z", clipRule: "evenodd" }),
31
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M13.236 3.293 21.944 12l-8.708 8.707-1.414-1.414L19.115 12l-7.293-7.293z", clipRule: "evenodd" })))
32
+ };
33
+ export function IconDoubleChevronRight(_a) {
34
+ var _b = _a.base, base = _b === void 0 ? '16' : _b, props = __rest(_a, ["base"]);
35
+ return (React.createElement(IconSVG, __assign({}, props, { viewBox: "0 0 ".concat(base, " ").concat(base) }), BASE_MAP[base] || null));
36
+ }
37
+ //# sourceMappingURL=double_chevron_right.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"double_chevron_right.js","sourceRoot":"","sources":["../../../../src/icons/express/double_chevron_right.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAkB,OAAO,EAAE,MAAM,QAAQ,CAAC;AAMjD,IAAM,QAAQ,GAAG;IACf,EAAE,EAAE,CACF;QACE,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,kEAAkE,EACpE,QAAQ,EAAC,SAAS,GAClB;QACF,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,mEAAmE,EACrE,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;IACD,EAAE,EAAE,CACF;QACE,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,sEAAsE,EACxE,QAAQ,EAAC,SAAS,GAClB;QACF,8BACE,IAAI,EAAC,cAAc,EACnB,QAAQ,EAAC,SAAS,EAClB,CAAC,EAAC,0EAA0E,EAC5E,QAAQ,EAAC,SAAS,GAClB,CACD,CACJ;CACF,CAAC;AAEF,MAAM,UAAU,sBAAsB,CAAC,EAGT;IAF5B,IAAA,YAAW,EAAX,IAAI,mBAAG,IAAI,KAAA,EACR,KAAK,cAF6B,QAGtC,CADS;IAER,OAAO,CACL,oBAAC,OAAO,eAAK,KAAK,IAAE,OAAO,EAAE,cAAO,IAAI,cAAI,IAAI,CAAE,KAC/C,QAAQ,CAAC,IAAI,CAAC,IAAI,IAAI,CACf,CACX,CAAC;AACJ,CAAC"}
@@ -119,6 +119,8 @@ import { IconDocumentX } from './document_x';
119
119
  import { IconDotsSixVertical } from './dots_six_vertical';
120
120
  import { IconDotsThreeHorizontal } from './dots_three_horizontal';
121
121
  import { IconDotsThreeVertical } from './dots_three_vertical';
122
+ import { IconDoubleChevronLeft } from './double_chevron_left';
123
+ import { IconDoubleChevronRight } from './double_chevron_right';
122
124
  import { IconEnvelope } from './envelope';
123
125
  import { IconExpress } from './express';
124
126
  import { IconEyeOff } from './eye_off';
@@ -367,6 +369,8 @@ declare const ExpressIcons: {
367
369
  IconDotsSixVertical: typeof IconDotsSixVertical;
368
370
  IconDotsThreeHorizontal: typeof IconDotsThreeHorizontal;
369
371
  IconDotsThreeVertical: typeof IconDotsThreeVertical;
372
+ IconDoubleChevronLeft: typeof IconDoubleChevronLeft;
373
+ IconDoubleChevronRight: typeof IconDoubleChevronRight;
370
374
  IconEnvelope: typeof IconEnvelope;
371
375
  IconExpress: typeof IconExpress;
372
376
  IconEyeOff: typeof IconEyeOff;
@@ -132,6 +132,8 @@ import { IconDocumentX } from './document_x';
132
132
  import { IconDotsSixVertical } from './dots_six_vertical';
133
133
  import { IconDotsThreeHorizontal } from './dots_three_horizontal';
134
134
  import { IconDotsThreeVertical } from './dots_three_vertical';
135
+ import { IconDoubleChevronLeft } from './double_chevron_left';
136
+ import { IconDoubleChevronRight } from './double_chevron_right';
135
137
  import { IconEnvelope } from './envelope';
136
138
  import { IconExpress } from './express';
137
139
  import { IconEyeOff } from './eye_off';
@@ -274,6 +276,6 @@ var AiIconAliases = {
274
276
  // These are exported as an object with named exports for each icon, so they can be used in code
275
277
  // like `<ExpressIcons.Icon123 />` or `<ExpressIcons.IconArrowDown />`. This is intentional to help
276
278
  // differentiate between Express icons and other icon set in Particle that is legacy and only intended for Diary.
277
- var ExpressIcons = __assign(__assign({}, AiIconAliases), { Icon123: Icon123, IconAiExplore: IconAiExplore, IconAiModerated: IconAiModerated, IconAiPhoto: IconAiPhoto, IconAiSummary: IconAiSummary, IconAiTag: IconAiTag, IconAiVideo: IconAiVideo, IconArrowClock: IconArrowClock, IconArrowDown: IconArrowDown, IconArrowLeft: IconArrowLeft, IconArrowRight: IconArrowRight, IconArrowUp: IconArrowUp, IconArrowDownToBracket: IconArrowDownToBracket, IconArrowDownToLine: IconArrowDownToLine, IconArrowListDown: IconArrowListDown, IconArrowListUp: IconArrowListUp, IconArrowRightLine: IconArrowRightLine, IconArrowRightX: IconArrowRightX, IconArrowUpFromBracket: IconArrowUpFromBracket, IconArrowUpFromScreenOff: IconArrowUpFromScreenOff, IconArrowUpFromScreenOn: IconArrowUpFromScreenOn, IconArrowUpRightFromSquare: IconArrowUpRightFromSquare, IconArrowUpRightIntoSquare: IconArrowUpRightIntoSquare, IconArrowsFlip: IconArrowsFlip, IconArrowsInward: IconArrowsInward, IconArrowsOutward: IconArrowsOutward, IconAsterisk: IconAsterisk, IconAt: IconAt, IconBadgeCheck: IconBadgeCheck, IconBadgeCheckFilled: IconBadgeCheckFilled, IconBarsFilter: IconBarsFilter, IconBarsFiveVertical: IconBarsFiveVertical, IconBarsThreeHorizontal: IconBarsThreeHorizontal, IconBellFilled: IconBellFilled, IconBellOutlined: IconBellOutlined, IconBlur: IconBlur, IconBoltOff: IconBoltOff, IconBoltOn: IconBoltOn, IconBookmarkFilled: IconBookmarkFilled, IconBookmarkOutlined: IconBookmarkOutlined, IconBoxArchive: IconBoxArchive, IconBubble: IconBubble, IconBulbStars: IconBulbStars, IconBulletedList: IconBulletedList, IconCalendar: IconCalendar, IconCalendarPlus: IconCalendarPlus, IconCamera: IconCamera, IconCameraVideoOff: IconCameraVideoOff, IconCameraVideoOn: IconCameraVideoOn, IconCards: IconCards, IconChartCircles: IconChartCircles, IconChartHorizontal: IconChartHorizontal, IconCheckHexagonFilled: IconCheckHexagonFilled, IconCheck: IconCheck, IconCheckHexagon: IconCheckHexagon, IconCheckpoint: IconCheckpoint, IconChevronDown: IconChevronDown, IconChevronLeft: IconChevronLeft, IconChevronRight: IconChevronRight, IconChevronUp: IconChevronUp, IconChoicePowerup: IconChoicePowerup, IconCircle: IconCircle, IconCircleOutline: IconCircleOutline, IconCircleArrowDown: IconCircleArrowDown, IconCircleArrowLeft: IconCircleArrowLeft, IconCircleArrowRight: IconCircleArrowRight, IconCircleArrowUp: IconCircleArrowUp, IconCircleCheckFilled: IconCircleCheckFilled, IconCircleCheckOutlined: IconCircleCheckOutlined, IconCircleDollar: IconCircleDollar, IconCircleDollarCheck: IconCircleDollarCheck, IconCircleDollarRightArrow: IconCircleDollarRightArrow, IconCircleExclamationFilled: IconCircleExclamationFilled, IconCircleExclamationOutlined: IconCircleExclamationOutlined, IconCircleInCornerBrackets: IconCircleInCornerBrackets, IconCircleInfoFilled: IconCircleInfoFilled, IconCircleInfoOutlined: IconCircleInfoOutlined, IconCircleInfoAltFilled: IconCircleInfoAltFilled, IconCircleInfoAltOutlined: IconCircleInfoAltOutlined, IconCircleMinusFilled: IconCircleMinusFilled, IconCircleMinusOutlined: IconCircleMinusOutlined, IconCirclePauseFilled: IconCirclePauseFilled, IconCirclePauseOutlined: IconCirclePauseOutlined, IconCirclePerson: IconCirclePerson, IconCirclePlusFilled: IconCirclePlusFilled, IconCirclePlusOutlined: IconCirclePlusOutlined, IconCircleQuestionFilled: IconCircleQuestionFilled, IconCircleQuestionOutlined: IconCircleQuestionOutlined, IconCircleSlash: IconCircleSlash, IconCircleStar: IconCircleStar, IconCircleThreeDotsFilled: IconCircleThreeDotsFilled, IconCircleThreeDotsOutlined: IconCircleThreeDotsOutlined, IconCircleXFilled: IconCircleXFilled, IconCircleXOutlined: IconCircleXOutlined, IconCirclesLists: IconCirclesLists, IconClickEvent: IconClickEvent, IconClipboardBars: IconClipboardBars, IconClipboardBarsCheck: IconClipboardBarsCheck, IconClipboardBarsX: IconClipboardBarsX, IconClipboardCheckOff: IconClipboardCheckOff, IconClipboardCheckOn: IconClipboardCheckOn, IconClipboardMagnifyingGlass: IconClipboardMagnifyingGlass, IconClock: IconClock, IconCompass: IconCompass, IconCursorLines: IconCursorLines, IconCurvedDownArrow: IconCurvedDownArrow, IconCurvedUpArrow: IconCurvedUpArrow, IconCurvedArrowInSquare: IconCurvedArrowInSquare, IconCurvedArrowOverThreeDots: IconCurvedArrowOverThreeDots, IconDiamondCircle: IconDiamondCircle, IconDiamondCircleCorners: IconDiamondCircleCorners, IconDiamondStar: IconDiamondStar, IconDiamondStarOutlined: IconDiamondStarOutlined, IconDiary: IconDiary, IconDocumentPlus: IconDocumentPlus, IconDocumentStars: IconDocumentStars, IconDocumentX: IconDocumentX, IconDotsSixVertical: IconDotsSixVertical, IconDotsThreeHorizontal: IconDotsThreeHorizontal, IconDotsThreeVertical: IconDotsThreeVertical, IconEnvelope: IconEnvelope, IconExpress: IconExpress, IconEyeOff: IconEyeOff, IconEyeOn: IconEyeOn, IconFigma: IconFigma, IconFlagFilled: IconFlagFilled, IconFlagOutlined: IconFlagOutlined, IconFolder: IconFolder, IconGear: IconGear, IconGlasses: IconGlasses, IconGrid: IconGrid, IconHeartFilled: IconHeartFilled, IconHeartOutlined: IconHeartOutlined, IconImage: IconImage, IconIntercept: IconIntercept, IconLanguage: IconLanguage, IconLaptop: IconLaptop, IconLaptopMobilePhone: IconLaptopMobilePhone, IconLayeredDocumentsX: IconLayeredDocumentsX, IconLayeredRectangle: IconLayeredRectangle, IconLayeredSquareLines: IconLayeredSquareLines, IconLayeredSquares: IconLayeredSquares, IconLayeredSquaresPlay: IconLayeredSquaresPlay, IconLayeredSquaresQuestion: IconLayeredSquaresQuestion, IconLayeredSquaresThree: IconLayeredSquaresThree, IconLinesStaggered: IconLinesStaggered, IconLightbulbFilled: IconLightbulbFilled, IconLightbulb: IconLightbulb, IconLineInRectangle: IconLineInRectangle, IconLink: IconLink, IconLinkOff: IconLinkOff, IconLocationPin: IconLocationPin, IconLockClosed: IconLockClosed, IconLockOpen: IconLockOpen, IconMagicWand: IconMagicWand, IconMagnifyingGlass: IconMagnifyingGlass, IconMap: IconMap, IconMedal: IconMedal, IconMegaphone: IconMegaphone, IconMergeArrows: IconMergeArrows, IconMessageCameraVideo: IconMessageCameraVideo, IconMicOff: IconMicOff, IconMicOn: IconMicOn, IconMinus: IconMinus, IconMirror: IconMirror, IconMobilePhone: IconMobilePhone, IconNodes: IconNodes, IconNoScreen: IconNoScreen, IconNotebook: IconNotebook, IconPanelFox: IconPanelFox, IconPaperBars: IconPaperBars, IconPaperImage: IconPaperImage, IconPaperPlane: IconPaperPlane, IconPaperPlay: IconPaperPlay, IconPaperTable: IconPaperTable, IconPause: IconPause, IconPencilStars: IconPencilStars, IconPenInSquare: IconPenInSquare, IconPenToLine: IconPenToLine, IconPeopleThree: IconPeopleThree, IconPeopleTwo: IconPeopleTwo, IconPersonInCornerBrackets: IconPersonInCornerBrackets, IconPhoneX: IconPhoneX, IconPieChart: IconPieChart, IconPinFilled: IconPinFilled, IconPinOutlined: IconPinOutlined, IconPlayFilled: IconPlayFilled, IconPlayOutlined: IconPlayOutlined, IconPlayInCornerBrackets: IconPlayInCornerBrackets, IconPlayInRectangle: IconPlayInRectangle, IconPlayLine: IconPlayLine, IconPlayTwoForward: IconPlayTwoForward, IconPlayTwoRewind: IconPlayTwoRewind, IconPlus: IconPlus, IconPointerInBrowser: IconPointerInBrowser, IconQuote: IconQuote, IconRectanglesOffset: IconRectanglesOffset, IconRocket: IconRocket, IconRotate: IconRotate, IconRotateCounterClockwise: IconRotateCounterClockwise, IconRotateClockwiseSquare: IconRotateClockwiseSquare, IconRulerPencil: IconRulerPencil, IconScale: IconScale, IconScalePowerup: IconScalePowerup, IconScissors: IconScissors, IconShoppingCart: IconShoppingCart, IconShufflingArrows: IconShufflingArrows, IconSoundWave: IconSoundWave, IconSidebar: IconSidebar, IconSignalArcs: IconSignalArcs, IconSignalArcsExclamation: IconSignalArcsExclamation, IconSignalBars: IconSignalBars, IconSpeakerOff: IconSpeakerOff, IconSpeakerOn: IconSpeakerOn, IconSpeechBubble: IconSpeechBubble, IconSpeechBubbleStars: IconSpeechBubbleStars, IconStackStars: IconStackStars, IconStarFilled: IconStarFilled, IconStarOutlined: IconStarOutlined, IconStars: IconStars, IconStartingScreen: IconStartingScreen, IconSuccessScreen: IconSuccessScreen, IconTagFilled: IconTagFilled, IconTagOutlined: IconTagOutlined, IconTagsFilled: IconTagsFilled, IconTagsOutlined: IconTagsOutlined, IconTarget: IconTarget, IconTextPowerup: IconTextPowerup, IconThumbDownFilled: IconThumbDownFilled, IconThumbDownOutlined: IconThumbDownOutlined, IconThumbUpFilled: IconThumbUpFilled, IconThumbUpOutlined: IconThumbUpOutlined, IconTimer: IconTimer, IconTrash: IconTrash, IconTree: IconTree, IconTriangleDouble: IconTriangleDouble, IconTriangleDown: IconTriangleDown, IconTriangleLeft: IconTriangleLeft, IconTriangleRight: IconTriangleRight, IconTriangleUp: IconTriangleUp, IconTriangleExclamationFilled: IconTriangleExclamationFilled, IconTriangleExclamation: IconTriangleExclamation, IconTrophy: IconTrophy, IconWand: IconWand, IconWavingHandInstructions: IconWavingHandInstructions, IconWavingHandThankYou: IconWavingHandThankYou, IconX: IconX });
279
+ var ExpressIcons = __assign(__assign({}, AiIconAliases), { Icon123: Icon123, IconAiExplore: IconAiExplore, IconAiModerated: IconAiModerated, IconAiPhoto: IconAiPhoto, IconAiSummary: IconAiSummary, IconAiTag: IconAiTag, IconAiVideo: IconAiVideo, IconArrowClock: IconArrowClock, IconArrowDown: IconArrowDown, IconArrowLeft: IconArrowLeft, IconArrowRight: IconArrowRight, IconArrowUp: IconArrowUp, IconArrowDownToBracket: IconArrowDownToBracket, IconArrowDownToLine: IconArrowDownToLine, IconArrowListDown: IconArrowListDown, IconArrowListUp: IconArrowListUp, IconArrowRightLine: IconArrowRightLine, IconArrowRightX: IconArrowRightX, IconArrowUpFromBracket: IconArrowUpFromBracket, IconArrowUpFromScreenOff: IconArrowUpFromScreenOff, IconArrowUpFromScreenOn: IconArrowUpFromScreenOn, IconArrowUpRightFromSquare: IconArrowUpRightFromSquare, IconArrowUpRightIntoSquare: IconArrowUpRightIntoSquare, IconArrowsFlip: IconArrowsFlip, IconArrowsInward: IconArrowsInward, IconArrowsOutward: IconArrowsOutward, IconAsterisk: IconAsterisk, IconAt: IconAt, IconBadgeCheck: IconBadgeCheck, IconBadgeCheckFilled: IconBadgeCheckFilled, IconBarsFilter: IconBarsFilter, IconBarsFiveVertical: IconBarsFiveVertical, IconBarsThreeHorizontal: IconBarsThreeHorizontal, IconBellFilled: IconBellFilled, IconBellOutlined: IconBellOutlined, IconBlur: IconBlur, IconBoltOff: IconBoltOff, IconBoltOn: IconBoltOn, IconBookmarkFilled: IconBookmarkFilled, IconBookmarkOutlined: IconBookmarkOutlined, IconBoxArchive: IconBoxArchive, IconBubble: IconBubble, IconBulbStars: IconBulbStars, IconBulletedList: IconBulletedList, IconCalendar: IconCalendar, IconCalendarPlus: IconCalendarPlus, IconCamera: IconCamera, IconCameraVideoOff: IconCameraVideoOff, IconCameraVideoOn: IconCameraVideoOn, IconCards: IconCards, IconChartCircles: IconChartCircles, IconChartHorizontal: IconChartHorizontal, IconCheckHexagonFilled: IconCheckHexagonFilled, IconCheck: IconCheck, IconCheckHexagon: IconCheckHexagon, IconCheckpoint: IconCheckpoint, IconChevronDown: IconChevronDown, IconChevronLeft: IconChevronLeft, IconChevronRight: IconChevronRight, IconChevronUp: IconChevronUp, IconChoicePowerup: IconChoicePowerup, IconCircle: IconCircle, IconCircleOutline: IconCircleOutline, IconCircleArrowDown: IconCircleArrowDown, IconCircleArrowLeft: IconCircleArrowLeft, IconCircleArrowRight: IconCircleArrowRight, IconCircleArrowUp: IconCircleArrowUp, IconCircleCheckFilled: IconCircleCheckFilled, IconCircleCheckOutlined: IconCircleCheckOutlined, IconCircleDollar: IconCircleDollar, IconCircleDollarCheck: IconCircleDollarCheck, IconCircleDollarRightArrow: IconCircleDollarRightArrow, IconCircleExclamationFilled: IconCircleExclamationFilled, IconCircleExclamationOutlined: IconCircleExclamationOutlined, IconCircleInCornerBrackets: IconCircleInCornerBrackets, IconCircleInfoFilled: IconCircleInfoFilled, IconCircleInfoOutlined: IconCircleInfoOutlined, IconCircleInfoAltFilled: IconCircleInfoAltFilled, IconCircleInfoAltOutlined: IconCircleInfoAltOutlined, IconCircleMinusFilled: IconCircleMinusFilled, IconCircleMinusOutlined: IconCircleMinusOutlined, IconCirclePauseFilled: IconCirclePauseFilled, IconCirclePauseOutlined: IconCirclePauseOutlined, IconCirclePerson: IconCirclePerson, IconCirclePlusFilled: IconCirclePlusFilled, IconCirclePlusOutlined: IconCirclePlusOutlined, IconCircleQuestionFilled: IconCircleQuestionFilled, IconCircleQuestionOutlined: IconCircleQuestionOutlined, IconCircleSlash: IconCircleSlash, IconCircleStar: IconCircleStar, IconCircleThreeDotsFilled: IconCircleThreeDotsFilled, IconCircleThreeDotsOutlined: IconCircleThreeDotsOutlined, IconCircleXFilled: IconCircleXFilled, IconCircleXOutlined: IconCircleXOutlined, IconCirclesLists: IconCirclesLists, IconClickEvent: IconClickEvent, IconClipboardBars: IconClipboardBars, IconClipboardBarsCheck: IconClipboardBarsCheck, IconClipboardBarsX: IconClipboardBarsX, IconClipboardCheckOff: IconClipboardCheckOff, IconClipboardCheckOn: IconClipboardCheckOn, IconClipboardMagnifyingGlass: IconClipboardMagnifyingGlass, IconClock: IconClock, IconCompass: IconCompass, IconCursorLines: IconCursorLines, IconCurvedDownArrow: IconCurvedDownArrow, IconCurvedUpArrow: IconCurvedUpArrow, IconCurvedArrowInSquare: IconCurvedArrowInSquare, IconCurvedArrowOverThreeDots: IconCurvedArrowOverThreeDots, IconDiamondCircle: IconDiamondCircle, IconDiamondCircleCorners: IconDiamondCircleCorners, IconDiamondStar: IconDiamondStar, IconDiamondStarOutlined: IconDiamondStarOutlined, IconDiary: IconDiary, IconDocumentPlus: IconDocumentPlus, IconDocumentStars: IconDocumentStars, IconDocumentX: IconDocumentX, IconDotsSixVertical: IconDotsSixVertical, IconDotsThreeHorizontal: IconDotsThreeHorizontal, IconDotsThreeVertical: IconDotsThreeVertical, IconDoubleChevronLeft: IconDoubleChevronLeft, IconDoubleChevronRight: IconDoubleChevronRight, IconEnvelope: IconEnvelope, IconExpress: IconExpress, IconEyeOff: IconEyeOff, IconEyeOn: IconEyeOn, IconFigma: IconFigma, IconFlagFilled: IconFlagFilled, IconFlagOutlined: IconFlagOutlined, IconFolder: IconFolder, IconGear: IconGear, IconGlasses: IconGlasses, IconGrid: IconGrid, IconHeartFilled: IconHeartFilled, IconHeartOutlined: IconHeartOutlined, IconImage: IconImage, IconIntercept: IconIntercept, IconLanguage: IconLanguage, IconLaptop: IconLaptop, IconLaptopMobilePhone: IconLaptopMobilePhone, IconLayeredDocumentsX: IconLayeredDocumentsX, IconLayeredRectangle: IconLayeredRectangle, IconLayeredSquareLines: IconLayeredSquareLines, IconLayeredSquares: IconLayeredSquares, IconLayeredSquaresPlay: IconLayeredSquaresPlay, IconLayeredSquaresQuestion: IconLayeredSquaresQuestion, IconLayeredSquaresThree: IconLayeredSquaresThree, IconLinesStaggered: IconLinesStaggered, IconLightbulbFilled: IconLightbulbFilled, IconLightbulb: IconLightbulb, IconLineInRectangle: IconLineInRectangle, IconLink: IconLink, IconLinkOff: IconLinkOff, IconLocationPin: IconLocationPin, IconLockClosed: IconLockClosed, IconLockOpen: IconLockOpen, IconMagicWand: IconMagicWand, IconMagnifyingGlass: IconMagnifyingGlass, IconMap: IconMap, IconMedal: IconMedal, IconMegaphone: IconMegaphone, IconMergeArrows: IconMergeArrows, IconMessageCameraVideo: IconMessageCameraVideo, IconMicOff: IconMicOff, IconMicOn: IconMicOn, IconMinus: IconMinus, IconMirror: IconMirror, IconMobilePhone: IconMobilePhone, IconNodes: IconNodes, IconNoScreen: IconNoScreen, IconNotebook: IconNotebook, IconPanelFox: IconPanelFox, IconPaperBars: IconPaperBars, IconPaperImage: IconPaperImage, IconPaperPlane: IconPaperPlane, IconPaperPlay: IconPaperPlay, IconPaperTable: IconPaperTable, IconPause: IconPause, IconPencilStars: IconPencilStars, IconPenInSquare: IconPenInSquare, IconPenToLine: IconPenToLine, IconPeopleThree: IconPeopleThree, IconPeopleTwo: IconPeopleTwo, IconPersonInCornerBrackets: IconPersonInCornerBrackets, IconPhoneX: IconPhoneX, IconPieChart: IconPieChart, IconPinFilled: IconPinFilled, IconPinOutlined: IconPinOutlined, IconPlayFilled: IconPlayFilled, IconPlayOutlined: IconPlayOutlined, IconPlayInCornerBrackets: IconPlayInCornerBrackets, IconPlayInRectangle: IconPlayInRectangle, IconPlayLine: IconPlayLine, IconPlayTwoForward: IconPlayTwoForward, IconPlayTwoRewind: IconPlayTwoRewind, IconPlus: IconPlus, IconPointerInBrowser: IconPointerInBrowser, IconQuote: IconQuote, IconRectanglesOffset: IconRectanglesOffset, IconRocket: IconRocket, IconRotate: IconRotate, IconRotateCounterClockwise: IconRotateCounterClockwise, IconRotateClockwiseSquare: IconRotateClockwiseSquare, IconRulerPencil: IconRulerPencil, IconScale: IconScale, IconScalePowerup: IconScalePowerup, IconScissors: IconScissors, IconShoppingCart: IconShoppingCart, IconShufflingArrows: IconShufflingArrows, IconSoundWave: IconSoundWave, IconSidebar: IconSidebar, IconSignalArcs: IconSignalArcs, IconSignalArcsExclamation: IconSignalArcsExclamation, IconSignalBars: IconSignalBars, IconSpeakerOff: IconSpeakerOff, IconSpeakerOn: IconSpeakerOn, IconSpeechBubble: IconSpeechBubble, IconSpeechBubbleStars: IconSpeechBubbleStars, IconStackStars: IconStackStars, IconStarFilled: IconStarFilled, IconStarOutlined: IconStarOutlined, IconStars: IconStars, IconStartingScreen: IconStartingScreen, IconSuccessScreen: IconSuccessScreen, IconTagFilled: IconTagFilled, IconTagOutlined: IconTagOutlined, IconTagsFilled: IconTagsFilled, IconTagsOutlined: IconTagsOutlined, IconTarget: IconTarget, IconTextPowerup: IconTextPowerup, IconThumbDownFilled: IconThumbDownFilled, IconThumbDownOutlined: IconThumbDownOutlined, IconThumbUpFilled: IconThumbUpFilled, IconThumbUpOutlined: IconThumbUpOutlined, IconTimer: IconTimer, IconTrash: IconTrash, IconTree: IconTree, IconTriangleDouble: IconTriangleDouble, IconTriangleDown: IconTriangleDown, IconTriangleLeft: IconTriangleLeft, IconTriangleRight: IconTriangleRight, IconTriangleUp: IconTriangleUp, IconTriangleExclamationFilled: IconTriangleExclamationFilled, IconTriangleExclamation: IconTriangleExclamation, IconTrophy: IconTrophy, IconWand: IconWand, IconWavingHandInstructions: IconWavingHandInstructions, IconWavingHandThankYou: IconWavingHandThankYou, IconX: IconX });
278
280
  export { IconSVG, Rotator, ExpressIcons };
279
281
  //# sourceMappingURL=index.js.map