@pexip/components 19.2.0 → 19.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/api-docs/README.mdx +3 -0
  3. package/api-docs/functions/useOutOfViewNavigation.mdx +25 -0
  4. package/api-docs/interfaces/IconCollection.mdx +1 -0
  5. package/api-docs/type-aliases/MenuItem.mdx +8 -1
  6. package/api-docs/variables/Captions.mdx +1 -1
  7. package/api-docs/variables/Details.mdx +3 -0
  8. package/api-docs/variables/Menu.mdx +2 -1
  9. package/api-docs/variables/PlainMenuEntry.mdx +3 -0
  10. package/design-tokens/build-scripts/download-icons.mjs +15 -0
  11. package/design-tokens/generated/Icons.ts +10 -1
  12. package/design-tokens/generated/icons/background-blur-16.json +2 -2
  13. package/design-tokens/generated/icons/background-blur-16.svg +4 -33
  14. package/design-tokens/generated/icons/background-blur-24.json +2 -2
  15. package/design-tokens/generated/icons/background-blur-24.svg +4 -33
  16. package/design-tokens/generated/icons/background-blur-32.json +7 -0
  17. package/design-tokens/generated/icons/background-blur-32.svg +14 -0
  18. package/design-tokens/generated/icons/background-blur-32.svg.d.ts +5 -0
  19. package/design-tokens/generated/icons/background-replace-16.json +7 -0
  20. package/design-tokens/generated/icons/background-replace-16.svg +43 -0
  21. package/design-tokens/generated/icons/background-replace-16.svg.d.ts +5 -0
  22. package/design-tokens/generated/icons/background-replace-24.json +7 -0
  23. package/design-tokens/generated/icons/background-replace-24.svg +43 -0
  24. package/design-tokens/generated/icons/background-replace-24.svg.d.ts +5 -0
  25. package/dist/components-no-global-styles.css +1 -1
  26. package/dist/components.cjs +2 -2
  27. package/dist/components.css +1 -1
  28. package/dist/components.js +3641 -3493
  29. package/dist/types/design-tokens/generated/Icons.d.ts +1 -0
  30. package/dist/types/design-tokens/generated/Icons.d.ts.map +1 -1
  31. package/dist/types/src/components/elements/Draggable/Draggable.view.d.ts.map +1 -1
  32. package/dist/types/src/components/elements/FileUpload/FileUpload.view.d.ts +1 -0
  33. package/dist/types/src/components/elements/FileUpload/FileUpload.view.d.ts.map +1 -1
  34. package/dist/types/src/components/modules/Captions/Captions.view.d.ts +5 -4
  35. package/dist/types/src/components/modules/Captions/Captions.view.d.ts.map +1 -1
  36. package/dist/types/src/components/modules/ConfirmationModal/ConfirmationModal.d.ts +2 -2
  37. package/dist/types/src/components/modules/ConfirmationModal/ConfirmationModal.d.ts.map +1 -1
  38. package/dist/types/src/components/modules/Details/Details.d.ts +16 -0
  39. package/dist/types/src/components/modules/Details/Details.d.ts.map +1 -0
  40. package/dist/types/src/components/modules/Menu/Menu.d.ts +8 -2
  41. package/dist/types/src/components/modules/Menu/Menu.d.ts.map +1 -1
  42. package/dist/types/src/components/modules/Menu/types.d.ts +2 -1
  43. package/dist/types/src/components/modules/Menu/types.d.ts.map +1 -1
  44. package/dist/types/src/exports.d.ts +3 -1
  45. package/dist/types/src/exports.d.ts.map +1 -1
  46. package/dist/types/src/hooks/useOutOfViewNavigation.d.ts +14 -0
  47. package/dist/types/src/hooks/useOutOfViewNavigation.d.ts.map +1 -0
  48. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # Changelog
2
2
 
3
+ ## 19.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4940c23: Support showing `speakers` in the `Captions`
8
+ - a728249: Add `Details` component.
9
+ - a02f422: Support custom MenuEntry in Menu Component
10
+ - a02f422: Add and export PlainMenuEntry component
11
+ - 4940c23: Change `default` dark background in `FullSizeWindow` from `dark-blue`
12
+ to `gray` and make a fallback for legacy theme
13
+
14
+ ### Patch Changes
15
+
16
+ - 18ff23c: Make cursor default on Button
17
+
18
+ Add data-dragging attribute to Draggable
19
+
20
+ - d42aaa6: Extra small border radius for Menu.
21
+ - ea290e6: Update background-blur and background-replace icons
22
+
23
+ Update icons build script to allow fetching only icon with --icon-name arg
24
+
25
+ - 64f614b: `ConfirmationModal`'s `onConfirm` and `onCancel` take in non-optional
26
+ Event arg.
27
+ - Updated dependencies [1fff975]
28
+ - Updated dependencies [3963c2e]
29
+ - Updated dependencies [762ebd2]
30
+ - Updated dependencies [4d2da34]
31
+ - @pexip/utils@17.2.0
32
+ - @pexip/signal@16.9.4
33
+ - @pexip/hooks@21.0.6
34
+
3
35
  ## 19.2.0
4
36
 
5
37
  ### Minor Changes
@@ -217,6 +217,7 @@ import '@pexip/components/dist/index.css';
217
217
  | [CondensedTabs](variables/CondensedTabs.mdx) | - |
218
218
  | [ConfirmationModal](variables/ConfirmationModal.mdx) | - |
219
219
  | [ContextMenu](variables/ContextMenu.mdx) | ContextMenu will the show the "menu" component as a context menu when the user right clicks on the given child element. |
220
+ | [Details](variables/Details.mdx) | - |
220
221
  | [DragAndUploadFiles](variables/DragAndUploadFiles.mdx) | - |
221
222
  | [DropContent](variables/DropContent.mdx) | - |
222
223
  | [Form](variables/Form.mdx) | - |
@@ -225,6 +226,7 @@ import '@pexip/components/dist/index.css';
225
226
  | [KebabMenuButton](variables/KebabMenuButton.mdx) | - |
226
227
  | [List](variables/List.mdx) | - |
227
228
  | [Row](variables/Row.mdx) | - |
229
+ | [PlainMenuEntry](variables/PlainMenuEntry.mdx) | - |
228
230
  | [MenuEntry](variables/MenuEntry.mdx) | - |
229
231
  | [Menu](variables/Menu.mdx) | - |
230
232
  | [Modal](variables/Modal.mdx) | - |
@@ -320,6 +322,7 @@ import '@pexip/components/dist/index.css';
320
322
  | [useFocusFromOpened](functions/useFocusFromOpened.mdx) | Use this hook to set the focus point on an element when something becomes opened, e.g. set focus on a panel container or menu container when it becomes visible so that the next time the user hits on the tab key the element that becomes focused on is potentially a tabbable element inside the container element. |
321
323
  | [useModal](functions/useModal.mdx) | - |
322
324
  | [useModalHandle](functions/useModalHandle.mdx) | - |
325
+ | [useOutOfViewNavigation](functions/useOutOfViewNavigation.mdx) | - |
323
326
  | [useScrollIntoView](functions/useScrollIntoView.mdx) | - |
324
327
  | [withColorScheme](functions/withColorScheme.mdx) | - |
325
328
  | [sizeToPadding](functions/sizeToPadding.mdx) | - |
@@ -0,0 +1,25 @@
1
+ ```ts
2
+ function useOutOfViewNavigation(__namedParameters): object;
3
+ ```
4
+
5
+ ## Parameters
6
+
7
+ | Parameter | Type |
8
+ | ------ | ------ |
9
+ | `__namedParameters` | \{ `isDisabled?`: `boolean`; `content`: `ReactElement`; `root`: `HTMLElement` \| `null`; `moveBy?`: `number`; `containerClassName?`: `string`; \} |
10
+ | `__namedParameters.isDisabled?` | `boolean` |
11
+ | `__namedParameters.content` | `ReactElement` |
12
+ | `__namedParameters.root` | `HTMLElement` \| `null` |
13
+ | `__namedParameters.moveBy?` | `number` |
14
+ | `__namedParameters.containerClassName?` | `string` |
15
+
16
+ ## Returns
17
+
18
+ `object`
19
+
20
+ | Name | Type |
21
+ | ------ | ------ |
22
+ | `navigationView` | `Element` |
23
+ | `moveLeft` | () => `void` \| `undefined` |
24
+ | `moveRight` | () => `void` \| `undefined` |
25
+ | `hasOverflowingContent` | `boolean` |
@@ -21,6 +21,7 @@
21
21
  | <a id="iconaudiotransmission"></a> `IconAudioTransmission` | [`IconSource`](IconSource.mdx) |
22
22
  | <a id="iconauthenticated"></a> `IconAuthenticated` | [`IconSource`](IconSource.mdx) |
23
23
  | <a id="iconbackgroundblur"></a> `IconBackgroundBlur` | [`IconSource`](IconSource.mdx) |
24
+ | <a id="iconbackgroundreplace"></a> `IconBackgroundReplace` | [`IconSource`](IconSource.mdx) |
24
25
  | <a id="iconbackspace"></a> `IconBackspace` | [`IconSource`](IconSource.mdx) |
25
26
  | <a id="iconbacktotop"></a> `IconBackToTop` | [`IconSource`](IconSource.mdx) |
26
27
  | <a id="iconbandwidth"></a> `IconBandwidth` | [`IconSource`](IconSource.mdx) |
@@ -1,7 +1,13 @@
1
1
  ```ts
2
- type MenuItem = object;
2
+ type MenuItem<T> = object;
3
3
  ```
4
4
 
5
+ ## Type Parameters
6
+
7
+ | Type Parameter | Default type |
8
+ | ------ | ------ |
9
+ | `T` *extends* `string` | `string` |
10
+
5
11
  ## Properties
6
12
 
7
13
  | Property | Type |
@@ -21,4 +27,5 @@ type MenuItem = object;
21
27
  | <a id="target"></a> `target?` | [`LinkTarget`](LinkTarget.mdx) |
22
28
  | <a id="testid"></a> `testId?` | `string` |
23
29
  | <a id="url"></a> `url?` | `string` |
30
+ | <a id="value"></a> `value?` | `T` |
24
31
  | <a id="variant"></a> `variant?` | [`TextVariant`](TextVariant.mdx) |
@@ -1,3 +1,3 @@
1
1
  ```ts
2
- const Captions: ForwardRefExoticComponent<object & RefAttributes<HTMLSpanElement>>;
2
+ const Captions: React.FC<CaptionsProps & TextProps>;
3
3
  ```
@@ -0,0 +1,3 @@
1
+ ```ts
2
+ const Details: React.FC<Omit<React.ComponentProps<typeof Summary>, "content" | "isOpen" | "onToggle"> & object>;
3
+ ```
@@ -1,10 +1,11 @@
1
1
  ```ts
2
2
  const Menu: React.FC<{
3
- onPointerDownCapture?: React.PointerEventHandler<HTMLDivElement>;
4
3
  className?: string;
5
4
  colorScheme?: ColorScheme;
6
5
  isAriaMultiSelectable?: boolean;
7
6
  menuContent: MenuContent | TitledMenuContent;
7
+ menuEntryComponent?: typeof MenuEntry;
8
+ onPointerDownCapture?: React.PointerEventHandler<HTMLDivElement>;
8
9
  role?: React.AriaRole;
9
10
  tabIndex?: number;
10
11
  testId?: string;
@@ -0,0 +1,3 @@
1
+ ```ts
2
+ const PlainMenuEntry: React.FC<React.ComponentProps<typeof Row> & object>;
3
+ ```
@@ -75,9 +75,24 @@ export async function downloadIcons() {
75
75
 
76
76
  const frames = iconsFrame.document.children;
77
77
 
78
+ // If only a specific icon(s) should be fetched provide it as a command line arg: --icon-name=background-blur,participant
79
+ const iconNames =
80
+ process.argv
81
+ .find(arg => arg.startsWith('--icon-name='))
82
+ ?.split('=')[1]
83
+ ?.split(',')
84
+ .map(s => s.trim())
85
+ .filter(Boolean) || [];
86
+
78
87
  // frames now contain multiple nested icons
79
88
  const allIcons = frames
80
89
  .reduce((icons, currentFrame) => {
90
+ if (
91
+ iconNames.length > 0 &&
92
+ !iconNames.includes(currentFrame.name)
93
+ ) {
94
+ return icons;
95
+ }
81
96
  icons.push(
82
97
  currentFrame.children.map(child => ({
83
98
  ...child,
@@ -41,6 +41,9 @@ import IconAuthenticated_24 from './icons/authenticated-24.svg';
41
41
  import IconAuthenticated_32 from './icons/authenticated-32.svg';
42
42
  import IconBackgroundBlur_16 from './icons/background-blur-16.svg';
43
43
  import IconBackgroundBlur_24 from './icons/background-blur-24.svg';
44
+ import IconBackgroundBlur_32 from './icons/background-blur-32.svg';
45
+ import IconBackgroundReplace_16 from './icons/background-replace-16.svg';
46
+ import IconBackgroundReplace_24 from './icons/background-replace-24.svg';
44
47
  import IconBackspace_16 from './icons/backspace-16.svg';
45
48
  import IconBackspace_24 from './icons/backspace-24.svg';
46
49
  import IconBackToTop_16 from './icons/back-to-top-16.svg';
@@ -312,6 +315,7 @@ export interface IconCollection {
312
315
  IconAudioTransmission: IconSource;
313
316
  IconAuthenticated: IconSource;
314
317
  IconBackgroundBlur: IconSource;
318
+ IconBackgroundReplace: IconSource;
315
319
  IconBackspace: IconSource;
316
320
  IconBackToTop: IconSource;
317
321
  IconBandwidth: IconSource;
@@ -526,7 +530,12 @@ const collection: IconCollection = {
526
530
  IconBackgroundBlur: {
527
531
  size16: IconBackgroundBlur_16,
528
532
  size24: IconBackgroundBlur_24,
529
- size32: IconBackgroundBlur_24,
533
+ size32: IconBackgroundBlur_32,
534
+ },
535
+ IconBackgroundReplace: {
536
+ size16: IconBackgroundReplace_16,
537
+ size24: IconBackgroundReplace_24,
538
+ size32: IconBackgroundReplace_24,
530
539
  },
531
540
  IconBackspace: {
532
541
  size16: IconBackspace_16,
@@ -2,6 +2,6 @@
2
2
  "iconName": "background-blur-16",
3
3
  "name": "16px-background-blur",
4
4
  "pascalName": "IconBackgroundBlur_16",
5
- "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9c6e75a1-6ba8-47ee-ae5f-522c49b102b1",
6
- "graphic": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g clip-path=\"url(#clip0_2052_326)\">\n<g clip-path=\"url(#clip1_2052_326)\">\n<path d=\"M8.00032 9.0382C9.53216 9.0382 10.7777 7.79264 10.7777 6.26004C10.7777 4.72896 9.53216 3.4834 8.00032 3.4834C6.46849 3.4834 5.22217 4.72896 5.22217 6.26004C5.22217 7.79188 6.46849 9.0382 8.00032 9.0382Z\" fill=\"white\"/>\n</g>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4173 -8.0791L16.6547 -6.84166L7.15724 2.6558C5.78261 2.96773 4.69836 4.05156 4.38685 5.4262L-6.20031 16.0134L-7.43774 14.7759L15.4173 -8.0791ZM2.76551 9.87594L4.70951 7.93193C4.98394 8.45892 5.38233 8.91139 5.86582 9.25049L5.86457 9.25175C4.66692 9.36467 3.63948 9.57679 2.76551 9.87594ZM-1.18553 13.827L-7.38908 20.0305L-6.15165 21.268L-0.692565 15.8089C-1.11936 15.3499 -1.34174 14.7269 -1.23108 14.0685C-1.2171 13.9858 -1.20189 13.9053 -1.18553 13.827ZM2.26143 16.5649L3.0581 17.3616L3.85476 16.5649H2.26143ZM6.68316 16.5649L5.40003 17.848L6.63747 19.0855L9.15804 16.5649H6.68316ZM14.9997 10.7232C14.5239 10.4089 13.9718 10.1367 13.3367 9.91133L24.9703 -1.72228L26.2078 -0.484846L14.9997 10.7232ZM11.9865 16.5649L-5.05911 33.6105L-3.82168 34.8479L14.4614 16.5649H11.9865ZM17.1881 13.8382C17.0586 13.2111 16.8554 12.7237 16.6168 12.3324C16.5645 12.2466 16.5112 12.1669 16.4583 12.093L28.7548 -0.20343L29.9923 1.03401L17.1881 13.8382ZM11.0568 9.36286C10.7456 9.31655 10.4212 9.27781 10.0835 9.2469C11.0137 8.59194 11.6274 7.51645 11.6466 6.29818L22.2406 -4.2958L23.478 -3.05836L11.0568 9.36286ZM9.66392 2.97753C10.1911 3.2518 10.6436 3.6501 10.9828 4.13353L21.2487 -6.13242L20.0113 -7.36986L9.66392 2.97753ZM9.87804 -7.84319L11.1155 -6.60575L-6.11758 10.6273L-7.35502 9.38987L9.87804 -7.84319ZM29.9923 6.73752L28.7548 5.50008L-5.05911 39.314L-3.82168 40.5515L29.9923 6.73752Z\" fill=\"white\"/>\n<path d=\"M13.0175 11.7051C12.2184 10.8501 10.7117 10.2151 8.00002 10.2151C5.26502 10.2151 3.75586 10.8609 2.96169 11.7268C2.74919 11.9593 2.38336 12.3301 2.23336 13.2909C2.15586 13.7934 2.55169 14.2501 3.06002 14.2501H12.94C13.4484 14.2501 13.845 13.7934 13.7667 13.2909C13.6159 12.3284 13.2484 11.9509 13.0175 11.7051Z\" fill=\"white\"/>\n</g>\n<defs>\n<clipPath id=\"clip0_2052_326\">\n<rect x=\"1.33325\" y=\"1.75\" width=\"13.3333\" height=\"13.3333\" rx=\"0.833333\" fill=\"white\"/>\n</clipPath>\n<clipPath id=\"clip1_2052_326\">\n<rect width=\"13.3333\" height=\"13.3333\" fill=\"white\" transform=\"translate(1.33325 1.75)\"/>\n</clipPath>\n</defs>\n</svg>\n"
5
+ "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/14d2c9a1-b08b-45b4-a1d7-ccd43f5ac2f6",
6
+ "graphic": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M1.36842 9.8421C1.27018 9.8421 1.18421 9.80526 1.11053 9.73158C1.03684 9.6579 1 9.57193 1 9.47368C1 9.37544 1.03684 9.28947 1.11053 9.21579C1.18421 9.14211 1.27018 9.10526 1.36842 9.10526C1.46667 9.10526 1.55263 9.14211 1.62632 9.21579C1.7 9.28947 1.73684 9.37544 1.73684 9.47368C1.73684 9.57193 1.7 9.6579 1.62632 9.73158C1.55263 9.80526 1.46667 9.8421 1.36842 9.8421ZM1.36842 6.89474C1.27018 6.89474 1.18421 6.85789 1.11053 6.78421C1.03684 6.71053 1 6.62456 1 6.52632C1 6.42807 1.03684 6.34211 1.11053 6.26842C1.18421 6.19474 1.27018 6.15789 1.36842 6.15789C1.46667 6.15789 1.55263 6.19474 1.62632 6.26842C1.7 6.34211 1.73684 6.42807 1.73684 6.52632C1.73684 6.62456 1.7 6.71053 1.62632 6.78421C1.55263 6.85789 1.46667 6.89474 1.36842 6.89474ZM3.57895 13.1579C3.37018 13.1579 3.19518 13.0873 3.05395 12.9461C2.91272 12.8048 2.84211 12.6298 2.84211 12.4211C2.84211 12.2123 2.91272 12.0373 3.05395 11.8961C3.19518 11.7548 3.37018 11.6842 3.57895 11.6842C3.78772 11.6842 3.96272 11.7548 4.10395 11.8961C4.24518 12.0373 4.31579 12.2123 4.31579 12.4211C4.31579 12.6298 4.24518 12.8048 4.10395 12.9461C3.96272 13.0873 3.78772 13.1579 3.57895 13.1579ZM3.57895 10.2105C3.37018 10.2105 3.19518 10.1399 3.05395 9.99868C2.91272 9.85746 2.84211 9.68246 2.84211 9.47368C2.84211 9.26491 2.91272 9.08991 3.05395 8.94868C3.19518 8.80746 3.37018 8.73684 3.57895 8.73684C3.78772 8.73684 3.96272 8.80746 4.10395 8.94868C4.24518 9.08991 4.31579 9.26491 4.31579 9.47368C4.31579 9.68246 4.24518 9.85746 4.10395 9.99868C3.96272 10.1399 3.78772 10.2105 3.57895 10.2105ZM3.57895 7.26316C3.37018 7.26316 3.19518 7.19254 3.05395 7.05132C2.91272 6.91009 2.84211 6.73509 2.84211 6.52632C2.84211 6.31754 2.91272 6.14254 3.05395 6.00132C3.19518 5.86009 3.37018 5.78947 3.57895 5.78947C3.78772 5.78947 3.96272 5.86009 4.10395 6.00132C4.24518 6.14254 4.31579 6.31754 4.31579 6.52632C4.31579 6.73509 4.24518 6.91009 4.10395 7.05132C3.96272 7.19254 3.78772 7.26316 3.57895 7.26316ZM3.57895 4.31579C3.37018 4.31579 3.19518 4.24518 3.05395 4.10395C2.91272 3.96272 2.84211 3.78772 2.84211 3.57895C2.84211 3.37018 2.91272 3.19518 3.05395 3.05395C3.19518 2.91272 3.37018 2.84211 3.57895 2.84211C3.78772 2.84211 3.96272 2.91272 4.10395 3.05395C4.24518 3.19518 4.31579 3.37018 4.31579 3.57895C4.31579 3.78772 4.24518 3.96272 4.10395 4.10395C3.96272 4.24518 3.78772 4.31579 3.57895 4.31579ZM6.52632 13.1579C6.31754 13.1579 6.14254 13.0873 6.00132 12.9461C5.86009 12.8048 5.78947 12.6298 5.78947 12.4211C5.78947 12.2123 5.86009 12.0373 6.00132 11.8961C6.14254 11.7548 6.31754 11.6842 6.52632 11.6842C6.73509 11.6842 6.91009 11.7548 7.05132 11.8961C7.19254 12.0373 7.26316 12.2123 7.26316 12.4211C7.26316 12.6298 7.19254 12.8048 7.05132 12.9461C6.91009 13.0873 6.73509 13.1579 6.52632 13.1579ZM6.52632 4.31579C6.31754 4.31579 6.14254 4.24518 6.00132 4.10395C5.86009 3.96272 5.78947 3.78772 5.78947 3.57895C5.78947 3.37018 5.86009 3.19518 6.00132 3.05395C6.14254 2.91272 6.31754 2.84211 6.52632 2.84211C6.73509 2.84211 6.91009 2.91272 7.05132 3.05395C7.19254 3.19518 7.26316 3.37018 7.26316 3.57895C7.26316 3.78772 7.19254 3.96272 7.05132 4.10395C6.91009 4.24518 6.73509 4.31579 6.52632 4.31579ZM6.52632 15C6.42807 15 6.34211 14.9632 6.26842 14.8895C6.19474 14.8158 6.15789 14.7298 6.15789 14.6316C6.15789 14.5333 6.19474 14.4474 6.26842 14.3737C6.34211 14.3 6.42807 14.2632 6.52632 14.2632C6.62456 14.2632 6.71053 14.3 6.78421 14.3737C6.85789 14.4474 6.89474 14.5333 6.89474 14.6316C6.89474 14.7298 6.85789 14.8158 6.78421 14.8895C6.71053 14.9632 6.62456 15 6.52632 15ZM6.52632 1.73684C6.42807 1.73684 6.34211 1.7 6.26842 1.62632C6.19474 1.55263 6.15789 1.46667 6.15789 1.36842C6.15789 1.27018 6.19474 1.18421 6.26842 1.11053C6.34211 1.03684 6.42807 1 6.52632 1C6.62456 1 6.71053 1.03684 6.78421 1.11053C6.85789 1.18421 6.89474 1.27018 6.89474 1.36842C6.89474 1.46667 6.85789 1.55263 6.78421 1.62632C6.71053 1.7 6.62456 1.73684 6.52632 1.73684ZM9.47368 13.1579C9.26491 13.1579 9.08991 13.0873 8.94868 12.9461C8.80746 12.8048 8.73684 12.6298 8.73684 12.4211C8.73684 12.2123 8.80746 12.0373 8.94868 11.8961C9.08991 11.7548 9.26491 11.6842 9.47368 11.6842C9.68246 11.6842 9.85746 11.7548 9.99868 11.8961C10.1399 12.0373 10.2105 12.2123 10.2105 12.4211C10.2105 12.6298 10.1399 12.8048 9.99868 12.9461C9.85746 13.0873 9.68246 13.1579 9.47368 13.1579ZM9.47368 4.31579C9.26491 4.31579 9.08991 4.24518 8.94868 4.10395C8.80746 3.96272 8.73684 3.78772 8.73684 3.57895C8.73684 3.37018 8.80746 3.19518 8.94868 3.05395C9.08991 2.91272 9.26491 2.84211 9.47368 2.84211C9.68246 2.84211 9.85746 2.91272 9.99868 3.05395C10.1399 3.19518 10.2105 3.37018 10.2105 3.57895C10.2105 3.78772 10.1399 3.96272 9.99868 4.10395C9.85746 4.24518 9.68246 4.31579 9.47368 4.31579ZM9.47368 15C9.37544 15 9.28947 14.9632 9.21579 14.8895C9.14211 14.8158 9.10526 14.7298 9.10526 14.6316C9.10526 14.5333 9.14211 14.4474 9.21579 14.3737C9.28947 14.3 9.37544 14.2632 9.47368 14.2632C9.57193 14.2632 9.6579 14.3 9.73158 14.3737C9.80526 14.4474 9.8421 14.5333 9.8421 14.6316C9.8421 14.7298 9.80526 14.8158 9.73158 14.8895C9.6579 14.9632 9.57193 15 9.47368 15ZM9.47368 1.73684C9.37544 1.73684 9.28947 1.7 9.21579 1.62632C9.14211 1.55263 9.10526 1.46667 9.10526 1.36842C9.10526 1.27018 9.14211 1.18421 9.21579 1.11053C9.28947 1.03684 9.37544 1 9.47368 1C9.57193 1 9.6579 1.03684 9.73158 1.11053C9.80526 1.18421 9.8421 1.27018 9.8421 1.36842C9.8421 1.46667 9.80526 1.55263 9.73158 1.62632C9.6579 1.7 9.57193 1.73684 9.47368 1.73684ZM12.4211 13.1579C12.2123 13.1579 12.0373 13.0873 11.8961 12.9461C11.7548 12.8048 11.6842 12.6298 11.6842 12.4211C11.6842 12.2123 11.7548 12.0373 11.8961 11.8961C12.0373 11.7548 12.2123 11.6842 12.4211 11.6842C12.6298 11.6842 12.8048 11.7548 12.9461 11.8961C13.0873 12.0373 13.1579 12.2123 13.1579 12.4211C13.1579 12.6298 13.0873 12.8048 12.9461 12.9461C12.8048 13.0873 12.6298 13.1579 12.4211 13.1579ZM12.4211 10.2105C12.2123 10.2105 12.0373 10.1399 11.8961 9.99868C11.7548 9.85746 11.6842 9.68246 11.6842 9.47368C11.6842 9.26491 11.7548 9.08991 11.8961 8.94868C12.0373 8.80746 12.2123 8.73684 12.4211 8.73684C12.6298 8.73684 12.8048 8.80746 12.9461 8.94868C13.0873 9.08991 13.1579 9.26491 13.1579 9.47368C13.1579 9.68246 13.0873 9.85746 12.9461 9.99868C12.8048 10.1399 12.6298 10.2105 12.4211 10.2105ZM12.4211 7.26316C12.2123 7.26316 12.0373 7.19254 11.8961 7.05132C11.7548 6.91009 11.6842 6.73509 11.6842 6.52632C11.6842 6.31754 11.7548 6.14254 11.8961 6.00132C12.0373 5.86009 12.2123 5.78947 12.4211 5.78947C12.6298 5.78947 12.8048 5.86009 12.9461 6.00132C13.0873 6.14254 13.1579 6.31754 13.1579 6.52632C13.1579 6.73509 13.0873 6.91009 12.9461 7.05132C12.8048 7.19254 12.6298 7.26316 12.4211 7.26316ZM12.4211 4.31579C12.2123 4.31579 12.0373 4.24518 11.8961 4.10395C11.7548 3.96272 11.6842 3.78772 11.6842 3.57895C11.6842 3.37018 11.7548 3.19518 11.8961 3.05395C12.0373 2.91272 12.2123 2.84211 12.4211 2.84211C12.6298 2.84211 12.8048 2.91272 12.9461 3.05395C13.0873 3.19518 13.1579 3.37018 13.1579 3.57895C13.1579 3.78772 13.0873 3.96272 12.9461 4.10395C12.8048 4.24518 12.6298 4.31579 12.4211 4.31579ZM14.6316 9.8421C14.5333 9.8421 14.4474 9.80526 14.3737 9.73158C14.3 9.6579 14.2632 9.57193 14.2632 9.47368C14.2632 9.37544 14.3 9.28947 14.3737 9.21579C14.4474 9.14211 14.5333 9.10526 14.6316 9.10526C14.7298 9.10526 14.8158 9.14211 14.8895 9.21579C14.9632 9.28947 15 9.37544 15 9.47368C15 9.57193 14.9632 9.6579 14.8895 9.73158C14.8158 9.80526 14.7298 9.8421 14.6316 9.8421ZM14.6316 6.89474C14.5333 6.89474 14.4474 6.85789 14.3737 6.78421C14.3 6.71053 14.2632 6.62456 14.2632 6.52632C14.2632 6.42807 14.3 6.34211 14.3737 6.26842C14.4474 6.19474 14.5333 6.15789 14.6316 6.15789C14.7298 6.15789 14.8158 6.19474 14.8895 6.26842C14.9632 6.34211 15 6.42807 15 6.52632C15 6.62456 14.9632 6.71053 14.8895 6.78421C14.8158 6.85789 14.7298 6.89474 14.6316 6.89474ZM5.05263 10.9474V10.5421C5.05263 9.90351 5.35965 9.44298 5.97368 9.16053C6.58772 8.87807 7.26316 8.73684 8 8.73684C8.73684 8.73684 9.41228 8.87807 10.0263 9.16053C10.6404 9.44298 10.9474 9.90351 10.9474 10.5421V10.9474H5.05263ZM8 8C7.59474 8 7.24781 7.8557 6.95921 7.56711C6.67061 7.27851 6.52632 6.93158 6.52632 6.52632C6.52632 6.12105 6.67061 5.77412 6.95921 5.48553C7.24781 5.19693 7.59474 5.05263 8 5.05263C8.40526 5.05263 8.75219 5.19693 9.04079 5.48553C9.32939 5.77412 9.47368 6.12105 9.47368 6.52632C9.47368 6.93158 9.32939 7.27851 9.04079 7.56711C8.75219 7.8557 8.40526 8 8 8Z\" fill=\"white\"/>\n</svg>\n"
7
7
  }
@@ -7,37 +7,8 @@
7
7
  viewBox="0 0 16 16"
8
8
  aria-hidden="true"
9
9
  >
10
- <g clip-path="url(#IconBackgroundBlur_16__a)">
11
- <g clip-path="url(#IconBackgroundBlur_16__b)">
12
- <path
13
- fill="currentColor"
14
- d="M8 9.038a2.78 2.78 0 0 0 2.778-2.778A2.78 2.78 0 0 0 8 3.483 2.78 2.78 0 0 0 5.222 6.26 2.78 2.78 0 0 0 8 9.038"
15
- />
16
- </g>
17
- <path
18
- fill="currentColor"
19
- fill-rule="evenodd"
20
- d="m15.417-8.08 1.238 1.238-9.498 9.498a3.69 3.69 0 0 0-2.77 2.77L-6.2 16.013l-1.238-1.237zM2.766 9.877 4.71 7.932A3.7 3.7 0 0 0 5.866 9.25l-.001.002c-1.198.113-2.226.325-3.1.624m-3.952 3.951-6.203 6.204 1.237 1.237 5.46-5.46a2.04 2.04 0 0 1-.54-1.74q.022-.124.046-.241m3.447 2.738.797.797.797-.797zm4.422 0L5.4 17.848l1.237 1.238 2.521-2.521zM15 10.723a7.6 7.6 0 0 0-1.663-.812L24.97-1.722l1.238 1.237zm-3.014 5.842L-5.059 33.61l1.237 1.237 18.283-18.283zm5.202-2.727a4.7 4.7 0 0 0-.571-1.506 4 4 0 0 0-.159-.239L28.755-.203l1.237 1.237zm-6.131-4.475a17 17 0 0 0-.973-.116 3.67 3.67 0 0 0 1.563-2.949L22.24-4.296l1.237 1.238zM9.664 2.978c.527.274.98.672 1.319 1.156L21.249-6.132 20.01-7.37zm.214-10.821 1.238 1.237-17.234 17.233-1.237-1.237zm20.114 14.58L28.755 5.5-5.06 39.314l1.237 1.237z"
21
- clip-rule="evenodd"
22
- />
23
- <path
24
- fill="currentColor"
25
- d="M13.018 11.705c-.8-.855-2.306-1.49-5.018-1.49-2.735 0-4.244.646-5.038 1.512-.213.232-.579.603-.729 1.564a.837.837 0 0 0 .827.96h9.88a.837.837 0 0 0 .827-.96c-.151-.963-.519-1.34-.75-1.586"
26
- />
27
- </g>
28
- <defs>
29
- <clipPath id="IconBackgroundBlur_16__a">
30
- <rect
31
- width="13.333"
32
- height="13.333"
33
- x="1.333"
34
- y="1.75"
35
- fill="currentColor"
36
- rx=".833"
37
- />
38
- </clipPath>
39
- <clipPath id="IconBackgroundBlur_16__b">
40
- <path fill="currentColor" d="M1.333 1.75h13.333v13.333H1.333z" />
41
- </clipPath>
42
- </defs>
10
+ <path
11
+ fill="currentColor"
12
+ d="M1.368 9.842a.35.35 0 0 1-.257-.11.353.353 0 0 1 0-.516.353.353 0 0 1 .515 0 .353.353 0 0 1 0 .516.35.35 0 0 1-.258.11m0-2.947a.35.35 0 0 1-.257-.11.353.353 0 0 1 0-.517.353.353 0 0 1 .515 0 .353.353 0 0 1 0 .516.35.35 0 0 1-.258.11m2.21 6.263a.71.71 0 0 1-.524-.212.71.71 0 0 1-.212-.525q0-.313.212-.525a.71.71 0 0 1 .525-.212q.313 0 .525.212a.71.71 0 0 1 .212.525q0 .314-.212.525a.71.71 0 0 1-.525.212m.001-2.947a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.314.212-.525a.71.71 0 0 1 .525-.212q.313 0 .525.212a.71.71 0 0 1 .212.525q0 .312-.212.525a.71.71 0 0 1-.525.211m0-2.948a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.312.212-.525a.71.71 0 0 1 .525-.212q.313 0 .525.212a.71.71 0 0 1 .212.525q0 .314-.212.525a.71.71 0 0 1-.525.212m0-2.947a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.314.212-.525a.71.71 0 0 1 .525-.212q.313 0 .525.212a.71.71 0 0 1 .212.525q0 .313-.212.525a.71.71 0 0 1-.525.212m2.947 8.842a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.313.212-.525a.71.71 0 0 1 .525-.212q.314 0 .525.212a.71.71 0 0 1 .212.525q0 .314-.212.525a.71.71 0 0 1-.525.212m0-8.842a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.314.212-.525a.71.71 0 0 1 .525-.212q.314 0 .525.212a.71.71 0 0 1 .212.525q0 .313-.212.525a.71.71 0 0 1-.525.212m0 10.684a.35.35 0 0 1-.258-.11.354.354 0 0 1 0-.516.353.353 0 0 1 .516 0 .353.353 0 0 1 0 .515.35.35 0 0 1-.258.111m0-13.263a.35.35 0 0 1-.258-.11.353.353 0 0 1 0-.516.353.353 0 0 1 .516 0 .353.353 0 0 1 0 .515.35.35 0 0 1-.258.11m2.948 11.42a.71.71 0 0 1-.525-.21.71.71 0 0 1-.212-.526q0-.313.212-.525a.71.71 0 0 1 .525-.212q.312 0 .525.212a.71.71 0 0 1 .211.525q0 .314-.211.525a.71.71 0 0 1-.525.212m0-8.841a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.314.212-.525a.71.71 0 0 1 .525-.212q.312 0 .525.212a.71.71 0 0 1 .211.525q0 .313-.211.525a.71.71 0 0 1-.525.212m0 10.684a.35.35 0 0 1-.258-.11.354.354 0 0 1 0-.516.35.35 0 0 1 .258-.11q.147 0 .258.11a.353.353 0 0 1 0 .515.35.35 0 0 1-.258.111m0-13.263a.35.35 0 0 1-.258-.11.353.353 0 0 1 0-.516.353.353 0 0 1 .516 0 .353.353 0 0 1 0 .515.35.35 0 0 1-.258.11m2.947 11.42a.71.71 0 0 1-.525-.21.71.71 0 0 1-.212-.526q0-.313.212-.525a.71.71 0 0 1 .525-.212q.314 0 .525.212a.71.71 0 0 1 .212.525q0 .314-.212.525a.71.71 0 0 1-.525.212m0-2.947a.71.71 0 0 1-.525-.211.71.71 0 0 1-.212-.525q0-.314.212-.525a.71.71 0 0 1 .525-.212q.314 0 .525.212a.71.71 0 0 1 .212.525q0 .312-.212.525a.71.71 0 0 1-.525.211m0-2.947a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.312.212-.525a.71.71 0 0 1 .525-.212q.314 0 .525.212a.71.71 0 0 1 .212.525q0 .314-.212.525a.71.71 0 0 1-.525.212m0-2.947a.71.71 0 0 1-.525-.212.71.71 0 0 1-.212-.525q0-.314.212-.525a.71.71 0 0 1 .525-.212q.314 0 .525.212a.71.71 0 0 1 .212.525q0 .313-.212.525a.71.71 0 0 1-.525.212m2.21 5.526a.35.35 0 0 1-.257-.11.35.35 0 0 1-.11-.258q0-.149.11-.258a.353.353 0 0 1 .515 0q.111.11.111.258a.35.35 0 0 1-.11.258.35.35 0 0 1-.258.11m0-2.947a.35.35 0 0 1-.257-.11.353.353 0 0 1 0-.516.353.353 0 0 1 .516 0 .353.353 0 0 1 0 .515.35.35 0 0 1-.258.11m-9.578 4.052v-.405q0-.957.92-1.381A4.8 4.8 0 0 1 8 8.737a4.8 4.8 0 0 1 2.026.424q.921.424.921 1.381v.405zM8 8a1.42 1.42 0 0 1-1.04-.433 1.42 1.42 0 0 1-.434-1.04q0-.609.433-1.041A1.42 1.42 0 0 1 8 5.053q.608 0 1.04.433.434.432.434 1.04T9.04 7.567A1.42 1.42 0 0 1 8 8"
13
+ />
43
14
  </svg>
@@ -2,6 +2,6 @@
2
2
  "iconName": "background-blur-24",
3
3
  "name": "24px-background-blur",
4
4
  "pascalName": "IconBackgroundBlur_24",
5
- "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/215b1df0-9c8a-4177-b7bb-da3ee3462ec5",
6
- "graphic": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g clip-path=\"url(#clip0_2052_303)\">\n<g clip-path=\"url(#clip1_2052_303)\">\n<path d=\"M12.0005 13.5573C14.2982 13.5573 16.1666 11.689 16.1666 9.39007C16.1666 7.09344 14.2982 5.2251 12.0005 5.2251C9.70273 5.2251 7.83325 7.09344 7.83325 9.39007C7.83325 11.6878 9.70273 13.5573 12.0005 13.5573Z\" fill=\"white\"/>\n</g>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.084 -7.2041L17.3214 -5.96667L-5.53357 16.8883L-6.77101 15.6509L16.084 -7.2041ZM10.5448 -6.96819L11.7822 -5.73075L-5.45085 11.5023L-6.68828 10.2649L10.5448 -6.96819ZM21.9155 -5.25743L20.678 -6.49486L9.96278 4.2204C10.5818 3.97951 11.2548 3.84731 11.9582 3.84731C12.2283 3.84731 12.4938 3.8668 12.7536 3.90444L21.9155 -5.25743ZM-6.72235 20.9055L6.81682 7.36636C6.57644 7.98443 6.4445 8.65632 6.4445 9.35863C6.4445 9.62941 6.4641 9.89568 6.50196 10.1561L-5.48491 22.143L-6.72235 20.9055ZM4.91155 14.575L7.25385 12.2327C7.56207 12.7355 7.94862 13.1853 8.3964 13.565L7.99646 13.9649C6.86088 14.1063 5.83499 14.3114 4.91155 14.575ZM5.24583 24.8473L-4.39238 34.4855L-3.15494 35.7229L7.7207 24.8473H5.24583ZM10.9493 24.8473L-4.39238 40.189L-3.15494 41.4264L13.4242 24.8473H10.9493ZM22.3093 15.9622C21.8168 15.6533 21.2723 15.373 20.6729 15.1237L29.4216 6.37508L30.659 7.61251L22.3093 15.9622ZM18.2173 14.3507C17.563 14.1999 16.8627 14.0754 16.1142 13.9789L29.4216 0.671566L30.659 1.909L18.2173 14.3507ZM17.4707 9.35863C17.4707 9.51142 17.4645 9.66277 17.4522 9.81244L26.8745 0.390151L25.6371 -0.847286L17.1849 7.60487C17.3702 8.15593 17.4707 8.74571 17.4707 9.35863ZM14.8309 4.65565C15.3338 4.96374 15.7837 5.35018 16.1635 5.79789L24.1448 -2.18337L22.9073 -3.4208L14.8309 4.65565Z\" fill=\"white\"/>\n<path d=\"M19.5263 17.5575C18.3275 16.275 16.0675 15.3225 12 15.3225C7.89754 15.3225 5.63379 16.2913 4.44254 17.59C4.12379 17.9388 3.57504 18.495 3.35004 19.9363C3.23379 20.69 3.82754 21.375 4.59004 21.375H19.41C20.1725 21.375 20.7675 20.69 20.65 19.9363C20.4238 18.4925 19.8725 17.9263 19.5263 17.5575Z\" fill=\"white\"/>\n</g>\n<defs>\n<clipPath id=\"clip0_2052_303\">\n<rect x=\"2\" y=\"2.625\" width=\"20\" height=\"20\" rx=\"0.833333\" fill=\"white\"/>\n</clipPath>\n<clipPath id=\"clip1_2052_303\">\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(2 2.625)\"/>\n</clipPath>\n</defs>\n</svg>\n"
5
+ "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de5d1d13-b02f-4da9-8403-da05c2a71bc8",
6
+ "graphic": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M1.57895 14.8947C1.42456 14.8947 1.28947 14.8368 1.17368 14.7211C1.05789 14.6053 1 14.4702 1 14.3158C1 14.1614 1.05789 14.0263 1.17368 13.9105C1.28947 13.7947 1.42456 13.7368 1.57895 13.7368C1.73333 13.7368 1.86842 13.7947 1.98421 13.9105C2.1 14.0263 2.15789 14.1614 2.15789 14.3158C2.15789 14.4702 2.1 14.6053 1.98421 14.7211C1.86842 14.8368 1.73333 14.8947 1.57895 14.8947ZM1.57895 10.2632C1.42456 10.2632 1.28947 10.2053 1.17368 10.0895C1.05789 9.97368 1 9.8386 1 9.68421C1 9.52983 1.05789 9.39474 1.17368 9.27895C1.28947 9.16316 1.42456 9.10526 1.57895 9.10526C1.73333 9.10526 1.86842 9.16316 1.98421 9.27895C2.1 9.39474 2.15789 9.52983 2.15789 9.68421C2.15789 9.8386 2.1 9.97368 1.98421 10.0895C1.86842 10.2053 1.73333 10.2632 1.57895 10.2632ZM5.05263 20.1053C4.72456 20.1053 4.44956 19.9943 4.22763 19.7724C4.0057 19.5504 3.89474 19.2754 3.89474 18.9474C3.89474 18.6193 4.0057 18.3443 4.22763 18.1224C4.44956 17.9004 4.72456 17.7895 5.05263 17.7895C5.3807 17.7895 5.6557 17.9004 5.87763 18.1224C6.09956 18.3443 6.21053 18.6193 6.21053 18.9474C6.21053 19.2754 6.09956 19.5504 5.87763 19.7724C5.6557 19.9943 5.3807 20.1053 5.05263 20.1053ZM5.05263 15.4737C4.72456 15.4737 4.44956 15.3627 4.22763 15.1408C4.0057 14.9189 3.89474 14.6439 3.89474 14.3158C3.89474 13.9877 4.0057 13.7127 4.22763 13.4908C4.44956 13.2689 4.72456 13.1579 5.05263 13.1579C5.3807 13.1579 5.6557 13.2689 5.87763 13.4908C6.09956 13.7127 6.21053 13.9877 6.21053 14.3158C6.21053 14.6439 6.09956 14.9189 5.87763 15.1408C5.6557 15.3627 5.3807 15.4737 5.05263 15.4737ZM5.05263 10.8421C4.72456 10.8421 4.44956 10.7311 4.22763 10.5092C4.0057 10.2873 3.89474 10.0123 3.89474 9.68421C3.89474 9.35614 4.0057 9.08114 4.22763 8.85921C4.44956 8.63728 4.72456 8.52632 5.05263 8.52632C5.3807 8.52632 5.6557 8.63728 5.87763 8.85921C6.09956 9.08114 6.21053 9.35614 6.21053 9.68421C6.21053 10.0123 6.09956 10.2873 5.87763 10.5092C5.6557 10.7311 5.3807 10.8421 5.05263 10.8421ZM5.05263 6.21053C4.72456 6.21053 4.44956 6.09956 4.22763 5.87763C4.0057 5.6557 3.89474 5.3807 3.89474 5.05263C3.89474 4.72456 4.0057 4.44956 4.22763 4.22763C4.44956 4.0057 4.72456 3.89474 5.05263 3.89474C5.3807 3.89474 5.6557 4.0057 5.87763 4.22763C6.09956 4.44956 6.21053 4.72456 6.21053 5.05263C6.21053 5.3807 6.09956 5.6557 5.87763 5.87763C5.6557 6.09956 5.3807 6.21053 5.05263 6.21053ZM9.68421 20.1053C9.35614 20.1053 9.08114 19.9943 8.85921 19.7724C8.63728 19.5504 8.52632 19.2754 8.52632 18.9474C8.52632 18.6193 8.63728 18.3443 8.85921 18.1224C9.08114 17.9004 9.35614 17.7895 9.68421 17.7895C10.0123 17.7895 10.2873 17.9004 10.5092 18.1224C10.7311 18.3443 10.8421 18.6193 10.8421 18.9474C10.8421 19.2754 10.7311 19.5504 10.5092 19.7724C10.2873 19.9943 10.0123 20.1053 9.68421 20.1053ZM9.68421 6.21053C9.35614 6.21053 9.08114 6.09956 8.85921 5.87763C8.63728 5.6557 8.52632 5.3807 8.52632 5.05263C8.52632 4.72456 8.63728 4.44956 8.85921 4.22763C9.08114 4.0057 9.35614 3.89474 9.68421 3.89474C10.0123 3.89474 10.2873 4.0057 10.5092 4.22763C10.7311 4.44956 10.8421 4.72456 10.8421 5.05263C10.8421 5.3807 10.7311 5.6557 10.5092 5.87763C10.2873 6.09956 10.0123 6.21053 9.68421 6.21053ZM9.68421 23C9.52983 23 9.39474 22.9421 9.27895 22.8263C9.16316 22.7105 9.10526 22.5754 9.10526 22.4211C9.10526 22.2667 9.16316 22.1316 9.27895 22.0158C9.39474 21.9 9.52983 21.8421 9.68421 21.8421C9.8386 21.8421 9.97368 21.9 10.0895 22.0158C10.2053 22.1316 10.2632 22.2667 10.2632 22.4211C10.2632 22.5754 10.2053 22.7105 10.0895 22.8263C9.97368 22.9421 9.8386 23 9.68421 23ZM9.68421 2.15789C9.52983 2.15789 9.39474 2.1 9.27895 1.98421C9.16316 1.86842 9.10526 1.73333 9.10526 1.57895C9.10526 1.42456 9.16316 1.28947 9.27895 1.17368C9.39474 1.05789 9.52983 1 9.68421 1C9.8386 1 9.97368 1.05789 10.0895 1.17368C10.2053 1.28947 10.2632 1.42456 10.2632 1.57895C10.2632 1.73333 10.2053 1.86842 10.0895 1.98421C9.97368 2.1 9.8386 2.15789 9.68421 2.15789ZM14.3158 20.1053C13.9877 20.1053 13.7127 19.9943 13.4908 19.7724C13.2689 19.5504 13.1579 19.2754 13.1579 18.9474C13.1579 18.6193 13.2689 18.3443 13.4908 18.1224C13.7127 17.9004 13.9877 17.7895 14.3158 17.7895C14.6439 17.7895 14.9189 17.9004 15.1408 18.1224C15.3627 18.3443 15.4737 18.6193 15.4737 18.9474C15.4737 19.2754 15.3627 19.5504 15.1408 19.7724C14.9189 19.9943 14.6439 20.1053 14.3158 20.1053ZM14.3158 6.21053C13.9877 6.21053 13.7127 6.09956 13.4908 5.87763C13.2689 5.6557 13.1579 5.3807 13.1579 5.05263C13.1579 4.72456 13.2689 4.44956 13.4908 4.22763C13.7127 4.0057 13.9877 3.89474 14.3158 3.89474C14.6439 3.89474 14.9189 4.0057 15.1408 4.22763C15.3627 4.44956 15.4737 4.72456 15.4737 5.05263C15.4737 5.3807 15.3627 5.6557 15.1408 5.87763C14.9189 6.09956 14.6439 6.21053 14.3158 6.21053ZM14.3158 23C14.1614 23 14.0263 22.9421 13.9105 22.8263C13.7947 22.7105 13.7368 22.5754 13.7368 22.4211C13.7368 22.2667 13.7947 22.1316 13.9105 22.0158C14.0263 21.9 14.1614 21.8421 14.3158 21.8421C14.4702 21.8421 14.6053 21.9 14.7211 22.0158C14.8368 22.1316 14.8947 22.2667 14.8947 22.4211C14.8947 22.5754 14.8368 22.7105 14.7211 22.8263C14.6053 22.9421 14.4702 23 14.3158 23ZM14.3158 2.15789C14.1614 2.15789 14.0263 2.1 13.9105 1.98421C13.7947 1.86842 13.7368 1.73333 13.7368 1.57895C13.7368 1.42456 13.7947 1.28947 13.9105 1.17368C14.0263 1.05789 14.1614 1 14.3158 1C14.4702 1 14.6053 1.05789 14.7211 1.17368C14.8368 1.28947 14.8947 1.42456 14.8947 1.57895C14.8947 1.73333 14.8368 1.86842 14.7211 1.98421C14.6053 2.1 14.4702 2.15789 14.3158 2.15789ZM18.9474 20.1053C18.6193 20.1053 18.3443 19.9943 18.1224 19.7724C17.9004 19.5504 17.7895 19.2754 17.7895 18.9474C17.7895 18.6193 17.9004 18.3443 18.1224 18.1224C18.3443 17.9004 18.6193 17.7895 18.9474 17.7895C19.2754 17.7895 19.5504 17.9004 19.7724 18.1224C19.9943 18.3443 20.1053 18.6193 20.1053 18.9474C20.1053 19.2754 19.9943 19.5504 19.7724 19.7724C19.5504 19.9943 19.2754 20.1053 18.9474 20.1053ZM18.9474 15.4737C18.6193 15.4737 18.3443 15.3627 18.1224 15.1408C17.9004 14.9189 17.7895 14.6439 17.7895 14.3158C17.7895 13.9877 17.9004 13.7127 18.1224 13.4908C18.3443 13.2689 18.6193 13.1579 18.9474 13.1579C19.2754 13.1579 19.5504 13.2689 19.7724 13.4908C19.9943 13.7127 20.1053 13.9877 20.1053 14.3158C20.1053 14.6439 19.9943 14.9189 19.7724 15.1408C19.5504 15.3627 19.2754 15.4737 18.9474 15.4737ZM18.9474 10.8421C18.6193 10.8421 18.3443 10.7311 18.1224 10.5092C17.9004 10.2873 17.7895 10.0123 17.7895 9.68421C17.7895 9.35614 17.9004 9.08114 18.1224 8.85921C18.3443 8.63728 18.6193 8.52632 18.9474 8.52632C19.2754 8.52632 19.5504 8.63728 19.7724 8.85921C19.9943 9.08114 20.1053 9.35614 20.1053 9.68421C20.1053 10.0123 19.9943 10.2873 19.7724 10.5092C19.5504 10.7311 19.2754 10.8421 18.9474 10.8421ZM18.9474 6.21053C18.6193 6.21053 18.3443 6.09956 18.1224 5.87763C17.9004 5.6557 17.7895 5.3807 17.7895 5.05263C17.7895 4.72456 17.9004 4.44956 18.1224 4.22763C18.3443 4.0057 18.6193 3.89474 18.9474 3.89474C19.2754 3.89474 19.5504 4.0057 19.7724 4.22763C19.9943 4.44956 20.1053 4.72456 20.1053 5.05263C20.1053 5.3807 19.9943 5.6557 19.7724 5.87763C19.5504 6.09956 19.2754 6.21053 18.9474 6.21053ZM22.4211 14.8947C22.2667 14.8947 22.1316 14.8368 22.0158 14.7211C21.9 14.6053 21.8421 14.4702 21.8421 14.3158C21.8421 14.1614 21.9 14.0263 22.0158 13.9105C22.1316 13.7947 22.2667 13.7368 22.4211 13.7368C22.5754 13.7368 22.7105 13.7947 22.8263 13.9105C22.9421 14.0263 23 14.1614 23 14.3158C23 14.4702 22.9421 14.6053 22.8263 14.7211C22.7105 14.8368 22.5754 14.8947 22.4211 14.8947ZM22.4211 10.2632C22.2667 10.2632 22.1316 10.2053 22.0158 10.0895C21.9 9.97368 21.8421 9.8386 21.8421 9.68421C21.8421 9.52983 21.9 9.39474 22.0158 9.27895C22.1316 9.16316 22.2667 9.10526 22.4211 9.10526C22.5754 9.10526 22.7105 9.16316 22.8263 9.27895C22.9421 9.39474 23 9.52983 23 9.68421C23 9.8386 22.9421 9.97368 22.8263 10.0895C22.7105 10.2053 22.5754 10.2632 22.4211 10.2632ZM7.36842 16.6316V15.9947C7.36842 14.9912 7.85088 14.2675 8.81579 13.8237C9.7807 13.3798 10.8421 13.1579 12 13.1579C13.1579 13.1579 14.2193 13.3798 15.1842 13.8237C16.1491 14.2675 16.6316 14.9912 16.6316 15.9947V16.6316H7.36842ZM12 12C11.3632 12 10.818 11.7732 10.3645 11.3197C9.91097 10.8662 9.68421 10.3211 9.68421 9.68421C9.68421 9.04737 9.91097 8.50219 10.3645 8.04868C10.818 7.59518 11.3632 7.36842 12 7.36842C12.6368 7.36842 13.182 7.59518 13.6355 8.04868C14.089 8.50219 14.3158 9.04737 14.3158 9.68421C14.3158 10.3211 14.089 10.8662 13.6355 11.3197C13.182 11.7732 12.6368 12 12 12Z\" fill=\"white\"/>\n</svg>\n"
7
7
  }
@@ -7,37 +7,8 @@
7
7
  viewBox="0 0 24 24"
8
8
  aria-hidden="true"
9
9
  >
10
- <g clip-path="url(#IconBackgroundBlur_24__a)">
11
- <g clip-path="url(#IconBackgroundBlur_24__b)">
12
- <path
13
- fill="currentColor"
14
- d="M12 13.557a4.17 4.17 0 0 0 4.167-4.167A4.17 4.17 0 0 0 12 5.225 4.17 4.17 0 0 0 7.834 9.39a4.17 4.17 0 0 0 4.168 4.167"
15
- />
16
- </g>
17
- <path
18
- fill="currentColor"
19
- fill-rule="evenodd"
20
- d="m16.084-7.204 1.237 1.237-22.855 22.855-1.237-1.237zm-5.54.236 1.238 1.237L-5.45 11.502l-1.237-1.237zm11.372 1.71-1.238-1.237L9.963 4.22a5.5 5.5 0 0 1 2.79-.316zM-6.722 20.907 6.817 7.366a5.5 5.5 0 0 0-.315 2.79L-5.485 22.143zm11.634-6.331 2.342-2.342c.308.502.695.952 1.142 1.332l-.4.4a20.5 20.5 0 0 0-3.084.61m.334 10.272-9.638 9.639 1.237 1.237L7.721 24.847zm5.703 0L-4.392 40.19l1.237 1.237 16.58-16.579zm11.36-8.885a11 11 0 0 0-1.636-.838l8.749-8.749 1.237 1.238zm-4.092-1.611a22 22 0 0 0-2.103-.372L29.422.672l1.237 1.237zm-.746-4.992q0 .229-.019.453L26.875.39 25.637-.847l-8.452 8.452c.185.55.286 1.14.286 1.754m-2.64-4.703c.503.308.953.694 1.332 1.142l7.982-7.981-1.238-1.238z"
21
- clip-rule="evenodd"
22
- />
23
- <path
24
- fill="currentColor"
25
- d="M19.526 17.558c-1.198-1.283-3.459-2.235-7.526-2.235-4.102 0-6.366.968-7.557 2.267-.32.349-.868.905-1.093 2.346a1.256 1.256 0 0 0 1.24 1.439h14.82c.762 0 1.357-.685 1.24-1.439-.226-1.444-.777-2.01-1.124-2.378"
26
- />
27
- </g>
28
- <defs>
29
- <clipPath id="IconBackgroundBlur_24__a">
30
- <rect
31
- width="20"
32
- height="20"
33
- x="2"
34
- y="2.625"
35
- fill="currentColor"
36
- rx=".833"
37
- />
38
- </clipPath>
39
- <clipPath id="IconBackgroundBlur_24__b">
40
- <path fill="currentColor" d="M2 2.625h20v20H2z" />
41
- </clipPath>
42
- </defs>
10
+ <path
11
+ fill="currentColor"
12
+ d="M1.579 14.895a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.233.174-.405a.56.56 0 0 1 .405-.174q.232 0 .405.174.174.173.174.405t-.174.405a.56.56 0 0 1-.405.174m0-4.632a.56.56 0 0 1-.405-.174A.56.56 0 0 1 1 9.685q0-.232.174-.405a.56.56 0 0 1 .405-.174q.232 0 .405.174.174.173.174.405t-.174.406a.56.56 0 0 1-.405.173m3.474 9.842a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.332q.492 0 .825.332.333.333.333.825t-.333.825a1.12 1.12 0 0 1-.825.333m0-4.631a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m0-4.632a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m0-4.631a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m4.631 13.894a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.332q.492 0 .825.332.333.333.333.825t-.333.825a1.12 1.12 0 0 1-.825.333m0-13.894a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m0 16.789a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.232.174-.405a.56.56 0 0 1 .405-.174q.232 0 .406.174.173.173.173.405t-.174.405a.56.56 0 0 1-.405.174m0-20.842a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.232.174-.405A.56.56 0 0 1 9.684 1q.232 0 .406.174.173.172.173.405 0 .232-.174.405a.56.56 0 0 1-.405.174m4.632 17.947a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.332q.492 0 .825.332.333.333.333.825t-.333.825a1.12 1.12 0 0 1-.825.333m0-13.894a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.333-.825q0-.492.333-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m0 16.789a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.232.174-.405a.56.56 0 0 1 .405-.174q.232 0 .405.174.174.173.174.405t-.174.405a.56.56 0 0 1-.405.174m0-20.842a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.232.174-.405A.56.56 0 0 1 14.316 1q.232 0 .405.174.174.172.174.405 0 .232-.174.405a.56.56 0 0 1-.405.174m4.631 17.947a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.332-.825q0-.492.332-.825a1.12 1.12 0 0 1 .825-.332q.492 0 .825.332.333.333.333.825t-.333.825a1.12 1.12 0 0 1-.825.333m0-4.631a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.332-.825q0-.492.332-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m0-4.632a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.332-.825q0-.492.332-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m0-4.631a1.12 1.12 0 0 1-.825-.333 1.12 1.12 0 0 1-.332-.825q0-.492.332-.825a1.12 1.12 0 0 1 .825-.333q.492 0 .825.333t.333.825-.333.825a1.12 1.12 0 0 1-.825.333m3.474 8.684a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.233.174-.405a.56.56 0 0 1 .405-.174q.232 0 .405.174.174.173.174.405t-.174.405a.56.56 0 0 1-.405.174m0-4.632a.56.56 0 0 1-.405-.174.56.56 0 0 1-.174-.405q0-.232.174-.405a.56.56 0 0 1 .405-.174q.232 0 .405.174.174.173.174.405t-.174.406a.56.56 0 0 1-.405.173M7.368 16.632v-.637q0-1.506 1.448-2.171 1.447-.666 3.184-.666t3.184.666q1.448.666 1.448 2.17v.638zM12 12a2.23 2.23 0 0 1-1.636-.68 2.23 2.23 0 0 1-.68-1.636q0-.956.68-1.635A2.23 2.23 0 0 1 12 7.369a2.23 2.23 0 0 1 1.636.68q.68.68.68 1.635a2.23 2.23 0 0 1-.68 1.636A2.23 2.23 0 0 1 12 12"
13
+ />
43
14
  </svg>
@@ -0,0 +1,7 @@
1
+ {
2
+ "iconName": "background-blur-32",
3
+ "name": "32px-background-blur",
4
+ "pascalName": "IconBackgroundBlur_32",
5
+ "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b694d95e-abd1-420a-aab3-a34b03be5958",
6
+ "graphic": "<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M4.63158 19.1579C4.46316 19.1579 4.31579 19.0947 4.18947 18.9684C4.06316 18.8421 4 18.6947 4 18.5263C4 18.3579 4.06316 18.2105 4.18947 18.0842C4.31579 17.9579 4.46316 17.8947 4.63158 17.8947C4.8 17.8947 4.94737 17.9579 5.07368 18.0842C5.2 18.2105 5.26316 18.3579 5.26316 18.5263C5.26316 18.6947 5.2 18.8421 5.07368 18.9684C4.94737 19.0947 4.8 19.1579 4.63158 19.1579ZM4.63158 14.1053C4.46316 14.1053 4.31579 14.0421 4.18947 13.9158C4.06316 13.7895 4 13.6421 4 13.4737C4 13.3053 4.06316 13.1579 4.18947 13.0316C4.31579 12.9053 4.46316 12.8421 4.63158 12.8421C4.8 12.8421 4.94737 12.9053 5.07368 13.0316C5.2 13.1579 5.26316 13.3053 5.26316 13.4737C5.26316 13.6421 5.2 13.7895 5.07368 13.9158C4.94737 14.0421 4.8 14.1053 4.63158 14.1053ZM8.42105 24.8421C8.06316 24.8421 7.76316 24.7211 7.52105 24.4789C7.27895 24.2368 7.15789 23.9368 7.15789 23.5789C7.15789 23.2211 7.27895 22.9211 7.52105 22.6789C7.76316 22.4368 8.06316 22.3158 8.42105 22.3158C8.77895 22.3158 9.07895 22.4368 9.32105 22.6789C9.56316 22.9211 9.68421 23.2211 9.68421 23.5789C9.68421 23.9368 9.56316 24.2368 9.32105 24.4789C9.07895 24.7211 8.77895 24.8421 8.42105 24.8421ZM8.42105 19.7895C8.06316 19.7895 7.76316 19.6684 7.52105 19.4263C7.27895 19.1842 7.15789 18.8842 7.15789 18.5263C7.15789 18.1684 7.27895 17.8684 7.52105 17.6263C7.76316 17.3842 8.06316 17.2632 8.42105 17.2632C8.77895 17.2632 9.07895 17.3842 9.32105 17.6263C9.56316 17.8684 9.68421 18.1684 9.68421 18.5263C9.68421 18.8842 9.56316 19.1842 9.32105 19.4263C9.07895 19.6684 8.77895 19.7895 8.42105 19.7895ZM8.42105 14.7368C8.06316 14.7368 7.76316 14.6158 7.52105 14.3737C7.27895 14.1316 7.15789 13.8316 7.15789 13.4737C7.15789 13.1158 7.27895 12.8158 7.52105 12.5737C7.76316 12.3316 8.06316 12.2105 8.42105 12.2105C8.77895 12.2105 9.07895 12.3316 9.32105 12.5737C9.56316 12.8158 9.68421 13.1158 9.68421 13.4737C9.68421 13.8316 9.56316 14.1316 9.32105 14.3737C9.07895 14.6158 8.77895 14.7368 8.42105 14.7368ZM8.42105 9.68421C8.06316 9.68421 7.76316 9.56316 7.52105 9.32105C7.27895 9.07895 7.15789 8.77895 7.15789 8.42105C7.15789 8.06316 7.27895 7.76316 7.52105 7.52105C7.76316 7.27895 8.06316 7.15789 8.42105 7.15789C8.77895 7.15789 9.07895 7.27895 9.32105 7.52105C9.56316 7.76316 9.68421 8.06316 9.68421 8.42105C9.68421 8.77895 9.56316 9.07895 9.32105 9.32105C9.07895 9.56316 8.77895 9.68421 8.42105 9.68421ZM13.4737 24.8421C13.1158 24.8421 12.8158 24.7211 12.5737 24.4789C12.3316 24.2368 12.2105 23.9368 12.2105 23.5789C12.2105 23.2211 12.3316 22.9211 12.5737 22.6789C12.8158 22.4368 13.1158 22.3158 13.4737 22.3158C13.8316 22.3158 14.1316 22.4368 14.3737 22.6789C14.6158 22.9211 14.7368 23.2211 14.7368 23.5789C14.7368 23.9368 14.6158 24.2368 14.3737 24.4789C14.1316 24.7211 13.8316 24.8421 13.4737 24.8421ZM13.4737 9.68421C13.1158 9.68421 12.8158 9.56316 12.5737 9.32105C12.3316 9.07895 12.2105 8.77895 12.2105 8.42105C12.2105 8.06316 12.3316 7.76316 12.5737 7.52105C12.8158 7.27895 13.1158 7.15789 13.4737 7.15789C13.8316 7.15789 14.1316 7.27895 14.3737 7.52105C14.6158 7.76316 14.7368 8.06316 14.7368 8.42105C14.7368 8.77895 14.6158 9.07895 14.3737 9.32105C14.1316 9.56316 13.8316 9.68421 13.4737 9.68421ZM13.4737 28C13.3053 28 13.1579 27.9368 13.0316 27.8105C12.9053 27.6842 12.8421 27.5368 12.8421 27.3684C12.8421 27.2 12.9053 27.0526 13.0316 26.9263C13.1579 26.8 13.3053 26.7368 13.4737 26.7368C13.6421 26.7368 13.7895 26.8 13.9158 26.9263C14.0421 27.0526 14.1053 27.2 14.1053 27.3684C14.1053 27.5368 14.0421 27.6842 13.9158 27.8105C13.7895 27.9368 13.6421 28 13.4737 28ZM13.4737 5.26316C13.3053 5.26316 13.1579 5.2 13.0316 5.07368C12.9053 4.94737 12.8421 4.8 12.8421 4.63158C12.8421 4.46316 12.9053 4.31579 13.0316 4.18947C13.1579 4.06316 13.3053 4 13.4737 4C13.6421 4 13.7895 4.06316 13.9158 4.18947C14.0421 4.31579 14.1053 4.46316 14.1053 4.63158C14.1053 4.8 14.0421 4.94737 13.9158 5.07368C13.7895 5.2 13.6421 5.26316 13.4737 5.26316ZM18.5263 24.8421C18.1684 24.8421 17.8684 24.7211 17.6263 24.4789C17.3842 24.2368 17.2632 23.9368 17.2632 23.5789C17.2632 23.2211 17.3842 22.9211 17.6263 22.6789C17.8684 22.4368 18.1684 22.3158 18.5263 22.3158C18.8842 22.3158 19.1842 22.4368 19.4263 22.6789C19.6684 22.9211 19.7895 23.2211 19.7895 23.5789C19.7895 23.9368 19.6684 24.2368 19.4263 24.4789C19.1842 24.7211 18.8842 24.8421 18.5263 24.8421ZM18.5263 9.68421C18.1684 9.68421 17.8684 9.56316 17.6263 9.32105C17.3842 9.07895 17.2632 8.77895 17.2632 8.42105C17.2632 8.06316 17.3842 7.76316 17.6263 7.52105C17.8684 7.27895 18.1684 7.15789 18.5263 7.15789C18.8842 7.15789 19.1842 7.27895 19.4263 7.52105C19.6684 7.76316 19.7895 8.06316 19.7895 8.42105C19.7895 8.77895 19.6684 9.07895 19.4263 9.32105C19.1842 9.56316 18.8842 9.68421 18.5263 9.68421ZM18.5263 28C18.3579 28 18.2105 27.9368 18.0842 27.8105C17.9579 27.6842 17.8947 27.5368 17.8947 27.3684C17.8947 27.2 17.9579 27.0526 18.0842 26.9263C18.2105 26.8 18.3579 26.7368 18.5263 26.7368C18.6947 26.7368 18.8421 26.8 18.9684 26.9263C19.0947 27.0526 19.1579 27.2 19.1579 27.3684C19.1579 27.5368 19.0947 27.6842 18.9684 27.8105C18.8421 27.9368 18.6947 28 18.5263 28ZM18.5263 5.26316C18.3579 5.26316 18.2105 5.2 18.0842 5.07368C17.9579 4.94737 17.8947 4.8 17.8947 4.63158C17.8947 4.46316 17.9579 4.31579 18.0842 4.18947C18.2105 4.06316 18.3579 4 18.5263 4C18.6947 4 18.8421 4.06316 18.9684 4.18947C19.0947 4.31579 19.1579 4.46316 19.1579 4.63158C19.1579 4.8 19.0947 4.94737 18.9684 5.07368C18.8421 5.2 18.6947 5.26316 18.5263 5.26316ZM23.5789 24.8421C23.2211 24.8421 22.9211 24.7211 22.6789 24.4789C22.4368 24.2368 22.3158 23.9368 22.3158 23.5789C22.3158 23.2211 22.4368 22.9211 22.6789 22.6789C22.9211 22.4368 23.2211 22.3158 23.5789 22.3158C23.9368 22.3158 24.2368 22.4368 24.4789 22.6789C24.7211 22.9211 24.8421 23.2211 24.8421 23.5789C24.8421 23.9368 24.7211 24.2368 24.4789 24.4789C24.2368 24.7211 23.9368 24.8421 23.5789 24.8421ZM23.5789 19.7895C23.2211 19.7895 22.9211 19.6684 22.6789 19.4263C22.4368 19.1842 22.3158 18.8842 22.3158 18.5263C22.3158 18.1684 22.4368 17.8684 22.6789 17.6263C22.9211 17.3842 23.2211 17.2632 23.5789 17.2632C23.9368 17.2632 24.2368 17.3842 24.4789 17.6263C24.7211 17.8684 24.8421 18.1684 24.8421 18.5263C24.8421 18.8842 24.7211 19.1842 24.4789 19.4263C24.2368 19.6684 23.9368 19.7895 23.5789 19.7895ZM23.5789 14.7368C23.2211 14.7368 22.9211 14.6158 22.6789 14.3737C22.4368 14.1316 22.3158 13.8316 22.3158 13.4737C22.3158 13.1158 22.4368 12.8158 22.6789 12.5737C22.9211 12.3316 23.2211 12.2105 23.5789 12.2105C23.9368 12.2105 24.2368 12.3316 24.4789 12.5737C24.7211 12.8158 24.8421 13.1158 24.8421 13.4737C24.8421 13.8316 24.7211 14.1316 24.4789 14.3737C24.2368 14.6158 23.9368 14.7368 23.5789 14.7368ZM23.5789 9.68421C23.2211 9.68421 22.9211 9.56316 22.6789 9.32105C22.4368 9.07895 22.3158 8.77895 22.3158 8.42105C22.3158 8.06316 22.4368 7.76316 22.6789 7.52105C22.9211 7.27895 23.2211 7.15789 23.5789 7.15789C23.9368 7.15789 24.2368 7.27895 24.4789 7.52105C24.7211 7.76316 24.8421 8.06316 24.8421 8.42105C24.8421 8.77895 24.7211 9.07895 24.4789 9.32105C24.2368 9.56316 23.9368 9.68421 23.5789 9.68421ZM27.3684 19.1579C27.2 19.1579 27.0526 19.0947 26.9263 18.9684C26.8 18.8421 26.7368 18.6947 26.7368 18.5263C26.7368 18.3579 26.8 18.2105 26.9263 18.0842C27.0526 17.9579 27.2 17.8947 27.3684 17.8947C27.5368 17.8947 27.6842 17.9579 27.8105 18.0842C27.9368 18.2105 28 18.3579 28 18.5263C28 18.6947 27.9368 18.8421 27.8105 18.9684C27.6842 19.0947 27.5368 19.1579 27.3684 19.1579ZM27.3684 14.1053C27.2 14.1053 27.0526 14.0421 26.9263 13.9158C26.8 13.7895 26.7368 13.6421 26.7368 13.4737C26.7368 13.3053 26.8 13.1579 26.9263 13.0316C27.0526 12.9053 27.2 12.8421 27.3684 12.8421C27.5368 12.8421 27.6842 12.9053 27.8105 13.0316C27.9368 13.1579 28 13.3053 28 13.4737C28 13.6421 27.9368 13.7895 27.8105 13.9158C27.6842 14.0421 27.5368 14.1053 27.3684 14.1053ZM10.9474 21.0526V20.3579C10.9474 19.2632 11.4737 18.4737 12.5263 17.9895C13.5789 17.5053 14.7368 17.2632 16 17.2632C17.2632 17.2632 18.4211 17.5053 19.4737 17.9895C20.5263 18.4737 21.0526 19.2632 21.0526 20.3579V21.0526H10.9474ZM16 16C15.3053 16 14.7105 15.7526 14.2158 15.2579C13.7211 14.7632 13.4737 14.1684 13.4737 13.4737C13.4737 12.7789 13.7211 12.1842 14.2158 11.6895C14.7105 11.1947 15.3053 10.9474 16 10.9474C16.6947 10.9474 17.2895 11.1947 17.7842 11.6895C18.2789 12.1842 18.5263 12.7789 18.5263 13.4737C18.5263 14.1684 18.2789 14.7632 17.7842 15.2579C17.2895 15.7526 16.6947 16 16 16Z\" fill=\"white\"/>\n</svg>\n"
7
+ }
@@ -0,0 +1,14 @@
1
+ <!-- FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE -->
2
+
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ fill="none"
6
+ data-token-name="IconBackgroundBlur_32"
7
+ viewBox="0 0 32 32"
8
+ aria-hidden="true"
9
+ >
10
+ <path
11
+ fill="currentColor"
12
+ d="M4.632 19.158a.6.6 0 0 1-.443-.19.6.6 0 0 1-.189-.442q0-.252.19-.442a.6.6 0 0 1 .442-.19q.252 0 .442.19t.19.442a.6.6 0 0 1-.19.442.6.6 0 0 1-.442.19m0-5.053a.6.6 0 0 1-.443-.19.6.6 0 0 1-.189-.441q0-.253.19-.442a.6.6 0 0 1 .442-.19q.252 0 .442.19.19.189.19.442a.6.6 0 0 1-.19.442.6.6 0 0 1-.442.19M8.42 24.842q-.537 0-.9-.363a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.363m0-5.052q-.537 0-.9-.364a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.364m0-5.053q-.537 0-.9-.363a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.364.9.364.363.9-.363.9a1.22 1.22 0 0 1-.9.363m0-5.053q-.537 0-.9-.363a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.363m5.053 15.158q-.537 0-.9-.363a1.22 1.22 0 0 1-.364-.9q0-.537.364-.9.363-.363.9-.363t.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.363m0-15.158q-.537 0-.9-.363a1.22 1.22 0 0 1-.364-.9q0-.537.364-.9.363-.363.9-.363t.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.363m0 18.316a.6.6 0 0 1-.442-.19.6.6 0 0 1-.19-.442q0-.252.19-.442a.6.6 0 0 1 .442-.19q.252 0 .442.19t.19.442a.6.6 0 0 1-.19.443.6.6 0 0 1-.442.189m0-22.737a.6.6 0 0 1-.442-.19.6.6 0 0 1-.19-.441q0-.253.19-.443A.6.6 0 0 1 13.474 4q.252 0 .442.19.19.189.19.442a.6.6 0 0 1-.19.442.6.6 0 0 1-.442.19m5.052 19.58q-.537 0-.9-.364a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.364.9-.364.9a1.22 1.22 0 0 1-.9.363m0-15.159q-.537 0-.9-.363a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.364.9-.364.9a1.22 1.22 0 0 1-.9.363m0 18.316a.6.6 0 0 1-.442-.19.6.6 0 0 1-.19-.442q0-.252.19-.442a.6.6 0 0 1 .442-.19q.253 0 .442.19.19.19.19.442a.6.6 0 0 1-.19.443.6.6 0 0 1-.442.189m0-22.737a.6.6 0 0 1-.442-.19.6.6 0 0 1-.19-.441q0-.253.19-.443A.6.6 0 0 1 18.526 4q.253 0 .442.19.19.189.19.442a.6.6 0 0 1-.19.442.6.6 0 0 1-.442.19m5.053 19.58q-.537 0-.9-.364a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.363m0-5.053q-.537 0-.9-.364a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.364m0-5.053q-.537 0-.9-.363a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.364.9.364.363.9-.363.9a1.22 1.22 0 0 1-.9.363m0-5.053q-.537 0-.9-.363a1.22 1.22 0 0 1-.363-.9q0-.537.363-.9t.9-.363.9.363.363.9-.363.9a1.22 1.22 0 0 1-.9.363m3.79 9.474a.6.6 0 0 1-.443-.19.6.6 0 0 1-.19-.442q0-.252.19-.442a.6.6 0 0 1 .442-.19q.253 0 .443.19.189.19.189.442a.6.6 0 0 1-.19.442.6.6 0 0 1-.442.19m0-5.053a.6.6 0 0 1-.443-.19.6.6 0 0 1-.19-.441q0-.253.19-.442a.6.6 0 0 1 .442-.19q.253 0 .443.19.189.189.189.442a.6.6 0 0 1-.19.442.6.6 0 0 1-.442.19m-16.422 6.948v-.695q0-1.642 1.58-2.369 1.578-.726 3.473-.726t3.474.726 1.579 2.369v.695zM16 16q-1.043 0-1.784-.742a2.43 2.43 0 0 1-.742-1.784q0-1.043.742-1.784A2.43 2.43 0 0 1 16 10.947q1.043 0 1.784.743.742.741.742 1.784 0 1.042-.742 1.784A2.43 2.43 0 0 1 16 16"
13
+ />
14
+ </svg>
@@ -0,0 +1,5 @@
1
+ // FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE
2
+
3
+ import type React from 'react';
4
+ const icon: React.FC<React.ComponentProps<'svg'>>;
5
+ export default icon;
@@ -0,0 +1,7 @@
1
+ {
2
+ "iconName": "background-replace-16",
3
+ "name": "16px-background-replace",
4
+ "pascalName": "IconBackgroundReplace_16",
5
+ "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fbb4a0e6-6833-48c6-a8be-a836c470cc59",
6
+ "graphic": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g clip-path=\"url(#clip0_2052_326)\">\n<g clip-path=\"url(#clip1_2052_326)\">\n<path d=\"M8.00032 9.0382C9.53216 9.0382 10.7777 7.79264 10.7777 6.26004C10.7777 4.72896 9.53216 3.4834 8.00032 3.4834C6.46849 3.4834 5.22217 4.72896 5.22217 6.26004C5.22217 7.79188 6.46849 9.0382 8.00032 9.0382Z\" fill=\"white\"/>\n</g>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4173 -8.07922L16.6547 -6.84179L7.15724 2.65568C5.78261 2.96761 4.69836 4.05144 4.38685 5.42607L-6.20031 16.0132L-7.43774 14.7758L15.4173 -8.07922ZM2.76551 9.87582L4.70951 7.93181C4.98394 8.45879 5.38233 8.91127 5.86582 9.25037L5.86457 9.25163C4.66692 9.36455 3.63948 9.57667 2.76551 9.87582ZM-1.18553 13.8269L-7.38908 20.0304L-6.15165 21.2678L-0.692565 15.8088C-1.11936 15.3498 -1.34174 14.7268 -1.23108 14.0684C-1.2171 13.9857 -1.20189 13.9052 -1.18553 13.8269ZM2.26143 16.5648L3.0581 17.3614L3.85476 16.5648H2.26143ZM6.68316 16.5648L5.40003 17.8479L6.63747 19.0853L9.15804 16.5648H6.68316ZM14.9997 10.7231C14.5239 10.4088 13.9718 10.1365 13.3367 9.91121L24.9703 -1.7224L26.2078 -0.484968L14.9997 10.7231ZM11.9865 16.5648L-5.05911 33.6104L-3.82168 34.8478L14.4614 16.5648H11.9865ZM17.1881 13.8381C17.0586 13.2109 16.8554 12.7236 16.6168 12.3322C16.5645 12.2465 16.5112 12.1667 16.4583 12.0929L28.7548 -0.203552L29.9923 1.03388L17.1881 13.8381ZM11.0568 9.36274C10.7456 9.31643 10.4212 9.27769 10.0835 9.24678C11.0137 8.59182 11.6274 7.51633 11.6466 6.29806L22.2406 -4.29592L23.478 -3.05849L11.0568 9.36274ZM9.66392 2.97741C10.1911 3.25168 10.6436 3.64997 10.9828 4.13341L21.2487 -6.13254L20.0113 -7.36998L9.66392 2.97741ZM9.87804 -7.84331L11.1155 -6.60587L-6.11758 10.6272L-7.35502 9.38975L9.87804 -7.84331ZM29.9923 6.73739L28.7548 5.49996L-5.05911 39.3139L-3.82168 40.5513L29.9923 6.73739Z\" fill=\"white\"/>\n<path d=\"M13.0175 11.705C12.2184 10.85 10.7117 10.215 8.00002 10.215C5.26502 10.215 3.75586 10.8608 2.96169 11.7266C2.74919 11.9591 2.38336 12.33 2.23336 13.2908C2.15586 13.7933 2.55169 14.25 3.06002 14.25H12.94C13.4484 14.25 13.845 13.7933 13.7667 13.2908C13.6159 12.3283 13.2484 11.9508 13.0175 11.705Z\" fill=\"white\"/>\n</g>\n<defs>\n<clipPath id=\"clip0_2052_326\">\n<rect x=\"1.33325\" y=\"1.75\" width=\"13.3333\" height=\"13.3333\" rx=\"0.833333\" fill=\"white\"/>\n</clipPath>\n<clipPath id=\"clip1_2052_326\">\n<rect width=\"13.3333\" height=\"13.3333\" fill=\"white\" transform=\"translate(1.33325 1.75)\"/>\n</clipPath>\n</defs>\n</svg>\n"
7
+ }
@@ -0,0 +1,43 @@
1
+ <!-- FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE -->
2
+
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ fill="none"
6
+ data-token-name="IconBackgroundReplace_16"
7
+ viewBox="0 0 16 16"
8
+ aria-hidden="true"
9
+ >
10
+ <g clip-path="url(#IconBackgroundReplace_16__a)">
11
+ <g clip-path="url(#IconBackgroundReplace_16__b)">
12
+ <path
13
+ fill="currentColor"
14
+ d="M8 9.038a2.78 2.78 0 0 0 2.778-2.778A2.78 2.78 0 0 0 8 3.483 2.78 2.78 0 0 0 5.222 6.26 2.78 2.78 0 0 0 8 9.038"
15
+ />
16
+ </g>
17
+ <path
18
+ fill="currentColor"
19
+ fill-rule="evenodd"
20
+ d="m15.417-8.08 1.238 1.238-9.498 9.498a3.69 3.69 0 0 0-2.77 2.77L-6.2 16.013l-1.238-1.237zM2.766 9.877 4.71 7.932A3.7 3.7 0 0 0 5.866 9.25l-.001.002c-1.198.113-2.226.325-3.1.624m-3.952 3.95-6.203 6.204 1.237 1.238 5.46-5.46a2.04 2.04 0 0 1-.54-1.74q.022-.124.046-.241m3.447 2.739.797.796.797-.796zm4.422 0L5.4 17.848l1.237 1.237 2.521-2.52zM15 10.723a7.6 7.6 0 0 0-1.663-.812L24.97-1.722l1.238 1.237zm-3.014 5.842L-5.059 33.61l1.237 1.238 18.283-18.283zm5.202-2.727a4.7 4.7 0 0 0-.571-1.506 4 4 0 0 0-.159-.24L28.755-.203l1.237 1.238zm-6.131-4.475a17 17 0 0 0-.973-.116 3.67 3.67 0 0 0 1.563-2.949L22.24-4.296l1.237 1.238zM9.664 2.977c.527.275.98.673 1.319 1.156L21.249-6.133 20.01-7.37zm.214-10.82 1.238 1.237-17.234 17.233-1.237-1.237zm20.114 14.58L28.755 5.5-5.06 39.314l1.237 1.237z"
21
+ clip-rule="evenodd"
22
+ />
23
+ <path
24
+ fill="currentColor"
25
+ d="M13.018 11.705c-.8-.855-2.306-1.49-5.018-1.49-2.735 0-4.244.646-5.038 1.512-.213.232-.579.603-.729 1.564a.837.837 0 0 0 .827.959h9.88a.837.837 0 0 0 .827-.96c-.151-.962-.519-1.34-.75-1.585"
26
+ />
27
+ </g>
28
+ <defs>
29
+ <clipPath id="IconBackgroundReplace_16__a">
30
+ <rect
31
+ width="13.333"
32
+ height="13.333"
33
+ x="1.333"
34
+ y="1.75"
35
+ fill="currentColor"
36
+ rx=".833"
37
+ />
38
+ </clipPath>
39
+ <clipPath id="IconBackgroundReplace_16__b">
40
+ <path fill="currentColor" d="M1.333 1.75h13.333v13.333H1.333z" />
41
+ </clipPath>
42
+ </defs>
43
+ </svg>
@@ -0,0 +1,5 @@
1
+ // FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE
2
+
3
+ import type React from 'react';
4
+ const icon: React.FC<React.ComponentProps<'svg'>>;
5
+ export default icon;
@@ -0,0 +1,7 @@
1
+ {
2
+ "iconName": "background-replace-24",
3
+ "name": "24px-background-replace",
4
+ "pascalName": "IconBackgroundReplace_24",
5
+ "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07b879ae-f139-4b9a-bc75-b7b586e51af2",
6
+ "graphic": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<g clip-path=\"url(#clip0_2052_303)\">\n<g clip-path=\"url(#clip1_2052_303)\">\n<path d=\"M12.0005 13.5573C14.2982 13.5573 16.1666 11.689 16.1666 9.39007C16.1666 7.09344 14.2982 5.2251 12.0005 5.2251C9.70273 5.2251 7.83325 7.09344 7.83325 9.39007C7.83325 11.6878 9.70273 13.5573 12.0005 13.5573Z\" fill=\"white\"/>\n</g>\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.084 -7.2041L17.3214 -5.96667L-5.53357 16.8883L-6.77101 15.6509L16.084 -7.2041ZM10.5448 -6.96819L11.7822 -5.73075L-5.45085 11.5023L-6.68828 10.2649L10.5448 -6.96819ZM21.9155 -5.25743L20.678 -6.49486L9.96278 4.2204C10.5818 3.97951 11.2548 3.84731 11.9582 3.84731C12.2283 3.84731 12.4938 3.8668 12.7536 3.90444L21.9155 -5.25743ZM-6.72235 20.9055L6.81682 7.36636C6.57644 7.98443 6.4445 8.65632 6.4445 9.35863C6.4445 9.62941 6.4641 9.89568 6.50196 10.1561L-5.48491 22.143L-6.72235 20.9055ZM4.91155 14.575L7.25385 12.2327C7.56207 12.7355 7.94862 13.1853 8.3964 13.565L7.99646 13.9649C6.86088 14.1063 5.83499 14.3114 4.91155 14.575ZM5.24583 24.8473L-4.39238 34.4855L-3.15494 35.7229L7.7207 24.8473H5.24583ZM10.9493 24.8473L-4.39238 40.189L-3.15494 41.4264L13.4242 24.8473H10.9493ZM22.3093 15.9622C21.8168 15.6533 21.2723 15.373 20.6729 15.1237L29.4216 6.37508L30.659 7.61251L22.3093 15.9622ZM18.2173 14.3507C17.563 14.1999 16.8627 14.0754 16.1142 13.9789L29.4216 0.671566L30.659 1.909L18.2173 14.3507ZM17.4707 9.35863C17.4707 9.51142 17.4645 9.66277 17.4522 9.81244L26.8745 0.390151L25.6371 -0.847286L17.1849 7.60487C17.3702 8.15593 17.4707 8.74571 17.4707 9.35863ZM14.8309 4.65565C15.3338 4.96374 15.7837 5.35018 16.1635 5.79789L24.1448 -2.18337L22.9073 -3.4208L14.8309 4.65565Z\" fill=\"white\"/>\n<path d=\"M19.5263 17.5575C18.3275 16.275 16.0675 15.3225 12 15.3225C7.89754 15.3225 5.63379 16.2913 4.44254 17.59C4.12379 17.9388 3.57504 18.495 3.35004 19.9363C3.23379 20.69 3.82754 21.375 4.59004 21.375H19.41C20.1725 21.375 20.7675 20.69 20.65 19.9363C20.4238 18.4925 19.8725 17.9263 19.5263 17.5575Z\" fill=\"white\"/>\n</g>\n<defs>\n<clipPath id=\"clip0_2052_303\">\n<rect x=\"2\" y=\"2.625\" width=\"20\" height=\"20\" rx=\"0.833333\" fill=\"white\"/>\n</clipPath>\n<clipPath id=\"clip1_2052_303\">\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(2 2.625)\"/>\n</clipPath>\n</defs>\n</svg>\n"
7
+ }
@@ -0,0 +1,43 @@
1
+ <!-- FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE -->
2
+
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ fill="none"
6
+ data-token-name="IconBackgroundReplace_24"
7
+ viewBox="0 0 24 24"
8
+ aria-hidden="true"
9
+ >
10
+ <g clip-path="url(#IconBackgroundReplace_24__a)">
11
+ <g clip-path="url(#IconBackgroundReplace_24__b)">
12
+ <path
13
+ fill="currentColor"
14
+ d="M12 13.557a4.17 4.17 0 0 0 4.167-4.167A4.17 4.17 0 0 0 12 5.225 4.17 4.17 0 0 0 7.834 9.39a4.17 4.17 0 0 0 4.168 4.167"
15
+ />
16
+ </g>
17
+ <path
18
+ fill="currentColor"
19
+ fill-rule="evenodd"
20
+ d="m16.084-7.204 1.237 1.237-22.855 22.855-1.237-1.237zm-5.54.236 1.238 1.237L-5.45 11.502l-1.237-1.237zm11.372 1.71-1.238-1.237L9.963 4.22a5.5 5.5 0 0 1 2.79-.316zM-6.722 20.907 6.817 7.366a5.5 5.5 0 0 0-.315 2.79L-5.485 22.143zm11.634-6.331 2.342-2.342c.308.502.695.952 1.142 1.332l-.4.4a20.5 20.5 0 0 0-3.084.61m.334 10.272-9.638 9.639 1.237 1.237L7.721 24.847zm5.703 0L-4.392 40.19l1.237 1.237 16.58-16.579zm11.36-8.885a11 11 0 0 0-1.636-.838l8.749-8.749 1.237 1.238zm-4.092-1.611a22 22 0 0 0-2.103-.372L29.422.672l1.237 1.237zm-.746-4.992q0 .229-.019.453L26.875.39 25.637-.847l-8.452 8.452c.185.55.286 1.14.286 1.754m-2.64-4.703c.503.308.953.694 1.332 1.142l7.982-7.981-1.238-1.238z"
21
+ clip-rule="evenodd"
22
+ />
23
+ <path
24
+ fill="currentColor"
25
+ d="M19.526 17.558c-1.198-1.283-3.459-2.235-7.526-2.235-4.102 0-6.366.968-7.557 2.267-.32.349-.868.905-1.093 2.346a1.256 1.256 0 0 0 1.24 1.439h14.82c.762 0 1.357-.685 1.24-1.439-.226-1.444-.777-2.01-1.124-2.378"
26
+ />
27
+ </g>
28
+ <defs>
29
+ <clipPath id="IconBackgroundReplace_24__a">
30
+ <rect
31
+ width="20"
32
+ height="20"
33
+ x="2"
34
+ y="2.625"
35
+ fill="currentColor"
36
+ rx=".833"
37
+ />
38
+ </clipPath>
39
+ <clipPath id="IconBackgroundReplace_24__b">
40
+ <path fill="currentColor" d="M2 2.625h20v20H2z" />
41
+ </clipPath>
42
+ </defs>
43
+ </svg>
@@ -0,0 +1,5 @@
1
+ // FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE
2
+
3
+ import type React from 'react';
4
+ const icon: React.FC<React.ComponentProps<'svg'>>;
5
+ export default icon;