@hellobetterdigitalnz/betterui 0.0.3-317 → 0.0.3-318

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 (23) hide show
  1. package/dist/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.d.ts +4 -0
  2. package/dist/Components/Icons/Media/Image/Image.d.ts +4 -0
  3. package/dist/Components/Icons/SystemAndDevice/CloudArrowDown/CloudArrowDown.d.ts +4 -0
  4. package/dist/Components/Icons/SystemAndDevice/DotsSixVertical/DotsSixVertical.d.ts +4 -0
  5. package/dist/Components/Icons/index.d.ts +6 -3
  6. package/dist/index.cjs.js +12 -12
  7. package/dist/index.cjs.js.map +1 -1
  8. package/dist/index.es.js +880 -868
  9. package/dist/index.es.js.map +1 -1
  10. package/package.json +1 -1
  11. package/src/Components/DataDisplay/Calendar/Calendar.tsx +2 -2
  12. package/src/Components/Form/Button/Button.stories.tsx +4 -4
  13. package/src/Components/Form/DateField/DateField.tsx +2 -2
  14. package/src/Components/Form/IconButton/IconButton.stories.tsx +4 -4
  15. package/src/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.tsx +48 -0
  16. package/src/Components/Icons/Media/Image/Image.tsx +48 -0
  17. package/src/Components/Icons/SystemAndDevice/CloudArrowDown/CloudArrowDown.tsx +48 -0
  18. package/src/Components/Icons/SystemAndDevice/{DotSixVertical/DotSixVertical.tsx → DotsSixVertical/DotsSixVertical.tsx} +2 -2
  19. package/src/Components/Icons/Time/CalendarBlank/CalendarBlank.tsx +72 -14
  20. package/src/Components/Icons/index.ts +6 -4
  21. package/dist/Components/Icons/SystemAndDevice/DotSixVertical/DotSixVertical.d.ts +0 -4
  22. package/dist/Components/Icons/Time/CalendarBank/CalendarBank.d.ts +0 -4
  23. package/src/Components/Icons/Time/CalendarBank/CalendarBank.tsx +0 -105
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hellobetterdigitalnz/betterui",
3
- "version": "0.0.3-317",
3
+ "version": "0.0.3-318",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -9,7 +9,7 @@ import DayView from "./Views/DayView/DayView.tsx";
9
9
  import WeekView from "./Views/WeekView/WeekView.tsx";
10
10
  import DropdownField from "../../Form/DropdownField/DropdownField.tsx";
11
11
  import { ToggleSwitch } from "../../Form";
12
- import { CalendarBank, CaretDown, CaretUp, ListDashes } from "../../Icons";
12
+ import { CalendarBlank, CaretDown, CaretUp, ListDashes } from "../../Icons";
13
13
 
14
14
  const Calendar = (props: CalendarProps) => {
15
15
  const {
@@ -175,7 +175,7 @@ const Calendar = (props: CalendarProps) => {
175
175
  className={`${calendarViewActive ? styles.active : ""}`}
176
176
  onClick={calendarActionOnclick}
177
177
  >
178
- <CalendarBank />
178
+ <CalendarBlank/>
179
179
  </button>
180
180
  </div>
181
181
  </>
@@ -1,7 +1,7 @@
1
1
  import type { Meta, StoryObj } from "@storybook/react";
2
2
 
3
3
  import Button from "./Button";
4
- import CalendarBank from "../../Icons/Time/CalendarBank/CalendarBank";
4
+ import CalendarBlank from "../../Icons/Time/CalendarBlank/CalendarBlank";
5
5
 
6
6
  // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
7
7
  const meta : Meta<typeof Button> = {
@@ -49,7 +49,7 @@ export const WithPrimaryIcon: Story = {
49
49
  style: "solid",
50
50
  size: "default",
51
51
  scheme: "primary",
52
- primaryIcon: <CalendarBank />,
52
+ primaryIcon: <CalendarBlank />,
53
53
  },
54
54
  };
55
55
 
@@ -59,7 +59,7 @@ export const WithPrimaryIconAndSecondaryIcon: Story = {
59
59
  style: "solid",
60
60
  size: "default",
61
61
  scheme: "primary",
62
- primaryIcon: <CalendarBank />,
63
- secondaryIcon: <CalendarBank />,
62
+ primaryIcon: <CalendarBlank />,
63
+ secondaryIcon: <CalendarBlank />,
64
64
  },
65
65
  };
@@ -1,7 +1,7 @@
1
1
  import cx from "classnames";
2
2
  import InputProps from "../InputProps";
3
3
  import styles from "../inputs.module.scss";
4
- import CalendarBank from "../../Icons/Time/CalendarBank/CalendarBank";
4
+ import CalendarBlank from "../../Icons/Time/CalendarBlank/CalendarBlank.tsx";
5
5
  import LoadingInput from "../LoadingInput/LoadingInput.tsx";
6
6
 
7
7
  const DateField = (props: InputProps) => {
@@ -52,7 +52,7 @@ const DateField = (props: InputProps) => {
52
52
  {...args}
53
53
  />
54
54
  <div className={styles.calendarIcon}>
55
- <CalendarBank type="light" />
55
+ <CalendarBlank type="light" />
56
56
  </div>
57
57
  </div>
58
58
  );
@@ -1,7 +1,7 @@
1
1
  import type { Meta, StoryObj } from "@storybook/react";
2
2
 
3
3
  import IconButton from "./IconButton";
4
- import CalendarBank from "../../Icons/Time/CalendarBank/CalendarBank";
4
+ import CalendarBlank from "../../Icons/Time/CalendarBlank/CalendarBlank";
5
5
 
6
6
  // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
7
7
  const meta = {
@@ -19,7 +19,7 @@ type Story = StoryObj<typeof IconButton>;
19
19
  // More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
20
20
  export const Primary: Story = {
21
21
  args: {
22
- icon: <CalendarBank />,
22
+ icon: <CalendarBlank />,
23
23
  style: "solid",
24
24
  size: "default",
25
25
  scheme: "primary",
@@ -28,7 +28,7 @@ export const Primary: Story = {
28
28
 
29
29
  export const Secondary: Story = {
30
30
  args: {
31
- icon: <CalendarBank />,
31
+ icon: <CalendarBlank />,
32
32
  style: "hollow",
33
33
  size: "default",
34
34
  scheme: "primary",
@@ -37,7 +37,7 @@ export const Secondary: Story = {
37
37
 
38
38
  export const Borderless: Story = {
39
39
  args: {
40
- icon: <CalendarBank type="bold" />,
40
+ icon: <CalendarBlank type="bold" />,
41
41
  style: "no-border",
42
42
  size: "default",
43
43
  scheme: "primary",
@@ -0,0 +1,48 @@
1
+
2
+ import IconProps from "../../IconProps";
3
+
4
+ const PaperPlaneTilt = ({type = "light"}: IconProps) => {
5
+ if (type === "thin") {
6
+ return (
7
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
8
+ <path d="M28.0581 3.94003C27.8688 3.74971 27.6314 3.61432 27.3712 3.54828C27.111 3.48225 26.8378 3.48803 26.5806 3.56503L2.59185 10.8338C2.29771 10.9165 2.03586 11.0871 1.84132 11.3227C1.64679 11.5584 1.52886 11.8478 1.5033 12.1523C1.47775 12.4568 1.54579 12.7618 1.69833 13.0265C1.85086 13.2913 2.08062 13.5032 2.35685 13.6338L13.0581 18.7025C13.1627 18.7517 13.2471 18.8356 13.2968 18.94L18.3656 29.6425C18.4854 29.8996 18.6764 30.1169 18.9158 30.2689C19.1553 30.4208 19.4332 30.501 19.7168 30.5C19.7593 30.5 19.8031 30.5 19.8418 30.5C20.1451 30.4764 20.4338 30.3603 20.6689 30.1674C20.9041 29.9744 21.0744 29.714 21.1568 29.4213L28.4331 5.42128V5.41128C28.5092 5.15503 28.5145 4.88297 28.4484 4.62395C28.3824 4.36493 28.2475 4.12861 28.0581 3.94003ZM27.4806 5.13253L20.2018 29.1325C20.1741 29.2303 20.1173 29.3174 20.0389 29.3821C19.9604 29.4467 19.8641 29.486 19.7628 29.4945C19.6615 29.5031 19.56 29.4805 19.4719 29.4299C19.3837 29.3793 19.3131 29.3031 19.2693 29.2113L14.2006 18.5125L20.3556 12.3588C20.4021 12.3123 20.4389 12.2572 20.464 12.1965C20.4892 12.1358 20.5021 12.0707 20.5021 12.005C20.5021 11.9393 20.4892 11.8743 20.464 11.8136C20.4389 11.7529 20.4021 11.6977 20.3556 11.6513C20.3091 11.6048 20.254 11.568 20.1933 11.5428C20.1326 11.5177 20.0675 11.5047 20.0018 11.5047C19.9362 11.5047 19.8711 11.5177 19.8104 11.5428C19.7497 11.568 19.6946 11.6048 19.6481 11.6513L13.4931 17.8063L2.7856 12.73C2.69117 12.6878 2.6127 12.6166 2.56165 12.5266C2.51061 12.4366 2.48965 12.3327 2.50185 12.23C2.5093 12.126 2.54965 12.0271 2.61707 11.9475C2.68449 11.868 2.77547 11.8119 2.87685 11.7875L26.8618 4.52003C26.9065 4.50688 26.9528 4.50015 26.9993 4.50003C27.1306 4.5019 27.2559 4.55533 27.3481 4.64878C27.4116 4.71007 27.4574 4.78734 27.4807 4.87247C27.5041 4.95759 27.504 5.04743 27.4806 5.13253Z" fill="currentColor"/>
9
+ </svg>
10
+ );
11
+ }
12
+ if (type === "regular") {
13
+ return (
14
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
15
+ <path d="M28.414 3.58497C28.1625 3.33363 27.8486 3.15388 27.5045 3.06424C27.1604 2.9746 26.7987 2.9783 26.4565 3.07497H26.4378L2.44528 10.355C2.05473 10.4673 1.70765 10.6959 1.45028 11.0104C1.19291 11.3249 1.03744 11.7103 1.00459 12.1154C0.971743 12.5204 1.06307 12.9259 1.2664 13.2778C1.46973 13.6296 1.77543 13.9112 2.14278 14.085L12.8453 19.1537L17.914 29.8562C18.0741 30.199 18.3288 30.4888 18.6482 30.6914C18.9676 30.8941 19.3383 31.0011 19.7165 31C19.774 31 19.8315 30.9975 19.889 30.9925C20.2927 30.9598 20.6766 30.8044 20.9894 30.5473C21.3022 30.2901 21.5289 29.9434 21.639 29.5537L28.914 5.56122C28.914 5.55497 28.914 5.54872 28.914 5.54247C29.012 5.20117 29.0172 4.83996 28.9294 4.49594C28.8415 4.15192 28.6636 3.8375 28.414 3.58497ZM19.7278 28.9812L19.7215 28.9987L14.8015 18.6125L20.7065 12.7062C20.8862 12.5172 20.9848 12.2654 20.9815 12.0046C20.9781 11.7439 20.8731 11.4947 20.6887 11.3103C20.5043 11.1259 20.2551 11.0209 19.9944 11.0175C19.7336 11.0142 19.4818 11.1128 19.2928 11.2925L13.3865 17.1975L2.99903 12.2775H3.01653L26.999 4.99997L19.7278 28.9812Z" fill="currentColor"/>
16
+ </svg>
17
+ );
18
+ }
19
+ if (type === "bold") {
20
+ return (
21
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
22
+ <path d="M28.7683 3.2325C28.4541 2.91823 28.0618 2.69337 27.6318 2.5811C27.2019 2.46883 26.7498 2.4732 26.322 2.59375L26.2945 2.6025L2.30578 9.875C1.81852 10.0163 1.38578 10.3024 1.06503 10.6955C0.744282 11.0886 0.550704 11.5699 0.51001 12.0756C0.469317 12.5813 0.583434 13.0874 0.837204 13.5267C1.09097 13.9659 1.47239 14.3176 1.93078 14.535L12.4708 19.535L17.4708 30.075C17.6704 30.5031 17.9882 30.8653 18.3869 31.1186C18.7856 31.372 19.2484 31.5061 19.7208 31.505C19.792 31.505 19.8645 31.505 19.937 31.4963C20.4423 31.456 20.9231 31.2617 21.3145 30.9396C21.7058 30.6175 21.989 30.1831 22.1258 29.695L29.3983 5.70625C29.4019 5.69734 29.4049 5.68814 29.407 5.67875C29.5276 5.25103 29.5319 4.7989 29.4197 4.36893C29.3074 3.93896 29.0826 3.54668 28.7683 3.2325ZM19.6258 27.615L15.4108 18.7163L21.067 13.06C21.3488 12.7782 21.5071 12.396 21.5071 11.9975C21.5071 11.599 21.3488 11.2168 21.067 10.935C20.7852 10.6532 20.403 10.4949 20.0045 10.4949C19.606 10.4949 19.2238 10.6532 18.942 10.935L13.2858 16.5913L4.38578 12.375L26.2508 5.75L19.6258 27.615Z" fill="currentColor"/>
23
+ </svg>
24
+ );
25
+ }
26
+ if (type === "fill") {
27
+ return (
28
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
29
+ <path d="M28.9245 5.54254C28.9245 5.54254 28.9245 5.55504 28.9245 5.56129L21.6495 29.5538C21.5394 29.9435 21.3127 30.2902 20.9999 30.5473C20.6871 30.8045 20.3031 30.9599 19.8995 30.9925C19.842 30.9975 19.7845 31 19.727 31C19.3487 31.0012 18.978 30.8942 18.6587 30.6915C18.3393 30.4888 18.0845 30.199 17.9245 29.8563L13.4608 20.4325C13.4167 20.3393 13.4025 20.2347 13.4202 20.1331C13.4379 20.0315 13.4865 19.9379 13.5595 19.865L20.717 12.7063C20.8966 12.5172 20.9953 12.2655 20.9919 12.0047C20.9886 11.744 20.8835 11.4948 20.6991 11.3104C20.5147 11.126 20.2656 11.0209 20.0048 11.0176C19.7441 11.0143 19.4923 11.1129 19.3033 11.2925L12.1345 18.45C12.0616 18.523 11.968 18.5717 11.8664 18.5893C11.7648 18.607 11.6602 18.5929 11.567 18.5488L2.192 14.1075C1.82381 13.9389 1.51395 13.6647 1.30167 13.3198C1.08939 12.9749 0.984225 12.5748 0.999504 12.17C1.01986 11.7541 1.17045 11.355 1.42998 11.0293C1.68951 10.7036 2.04484 10.4678 2.44575 10.355L26.4383 3.08004H26.457C26.7986 2.98407 27.1596 2.9807 27.5029 3.07029C27.8463 3.15988 28.1596 3.3392 28.4107 3.58985C28.6619 3.84049 28.8418 4.15345 28.9321 4.4966C29.0224 4.83975 29.0198 5.20074 28.9245 5.54254Z" fill="currentColor"/>
30
+ </svg>
31
+ );
32
+ }
33
+ if (type === "duotone") {
34
+ return (
35
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
36
+ <path opacity="0.2" d="M27.9612 5.27244L20.6837 29.2724C20.6281 29.468 20.5143 29.642 20.3574 29.7712C20.2004 29.9004 20.0078 29.9787 19.8052 29.9957C19.6027 30.0127 19.3997 29.9675 19.2235 29.8662C19.0472 29.7649 18.906 29.6123 18.8187 29.4287L13.7499 18.7262C13.6511 18.5178 13.4833 18.35 13.2749 18.2512L2.57244 13.1812C2.38886 13.0939 2.23624 12.9527 2.13495 12.7764C2.03365 12.6002 1.98847 12.3972 2.00545 12.1946C2.02242 11.9921 2.10073 11.7995 2.22994 11.6425C2.35916 11.4856 2.53314 11.3717 2.72869 11.3162L26.7287 4.03869C26.8997 3.99077 27.0803 3.98924 27.2521 4.03426C27.4239 4.07927 27.5805 4.16922 27.706 4.29484C27.8315 4.42046 27.9213 4.57723 27.9662 4.74905C28.011 4.92086 28.0093 5.10151 27.9612 5.27244Z" fill="currentColor"/>
37
+ <path d="M28.414 3.58497C28.1625 3.33363 27.8486 3.15388 27.5045 3.06424C27.1604 2.9746 26.7987 2.9783 26.4565 3.07497H26.4378L2.44528 10.355C2.05473 10.4673 1.70765 10.6959 1.45028 11.0104C1.19291 11.3249 1.03744 11.7103 1.00459 12.1154C0.971743 12.5204 1.06307 12.9259 1.2664 13.2778C1.46973 13.6296 1.77543 13.9112 2.14278 14.085L12.8453 19.1537L17.914 29.8562C18.0741 30.199 18.3288 30.4888 18.6482 30.6914C18.9676 30.8941 19.3383 31.0011 19.7165 31C19.774 31 19.8315 30.9975 19.889 30.9925C20.2927 30.9598 20.6766 30.8044 20.9894 30.5473C21.3022 30.2901 21.5289 29.9434 21.639 29.5537L28.914 5.56122C28.914 5.55497 28.914 5.54872 28.914 5.54247C29.012 5.20117 29.0172 4.83996 28.9294 4.49594C28.8415 4.15192 28.6636 3.8375 28.414 3.58497ZM19.7278 28.9812L19.7215 28.9987L14.8015 18.6125L20.7065 12.7062C20.8862 12.5172 20.9848 12.2654 20.9815 12.0046C20.9781 11.7439 20.8731 11.4947 20.6887 11.3103C20.5043 11.1259 20.2551 11.0209 19.9944 11.0175C19.7336 11.0142 19.4818 11.1128 19.2928 11.2925L13.3865 17.1975L2.99903 12.2775H3.01653L26.999 4.99997L19.7278 28.9812Z" fill="currentColor"/>
38
+ </svg>
39
+ );
40
+ }
41
+ return (
42
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
43
+ <path d="M28.2356 3.76497C28.017 3.54298 27.7424 3.3842 27.441 3.30543C27.1395 3.22666 26.8224 3.23082 26.5231 3.31747H26.5093L2.51808 10.5962C2.17619 10.6942 1.87225 10.8939 1.64676 11.169C1.42126 11.444 1.2849 11.7812 1.25585 12.1356C1.2268 12.4901 1.30643 12.8449 1.48414 13.153C1.66185 13.4611 1.9292 13.7077 2.25058 13.86L12.9518 18.9287C13.0035 18.9541 13.0452 18.9958 13.0706 19.0475L18.1406 29.75C18.2806 30.0496 18.5033 30.303 18.7826 30.4802C19.0619 30.6574 19.3861 30.751 19.7168 30.75C19.7668 30.75 19.8181 30.75 19.8681 30.7437C20.2224 30.7159 20.5597 30.58 20.8344 30.3545C21.1091 30.1289 21.308 29.8246 21.4043 29.4825L28.6793 5.49122V5.47747C28.7665 5.17852 28.7712 4.86159 28.6931 4.56016C28.615 4.25873 28.4569 3.98399 28.2356 3.76497ZM27.2356 5.06497L19.9668 29.0537V29.0675C19.9551 29.1176 19.9272 29.1625 19.8875 29.1953C19.8477 29.228 19.7983 29.2468 19.7468 29.2487C19.6952 29.2565 19.6425 29.2466 19.5971 29.2208C19.5518 29.1949 19.5165 29.1546 19.4968 29.1062L14.4968 18.5612L20.5268 12.5312C20.6676 12.3905 20.7466 12.1996 20.7466 12.0006C20.7466 11.8016 20.6676 11.6107 20.5268 11.47C20.3861 11.3292 20.1952 11.2502 19.9962 11.2502C19.7972 11.2502 19.6063 11.3292 19.4656 11.47L13.4406 17.5L2.89433 12.5C2.848 12.4784 2.80939 12.4431 2.78373 12.3989C2.75806 12.3547 2.74656 12.3037 2.75078 12.2527C2.75501 12.2018 2.77475 12.1533 2.80734 12.114C2.83994 12.0746 2.88382 12.0461 2.93308 12.0325H2.94683L26.9356 4.75997C26.9777 4.74813 27.0223 4.74793 27.0646 4.75937C27.1068 4.77081 27.1452 4.79348 27.1756 4.82497C27.2064 4.85583 27.2286 4.89422 27.24 4.93632C27.2514 4.97842 27.2516 5.02277 27.2406 5.06497H27.2356Z" fill="currentColor"/>
44
+ </svg>
45
+ );
46
+ };
47
+
48
+ export default PaperPlaneTilt;
@@ -0,0 +1,48 @@
1
+
2
+ import IconProps from "../../IconProps";
3
+
4
+ const Image = ({type = "light"}: IconProps) => {
5
+ if (type === "thin") {
6
+ return (
7
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
8
+ <path d="M27 5.5H5C4.60218 5.5 4.22064 5.65804 3.93934 5.93934C3.65804 6.22064 3.5 6.60218 3.5 7V25C3.5 25.3978 3.65804 25.7794 3.93934 26.0607C4.22064 26.342 4.60218 26.5 5 26.5H27C27.3978 26.5 27.7794 26.342 28.0607 26.0607C28.342 25.7794 28.5 25.3978 28.5 25V7C28.5 6.60218 28.342 6.22064 28.0607 5.93934C27.7794 5.65804 27.3978 5.5 27 5.5ZM5 6.5H27C27.1326 6.5 27.2598 6.55268 27.3536 6.64645C27.4473 6.74021 27.5 6.86739 27.5 7V21.05L23.3888 16.9387C23.2494 16.7989 23.0838 16.688 22.9015 16.6122C22.7192 16.5365 22.5237 16.4976 22.3263 16.4976C22.1288 16.4976 21.9333 16.5365 21.751 16.6122C21.5687 16.688 21.4031 16.7989 21.2638 16.9387L18.41 19.7925L12.5575 13.9388C12.4181 13.7989 12.2526 13.688 12.0702 13.6122C11.8879 13.5365 11.6924 13.4976 11.495 13.4976C11.2976 13.4976 11.1021 13.5365 10.9198 13.6122C10.7374 13.688 10.5719 13.7989 10.4325 13.9388L4.5 19.875V7C4.5 6.86739 4.55268 6.74021 4.64645 6.64645C4.74021 6.55268 4.86739 6.5 5 6.5ZM4.5 25V21.2925L11.1462 14.6462C11.1927 14.5998 11.2478 14.5629 11.3085 14.5377C11.3692 14.5126 11.4343 14.4996 11.5 14.4996C11.5657 14.4996 11.6308 14.5126 11.6915 14.5377C11.7522 14.5629 11.8073 14.5998 11.8538 14.6462L22.7075 25.5H5C4.86739 25.5 4.74021 25.4473 4.64645 25.3536C4.55268 25.2598 4.5 25.1326 4.5 25ZM27 25.5H24.125L19.125 20.5L21.9788 17.6462C22.0252 17.5998 22.0803 17.5629 22.141 17.5377C22.2017 17.5126 22.2668 17.4996 22.3325 17.4996C22.3982 17.4996 22.4633 17.5126 22.524 17.5377C22.5847 17.5629 22.6398 17.5998 22.6863 17.6462L27.5 22.4638V25C27.5 25.1326 27.4473 25.2598 27.3536 25.3536C27.2598 25.4473 27.1326 25.5 27 25.5ZM18.5 12.5C18.5 12.3022 18.5586 12.1089 18.6685 11.9444C18.7784 11.78 18.9346 11.6518 19.1173 11.5761C19.3 11.5004 19.5011 11.4806 19.6951 11.5192C19.8891 11.5578 20.0673 11.653 20.2071 11.7929C20.347 11.9327 20.4422 12.1109 20.4808 12.3049C20.5194 12.4989 20.4996 12.7 20.4239 12.8827C20.3482 13.0654 20.22 13.2216 20.0556 13.3315C19.8911 13.4414 19.6978 13.5 19.5 13.5C19.2348 13.5 18.9804 13.3946 18.7929 13.2071C18.6054 13.0196 18.5 12.7652 18.5 12.5Z" fill="currentColor"/>
9
+ </svg>
10
+ );
11
+ }
12
+ if (type === "regular") {
13
+ return (
14
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
15
+ <path d="M27 5H5C4.46957 5 3.96086 5.21071 3.58579 5.58579C3.21071 5.96086 3 6.46957 3 7V25C3 25.5304 3.21071 26.0391 3.58579 26.4142C3.96086 26.7893 4.46957 27 5 27H27C27.5304 27 28.0391 26.7893 28.4142 26.4142C28.7893 26.0391 29 25.5304 29 25V7C29 6.46957 28.7893 5.96086 28.4142 5.58579C28.0391 5.21071 27.5304 5 27 5ZM27 7V19.8438L23.7412 16.5863C23.5555 16.4005 23.335 16.2531 23.0923 16.1526C22.8497 16.052 22.5896 16.0003 22.3269 16.0003C22.0642 16.0003 21.8041 16.052 21.5614 16.1526C21.3187 16.2531 21.0982 16.4005 20.9125 16.5863L18.4125 19.0863L12.9125 13.5863C12.5375 13.2115 12.029 13.0009 11.4987 13.0009C10.9685 13.0009 10.46 13.2115 10.085 13.5863L5 18.6712V7H27ZM5 21.5L11.5 15L21.5 25H5V21.5ZM27 25H24.3288L19.8288 20.5L22.3288 18L27 22.6725V25ZM18 12.5C18 12.2033 18.088 11.9133 18.2528 11.6666C18.4176 11.42 18.6519 11.2277 18.926 11.1142C19.2001 11.0006 19.5017 10.9709 19.7926 11.0288C20.0836 11.0867 20.3509 11.2296 20.5607 11.4393C20.7704 11.6491 20.9133 11.9164 20.9712 12.2074C21.0291 12.4983 20.9993 12.7999 20.8858 13.074C20.7723 13.3481 20.58 13.5824 20.3334 13.7472C20.0867 13.912 19.7967 14 19.5 14C19.1022 14 18.7206 13.842 18.4393 13.5607C18.158 13.2794 18 12.8978 18 12.5Z" fill="currentColor"/>
16
+ </svg>
17
+ );
18
+ }
19
+ if (type === "bold") {
20
+ return (
21
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
22
+ <path d="M18 12C18 11.6044 18.1173 11.2178 18.3371 10.8889C18.5568 10.56 18.8692 10.3036 19.2346 10.1522C19.6001 10.0009 20.0022 9.96126 20.3902 10.0384C20.7781 10.1156 21.1345 10.3061 21.4142 10.5858C21.6939 10.8655 21.8844 11.2219 21.9616 11.6098C22.0387 11.9978 21.9991 12.3999 21.8478 12.7654C21.6964 13.1308 21.44 13.4432 21.1111 13.6629C20.7822 13.8827 20.3956 14 20 14C19.4696 14 18.9609 13.7893 18.5858 13.4142C18.2107 13.0391 18 12.5304 18 12ZM29.5 7V25C29.5 25.663 29.2366 26.2989 28.7678 26.7678C28.2989 27.2366 27.663 27.5 27 27.5H5C4.33696 27.5 3.70107 27.2366 3.23223 26.7678C2.76339 26.2989 2.5 25.663 2.5 25V7C2.5 6.33696 2.76339 5.70107 3.23223 5.23223C3.70107 4.76339 4.33696 4.5 5 4.5H27C27.663 4.5 28.2989 4.76339 28.7678 5.23223C29.2366 5.70107 29.5 6.33696 29.5 7ZM5.5 7.5V17.465L9.7325 13.2325C10.2013 12.7638 10.8371 12.5005 11.5 12.5005C12.1629 12.5005 12.7987 12.7638 13.2675 13.2325L18.4137 18.375L20.5613 16.2288C21.0301 15.7601 21.6658 15.4968 22.3288 15.4968C22.9917 15.4968 23.6274 15.7601 24.0963 16.2288L26.5 18.6362V7.5H5.5ZM5.5 24.5H20.2925L11.5 15.7075L5.5 21.7075V24.5ZM26.5 24.5V22.875L22.3288 18.7038L20.535 20.5L24.535 24.5H26.5Z" fill="currentColor"/>
23
+ </svg>
24
+ );
25
+ }
26
+ if (type === "fill") {
27
+ return (
28
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
29
+ <path d="M27 5H5C4.46957 5 3.96086 5.21071 3.58579 5.58579C3.21071 5.96086 3 6.46957 3 7V25C3 25.5304 3.21071 26.0391 3.58579 26.4142C3.96086 26.7893 4.46957 27 5 27H27C27.5304 27 28.0391 26.7893 28.4142 26.4142C28.7893 26.0391 29 25.5304 29 25V7C29 6.46957 28.7893 5.96086 28.4142 5.58579C28.0391 5.21071 27.5304 5 27 5ZM19.5 11C19.7967 11 20.0867 11.088 20.3334 11.2528C20.58 11.4176 20.7723 11.6519 20.8858 11.926C20.9993 12.2001 21.0291 12.5017 20.9712 12.7926C20.9133 13.0836 20.7704 13.3509 20.5607 13.5607C20.3509 13.7704 20.0836 13.9133 19.7926 13.9712C19.5017 14.0291 19.2001 13.9994 18.926 13.8858C18.6519 13.7723 18.4176 13.58 18.2528 13.3334C18.088 13.0867 18 12.7967 18 12.5C18 12.1022 18.158 11.7206 18.4393 11.4393C18.7206 11.158 19.1022 11 19.5 11ZM5 25V21.5L11.5 15L21.5 25H5ZM27 25H24.3288L19.8288 20.5L22.3288 18L27 22.6725V25Z" fill="currentColor"/>
30
+ </svg>
31
+ );
32
+ }
33
+ if (type === "duotone") {
34
+ return (
35
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
36
+ <path opacity="0.2" d="M28 7V22.2575L23.035 17.2925C22.8475 17.1051 22.5932 16.9998 22.3281 16.9998C22.063 16.9998 21.8088 17.1051 21.6213 17.2925L18.4137 20.5L12.2075 14.2925C12.1146 14.1995 12.0043 14.1258 11.8829 14.0754C11.7615 14.0251 11.6314 13.9992 11.5 13.9992C11.3686 13.9992 11.2385 14.0251 11.1171 14.0754C10.9957 14.1258 10.8854 14.1995 10.7925 14.2925L4 21.0863V7C4 6.73478 4.10536 6.48043 4.29289 6.29289C4.48043 6.10536 4.73478 6 5 6H27C27.2652 6 27.5196 6.10536 27.7071 6.29289C27.8946 6.48043 28 6.73478 28 7Z" fill="currentColor"/>
37
+ <path d="M27 5H5C4.46957 5 3.96086 5.21071 3.58579 5.58579C3.21071 5.96086 3 6.46957 3 7V25C3 25.5304 3.21071 26.0391 3.58579 26.4142C3.96086 26.7893 4.46957 27 5 27H27C27.5304 27 28.0391 26.7893 28.4142 26.4142C28.7893 26.0391 29 25.5304 29 25V7C29 6.46957 28.7893 5.96086 28.4142 5.58579C28.0391 5.21071 27.5304 5 27 5ZM27 7V19.8438L23.7412 16.5863C23.5555 16.4005 23.335 16.2531 23.0923 16.1526C22.8497 16.052 22.5896 16.0003 22.3269 16.0003C22.0642 16.0003 21.8041 16.052 21.5614 16.1526C21.3187 16.2531 21.0982 16.4005 20.9125 16.5863L18.4125 19.0863L12.9125 13.5863C12.5375 13.2115 12.029 13.0009 11.4987 13.0009C10.9685 13.0009 10.46 13.2115 10.085 13.5863L5 18.6712V7H27ZM5 21.5L11.5 15L21.5 25H5V21.5ZM27 25H24.3288L19.8288 20.5L22.3288 18L27 22.6725V25ZM18 12.5C18 12.2033 18.088 11.9133 18.2528 11.6666C18.4176 11.42 18.6519 11.2277 18.926 11.1142C19.2001 11.0006 19.5017 10.9709 19.7926 11.0288C20.0836 11.0867 20.3509 11.2296 20.5607 11.4393C20.7704 11.6491 20.9133 11.9164 20.9712 12.2074C21.0291 12.4983 20.9993 12.7999 20.8858 13.074C20.7723 13.3481 20.58 13.5824 20.3334 13.7472C20.0867 13.912 19.7967 14 19.5 14C19.1022 14 18.7206 13.842 18.4393 13.5607C18.158 13.2794 18 12.8978 18 12.5Z" fill="currentColor"/>
38
+ </svg>
39
+ );
40
+ }
41
+ return (
42
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
43
+ <path d="M27 5.25H5C4.53587 5.25 4.09075 5.43437 3.76256 5.76256C3.43437 6.09075 3.25 6.53587 3.25 7V25C3.25 25.4641 3.43437 25.9092 3.76256 26.2374C4.09075 26.5656 4.53587 26.75 5 26.75H27C27.4641 26.75 27.9092 26.5656 28.2374 26.2374C28.5656 25.9092 28.75 25.4641 28.75 25V7C28.75 6.53587 28.5656 6.09075 28.2374 5.76256C27.9092 5.43437 27.4641 5.25 27 5.25ZM5 6.75H27C27.0663 6.75 27.1299 6.77634 27.1768 6.82322C27.2237 6.87011 27.25 6.9337 27.25 7V20.4463L23.5662 16.7625C23.4037 16.6 23.2108 16.4711 22.9985 16.3831C22.7862 16.2951 22.5586 16.2499 22.3288 16.2499C22.0989 16.2499 21.8713 16.2951 21.659 16.3831C21.4467 16.4711 21.2538 16.6 21.0912 16.7625L18.4137 19.44L12.7375 13.7625C12.575 13.6 12.3821 13.4711 12.1697 13.3831C11.9574 13.2951 11.7298 13.2499 11.5 13.2499C11.2702 13.2499 11.0426 13.2951 10.8303 13.3831C10.6179 13.4711 10.425 13.6 10.2625 13.7625L4.75 19.275V7C4.75 6.9337 4.77634 6.87011 4.82322 6.82322C4.87011 6.77634 4.9337 6.75 5 6.75ZM4.75 25V21.3962L11.3225 14.8237C11.3457 14.8003 11.3734 14.7817 11.4039 14.769C11.4343 14.7563 11.467 14.7498 11.5 14.7498C11.533 14.7498 11.5657 14.7563 11.5961 14.769C11.6266 14.7817 11.6543 14.8003 11.6775 14.8237L22.1038 25.25H5C4.9337 25.25 4.87011 25.2237 4.82322 25.1768C4.77634 25.1299 4.75 25.0663 4.75 25ZM27 25.25H24.225L19.475 20.5L22.1513 17.8225C22.1745 17.7993 22.202 17.7808 22.2324 17.7682C22.2627 17.7557 22.2953 17.7492 22.3281 17.7492C22.361 17.7492 22.3935 17.7557 22.4239 17.7682C22.4542 17.7808 22.4818 17.7993 22.505 17.8225L27.255 22.5725V25C27.255 25.0333 27.2484 25.0662 27.2355 25.0968C27.2226 25.1275 27.2038 25.1553 27.18 25.1786C27.1563 25.2018 27.1281 25.2202 27.0972 25.2324C27.0663 25.2447 27.0332 25.2507 27 25.25ZM18.25 12.5C18.25 12.2528 18.3233 12.0111 18.4607 11.8055C18.598 11.6 18.7932 11.4398 19.0216 11.3452C19.2501 11.2505 19.5014 11.2258 19.7439 11.274C19.9863 11.3222 20.2091 11.4413 20.3839 11.6161C20.5587 11.7909 20.6777 12.0137 20.726 12.2561C20.7742 12.4986 20.7495 12.7499 20.6549 12.9784C20.5602 13.2068 20.4 13.402 20.1945 13.5393C19.9889 13.6767 19.7472 13.75 19.5 13.75C19.1685 13.75 18.8505 13.6183 18.6161 13.3839C18.3817 13.1495 18.25 12.8315 18.25 12.5Z" fill="currentColor"/>
44
+ </svg>
45
+ );
46
+ };
47
+
48
+ export default Image;
@@ -0,0 +1,48 @@
1
+
2
+ import IconProps from "../../IconProps";
3
+
4
+ const CloudArrowDown = ({type = "light"}: IconProps) => {
5
+ if (type === "thin") {
6
+ return (
7
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
8
+ <path d="M30.4994 16C30.506 18.2729 29.7684 20.4856 28.3994 22.3C28.36 22.3525 28.3107 22.3968 28.2542 22.4302C28.1977 22.4637 28.1351 22.4857 28.0701 22.495C28.0051 22.5043 27.9389 22.5006 27.8753 22.4843C27.8117 22.4681 27.752 22.4394 27.6994 22.4C27.6469 22.3606 27.6026 22.3112 27.5692 22.2547C27.5357 22.1982 27.5137 22.1357 27.5045 22.0707C27.4952 22.0057 27.4988 21.9395 27.5151 21.8759C27.5314 21.8123 27.56 21.7525 27.5994 21.7C28.5026 20.4958 29.1067 19.0941 29.3619 17.6106C29.6171 16.1271 29.5161 14.6042 29.0673 13.1674C28.6185 11.7306 27.8346 10.421 26.7804 9.34652C25.7261 8.27207 24.4316 7.46352 23.0036 6.9875C21.5755 6.51149 20.0548 6.38163 18.5667 6.60864C17.0787 6.83566 15.6658 7.41303 14.4447 8.29319C13.2235 9.17335 12.229 10.3311 11.5431 11.671C10.8571 13.011 10.4994 14.4947 10.4994 16C10.4994 16.1326 10.4467 16.2598 10.353 16.3535C10.2592 16.4473 10.132 16.5 9.99943 16.5C9.86682 16.5 9.73964 16.4473 9.64587 16.3535C9.5521 16.2598 9.49943 16.1326 9.49943 16C9.49897 14.8399 9.69203 13.6878 10.0707 12.5912C9.18323 12.441 8.27425 12.4766 7.40131 12.696C6.52838 12.9154 5.71051 13.3136 4.99953 13.8656C4.28854 14.4175 3.69994 15.1111 3.271 15.9024C2.84207 16.6937 2.58215 17.5655 2.50771 18.4624C2.43327 19.3594 2.54594 20.2621 2.83857 21.1133C3.1312 21.9645 3.59743 22.7456 4.2077 23.4072C4.81798 24.0688 5.55901 24.5964 6.38385 24.9567C7.20868 25.3169 8.09935 25.5019 8.99943 25.5H11.9994C12.132 25.5 12.2592 25.5527 12.353 25.6464C12.4467 25.7402 12.4994 25.8674 12.4994 26C12.4994 26.1326 12.4467 26.2598 12.353 26.3535C12.2592 26.4473 12.132 26.5 11.9994 26.5H8.99943C7.95325 26.4996 6.91871 26.2804 5.96231 25.8564C5.0059 25.4324 4.14878 24.813 3.44602 24.038C2.74327 23.263 2.21042 22.3496 1.88173 21.3564C1.55304 20.3631 1.43578 19.3122 1.53747 18.2709C1.63917 17.2297 1.95758 16.2213 2.47223 15.3104C2.98689 14.3996 3.68641 13.6065 4.52584 12.9821C5.36528 12.3578 6.32605 11.9159 7.34642 11.685C8.3668 11.4541 9.4242 11.4392 10.4507 11.6412C11.4471 9.46244 13.1588 7.68993 15.3014 6.61796C17.4441 5.54598 19.8889 5.23901 22.2301 5.748C24.5713 6.25698 26.668 7.55132 28.1721 9.41615C29.6763 11.281 30.4975 13.6041 30.4994 16ZM22.6457 21.6462L19.4994 24.7925V16C19.4994 15.8674 19.4467 15.7402 19.353 15.6464C19.2592 15.5527 19.132 15.5 18.9994 15.5C18.8668 15.5 18.7396 15.5527 18.6459 15.6464C18.5521 15.7402 18.4994 15.8674 18.4994 16V24.7925L15.3532 21.6462C15.2594 21.5524 15.1321 21.4997 14.9994 21.4997C14.8667 21.4997 14.7395 21.5524 14.6457 21.6462C14.5519 21.7401 14.4991 21.8673 14.4991 22C14.4991 22.1327 14.5519 22.2599 14.6457 22.3537L18.6457 26.3537C18.6921 26.4002 18.7473 26.4371 18.808 26.4623C18.8687 26.4874 18.9337 26.5004 18.9994 26.5004C19.0651 26.5004 19.1302 26.4874 19.1909 26.4623C19.2516 26.4371 19.3067 26.4002 19.3532 26.3537L23.3532 22.3537C23.447 22.2599 23.4997 22.1327 23.4997 22C23.4997 21.8673 23.447 21.7401 23.3532 21.6462C23.2594 21.5524 23.1321 21.4997 22.9994 21.4997C22.8667 21.4997 22.7395 21.5524 22.6457 21.6462Z" fill="currentColor"/>
9
+ </svg>
10
+ );
11
+ }
12
+ if (type === "regular") {
13
+ return (
14
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
15
+ <path d="M30.9999 16C31.0062 18.3814 30.2336 20.6996 28.7999 22.6012C28.7209 22.7063 28.6221 22.7948 28.5089 22.8616C28.3958 22.9284 28.2705 22.9724 28.1404 22.9908C28.0103 23.0093 27.8778 23.0019 27.7505 22.9692C27.6233 22.9364 27.5037 22.8789 27.3986 22.8C27.2936 22.721 27.2051 22.6221 27.1383 22.509C27.0714 22.3958 27.0275 22.2706 27.0091 22.1405C26.9906 22.0104 26.9979 21.8779 27.0307 21.7506C27.0634 21.6234 27.1209 21.5038 27.1999 21.3987C28.3734 19.844 29.0056 17.9478 28.9999 16C28.9999 13.613 28.0517 11.3238 26.3638 9.63601C24.676 7.94819 22.3868 6.99997 19.9999 6.99997C17.6129 6.99997 15.3238 7.94819 13.6359 9.63601C11.9481 11.3238 10.9999 13.613 10.9999 16C10.9999 16.2652 10.8945 16.5195 10.707 16.7071C10.5195 16.8946 10.2651 17 9.99988 17C9.73467 17 9.48031 16.8946 9.29278 16.7071C9.10524 16.5195 8.99988 16.2652 8.99988 16C8.9994 14.9908 9.13778 13.9864 9.41113 13.015C9.27489 13 9.13738 13 8.99988 13C7.40859 13 5.88246 13.6321 4.75724 14.7573C3.63203 15.8826 2.99988 17.4087 2.99988 19C2.99988 20.5913 3.63203 22.1174 4.75724 23.2426C5.88246 24.3678 7.40859 25 8.99988 25H11.9999C12.2651 25 12.5195 25.1053 12.707 25.2929C12.8945 25.4804 12.9999 25.7348 12.9999 26C12.9999 26.2652 12.8945 26.5195 12.707 26.7071C12.5195 26.8946 12.2651 27 11.9999 27H8.99988C7.9001 27.0002 6.81208 26.7737 5.80377 26.3346C4.79546 25.8955 3.88853 25.2532 3.1396 24.4478C2.39068 23.6424 1.81585 22.6913 1.45103 21.6538C1.08621 20.6162 0.939225 19.5147 1.01926 18.4178C1.09929 17.3209 1.40462 16.2523 1.91619 15.2788C2.42775 14.3052 3.13455 13.4476 3.99245 12.7595C4.85035 12.0713 5.84092 11.5675 6.90229 11.2794C7.96366 10.9913 9.07304 10.9251 10.1611 11.085C11.2691 8.86892 13.0928 7.09182 15.3368 6.04151C17.5808 4.99121 20.1136 4.72922 22.525 5.29798C24.9365 5.86674 27.0853 7.23294 28.6234 9.17529C30.1616 11.1176 30.9989 13.5224 30.9999 16ZM22.2924 21.2925L19.9999 23.5862V16C19.9999 15.7348 19.8945 15.4804 19.707 15.2929C19.5195 15.1053 19.2651 15 18.9999 15C18.7347 15 18.4803 15.1053 18.2928 15.2929C18.1052 15.4804 17.9999 15.7348 17.9999 16V23.5862L15.7074 21.2925C15.5197 21.1048 15.2652 20.9994 14.9999 20.9994C14.7345 20.9994 14.48 21.1048 14.2924 21.2925C14.1047 21.4801 13.9993 21.7346 13.9993 22C13.9993 22.2653 14.1047 22.5198 14.2924 22.7075L18.2924 26.7075C18.3853 26.8005 18.4955 26.8742 18.6169 26.9245C18.7383 26.9749 18.8685 27.0008 18.9999 27.0008C19.1313 27.0008 19.2614 26.9749 19.3828 26.9245C19.5042 26.8742 19.6145 26.8005 19.7074 26.7075L23.7074 22.7075C23.895 22.5198 24.0004 22.2653 24.0004 22C24.0004 21.7346 23.895 21.4801 23.7074 21.2925C23.5197 21.1048 23.2652 20.9994 22.9999 20.9994C22.7345 20.9994 22.48 21.1048 22.2924 21.2925Z" fill="currentColor"/>
16
+ </svg>
17
+ );
18
+ }
19
+ if (type === "bold") {
20
+ return (
21
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
22
+ <path d="M31.5007 16C31.5081 18.49 30.6998 20.914 29.1994 22.9012C28.9575 23.2111 28.6036 23.4136 28.214 23.4652C27.8243 23.5168 27.4299 23.4133 27.1157 23.1771C26.8015 22.9409 26.5926 22.5907 26.5339 22.2021C26.4752 21.8134 26.5715 21.4172 26.8019 21.0987C27.6097 20.0211 28.1499 18.767 28.3779 17.4398C28.606 16.1125 28.5154 14.75 28.1136 13.4646C27.7118 12.1792 27.0104 11.0076 26.067 10.0465C25.1237 9.08532 23.9655 8.36207 22.6878 7.93632C21.4102 7.51057 20.0496 7.39451 18.7183 7.59769C17.387 7.80087 16.123 8.31748 15.0305 9.10496C13.938 9.89244 13.0482 10.9282 12.4345 12.127C11.8208 13.3258 11.5007 14.6532 11.5007 16C11.5007 16.3978 11.3426 16.7793 11.0613 17.0606C10.78 17.3419 10.3985 17.5 10.0007 17.5C9.60285 17.5 9.22132 17.3419 8.94001 17.0606C8.65871 16.7793 8.50067 16.3978 8.50067 16C8.49995 15.1591 8.59175 14.3207 8.77442 13.5C7.31573 13.53 5.92871 14.1382 4.91847 15.1909C3.90824 16.2435 3.35755 17.6544 3.38755 19.1131C3.41755 20.5718 4.02579 21.9588 5.07845 22.9691C6.13112 23.9793 7.54198 24.53 9.00067 24.5H12.0007C12.3985 24.5 12.78 24.658 13.0613 24.9393C13.3426 25.2206 13.5007 25.6022 13.5007 26C13.5007 26.3978 13.3426 26.7793 13.0613 27.0606C12.78 27.3419 12.3985 27.5 12.0007 27.5H9.00067C7.84667 27.5014 6.70446 27.2678 5.64366 26.8135C4.58286 26.3591 3.62569 25.6935 2.83047 24.8572C2.03526 24.021 1.41867 23.0315 1.01827 21.9492C0.61787 20.8669 0.442053 19.7143 0.501533 18.5619C0.561013 17.4094 0.854545 16.2811 1.36424 15.2458C1.87393 14.2104 2.58911 13.2897 3.46619 12.5397C4.34327 11.7898 5.36388 11.2262 6.46582 10.8835C7.56776 10.5408 8.72795 10.426 9.87567 10.5462C11.0899 8.29166 13.0219 6.50685 15.3654 5.4747C17.7089 4.44254 20.3299 4.2221 22.8129 4.8483C25.2959 5.4745 27.4988 6.91153 29.0726 8.93161C30.6464 10.9517 31.5009 13.4392 31.5007 16ZM21.9394 20.9387L20.5007 22.375V16C20.5007 15.6022 20.3426 15.2206 20.0613 14.9393C19.78 14.658 19.3985 14.5 19.0007 14.5C18.6028 14.5 18.2213 14.658 17.94 14.9393C17.6587 15.2206 17.5007 15.6022 17.5007 16V22.375L16.0619 20.935C15.9224 20.7954 15.7567 20.6848 15.5744 20.6093C15.3921 20.5337 15.1967 20.4949 14.9994 20.4949C14.8021 20.4949 14.6067 20.5337 14.4244 20.6093C14.2421 20.6848 14.0765 20.7954 13.9369 20.935C13.7974 21.0745 13.6867 21.2402 13.6112 21.4225C13.5357 21.6048 13.4968 21.8002 13.4968 21.9975C13.4968 22.1948 13.5357 22.3902 13.6112 22.5725C13.6867 22.7548 13.7974 22.9204 13.9369 23.06L17.9369 27.06C18.0763 27.1998 18.2419 27.3108 18.4242 27.3865C18.6065 27.4622 18.802 27.5012 18.9994 27.5012C19.1968 27.5012 19.3923 27.4622 19.5747 27.3865C19.757 27.3108 19.9226 27.1998 20.0619 27.06L24.0619 23.06C24.3437 22.7782 24.502 22.396 24.502 21.9975C24.502 21.599 24.3437 21.2168 24.0619 20.935C23.7801 20.6532 23.3979 20.4949 22.9994 20.4949C22.6009 20.4949 22.2187 20.6532 21.9369 20.935L21.9394 20.9387Z" fill="currentColor"/>
23
+ </svg>
24
+ );
25
+ }
26
+ if (type === "fill") {
27
+ return (
28
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
29
+ <path d="M30.9912 15.565C30.7637 9.6925 25.8837 5 20.0075 5C17.9634 5.00032 15.9597 5.56958 14.2207 6.64404C12.4817 7.71851 11.0761 9.25577 10.1613 11.0837C9.40087 12.5992 9.00332 14.2707 9 15.9663C9.00392 16.2239 8.91043 16.4735 8.73823 16.6652C8.56603 16.8568 8.32782 16.9764 8.07125 17C7.93406 17.0098 7.79632 16.9912 7.66665 16.9453C7.53698 16.8995 7.41816 16.8274 7.31762 16.7335C7.21708 16.6397 7.13698 16.5261 7.08233 16.3999C7.02768 16.2737 6.99965 16.1375 7 16C6.99894 14.6013 7.22436 13.2116 7.6675 11.885C7.6967 11.7999 7.70241 11.7086 7.68404 11.6205C7.66566 11.5325 7.62388 11.451 7.5631 11.3848C7.50232 11.3185 7.42478 11.2698 7.33866 11.2439C7.25254 11.218 7.16102 11.2158 7.07375 11.2375C5.34103 11.6694 3.80227 12.6678 2.70185 14.0742C1.60143 15.4805 1.00244 17.2143 1 19C1 23.3988 4.71875 27 9.125 27H20C21.4807 26.9984 22.9459 26.6982 24.3079 26.1173C25.6699 25.5364 26.9007 24.6868 27.9268 23.6193C28.9529 22.5518 29.7531 21.2883 30.2797 19.9044C30.8062 18.5205 31.0482 17.0446 30.9912 15.565ZM23.7075 20.7075L19.7075 24.7075C19.6146 24.8005 19.5043 24.8742 19.3829 24.9246C19.2615 24.9749 19.1314 25.0008 19 25.0008C18.8686 25.0008 18.7385 24.9749 18.6171 24.9246C18.4957 24.8742 18.3854 24.8005 18.2925 24.7075L14.2925 20.7075C14.1049 20.5199 13.9994 20.2654 13.9994 20C13.9994 19.7346 14.1049 19.4801 14.2925 19.2925C14.4801 19.1049 14.7346 18.9994 15 18.9994C15.2654 18.9994 15.5199 19.1049 15.7075 19.2925L18 21.5863V14C18 13.7348 18.1054 13.4804 18.2929 13.2929C18.4804 13.1054 18.7348 13 19 13C19.2652 13 19.5196 13.1054 19.7071 13.2929C19.8946 13.4804 20 13.7348 20 14V21.5863L22.2925 19.2925C22.4801 19.1049 22.7346 18.9994 23 18.9994C23.2654 18.9994 23.5199 19.1049 23.7075 19.2925C23.8951 19.4801 24.0006 19.7346 24.0006 20C24.0006 20.2654 23.8951 20.5199 23.7075 20.7075Z" fill="currentColor"/>
30
+ </svg>
31
+ );
32
+ }
33
+ if (type === "duotone") {
34
+ return (
35
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
36
+ <path opacity="0.2" d="M29.9992 16C29.9992 18.6521 28.9456 21.1957 27.0702 23.071C25.1949 24.9464 22.6513 26 19.9992 26H8.99918C8.00663 25.9987 7.02568 25.7865 6.12144 25.3772C5.2172 24.9679 4.41033 24.371 3.75437 23.6261C3.09841 22.8812 2.60837 22.0054 2.31675 21.0566C2.02514 20.1079 1.93862 19.1079 2.06294 18.1232C2.18726 17.1385 2.51957 16.1914 3.03783 15.3449C3.55609 14.4984 4.24845 13.7718 5.06896 13.2133C5.88946 12.6548 6.81936 12.2772 7.79695 12.1055C8.77454 11.9338 9.77746 11.972 10.7392 12.2175V12.23C11.6142 10.0836 13.2077 8.30787 15.2472 7.20642C17.2867 6.10496 19.6454 5.74618 21.9201 6.19144C24.1949 6.6367 26.2443 7.85834 27.7179 9.64747C29.1916 11.4366 29.998 13.6821 29.9992 16Z" fill="currentColor"/>
37
+ <path d="M30.9999 16C31.0062 18.3814 30.2336 20.6996 28.7999 22.6012C28.7209 22.7063 28.6221 22.7948 28.5089 22.8616C28.3958 22.9284 28.2705 22.9724 28.1404 22.9908C28.0103 23.0093 27.8778 23.0019 27.7505 22.9692C27.6233 22.9364 27.5037 22.8789 27.3986 22.8C27.2936 22.721 27.2051 22.6221 27.1383 22.509C27.0714 22.3958 27.0275 22.2706 27.0091 22.1405C26.9906 22.0104 26.9979 21.8779 27.0307 21.7506C27.0634 21.6234 27.1209 21.5038 27.1999 21.3987C28.3734 19.844 29.0056 17.9478 28.9999 16C28.9999 13.613 28.0517 11.3238 26.3638 9.63601C24.676 7.94819 22.3868 6.99997 19.9999 6.99997C17.6129 6.99997 15.3238 7.94819 13.6359 9.63601C11.9481 11.3238 10.9999 13.613 10.9999 16C10.9999 16.2652 10.8945 16.5195 10.707 16.7071C10.5195 16.8946 10.2651 17 9.99988 17C9.73467 17 9.48031 16.8946 9.29278 16.7071C9.10524 16.5195 8.99988 16.2652 8.99988 16C8.9994 14.9908 9.13778 13.9864 9.41113 13.015C9.27489 13 9.13738 13 8.99988 13C7.40859 13 5.88246 13.6321 4.75724 14.7573C3.63203 15.8826 2.99988 17.4087 2.99988 19C2.99988 20.5913 3.63203 22.1174 4.75724 23.2426C5.88246 24.3678 7.40859 25 8.99988 25H11.9999C12.2651 25 12.5195 25.1053 12.707 25.2929C12.8945 25.4804 12.9999 25.7348 12.9999 26C12.9999 26.2652 12.8945 26.5195 12.707 26.7071C12.5195 26.8946 12.2651 27 11.9999 27H8.99988C7.9001 27.0002 6.81208 26.7737 5.80377 26.3346C4.79546 25.8955 3.88853 25.2532 3.1396 24.4478C2.39068 23.6424 1.81585 22.6913 1.45103 21.6538C1.08621 20.6162 0.939225 19.5147 1.01926 18.4178C1.09929 17.3209 1.40462 16.2523 1.91619 15.2788C2.42775 14.3052 3.13455 13.4476 3.99245 12.7595C4.85035 12.0713 5.84092 11.5675 6.90229 11.2794C7.96366 10.9913 9.07304 10.9251 10.1611 11.085C11.2691 8.86892 13.0928 7.09182 15.3368 6.04151C17.5808 4.99121 20.1136 4.72922 22.525 5.29798C24.9365 5.86674 27.0853 7.23294 28.6234 9.17529C30.1616 11.1176 30.9989 13.5224 30.9999 16ZM22.2924 21.2925L19.9999 23.5862V16C19.9999 15.7348 19.8945 15.4804 19.707 15.2929C19.5195 15.1053 19.2651 15 18.9999 15C18.7347 15 18.4803 15.1053 18.2928 15.2929C18.1052 15.4804 17.9999 15.7348 17.9999 16V23.5862L15.7074 21.2925C15.5197 21.1048 15.2652 20.9994 14.9999 20.9994C14.7345 20.9994 14.48 21.1048 14.2924 21.2925C14.1047 21.4801 13.9993 21.7346 13.9993 22C13.9993 22.2653 14.1047 22.5198 14.2924 22.7075L18.2924 26.7075C18.3853 26.8005 18.4955 26.8742 18.6169 26.9245C18.7383 26.9749 18.8685 27.0008 18.9999 27.0008C19.1313 27.0008 19.2614 26.9749 19.3828 26.9245C19.5042 26.8742 19.6145 26.8005 19.7074 26.7075L23.7074 22.7075C23.895 22.5198 24.0004 22.2653 24.0004 22C24.0004 21.7346 23.895 21.4801 23.7074 21.2925C23.5197 21.1048 23.2652 20.9994 22.9999 20.9994C22.7345 20.9994 22.48 21.1048 22.2924 21.2925Z" fill="currentColor"/>
38
+ </svg>
39
+ );
40
+ }
41
+ return (
42
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
43
+ <path d="M30.7493 16C30.756 18.327 30.0009 20.5923 28.5993 22.45C28.5402 22.5288 28.4662 22.5951 28.3814 22.6453C28.2967 22.6955 28.2029 22.7285 28.1054 22.7424C28.0079 22.7564 27.9086 22.751 27.8132 22.7265C27.7178 22.7021 27.6281 22.6591 27.5493 22.6C27.4705 22.5409 27.4041 22.4668 27.354 22.3821C27.3038 22.2973 27.2708 22.2035 27.2569 22.106C27.2429 22.0085 27.2483 21.9092 27.2728 21.8138C27.2972 21.7184 27.3402 21.6288 27.3993 21.55C28.2787 20.3774 28.8669 19.0127 29.1154 17.5682C29.3639 16.1238 29.2656 14.6409 28.8286 13.2419C28.3915 11.8429 27.6283 10.5678 26.6018 9.5216C25.5753 8.47542 24.3149 7.68814 22.9244 7.22465C21.534 6.76117 20.0533 6.63473 18.6043 6.85577C17.1554 7.0768 15.7798 7.63899 14.5907 8.49598C13.4017 9.35298 12.4334 10.4803 11.7655 11.7849C11.0976 13.0896 10.7493 14.5343 10.7493 16C10.7493 16.1989 10.6703 16.3897 10.5296 16.5303C10.389 16.671 10.1982 16.75 9.99932 16.75C9.8004 16.75 9.60964 16.671 9.46899 16.5303C9.32833 16.3897 9.24932 16.1989 9.24932 16C9.24838 14.913 9.41319 13.8323 9.73807 12.795C9.4929 12.7656 9.24623 12.7506 8.99932 12.75C7.34171 12.75 5.752 13.4085 4.5799 14.5806C3.4078 15.7527 2.74932 17.3424 2.74932 19C2.74932 20.6576 3.4078 22.2473 4.5799 23.4194C5.752 24.5915 7.34171 25.25 8.99932 25.25H11.9993C12.1982 25.25 12.389 25.329 12.5296 25.4696C12.6703 25.6103 12.7493 25.8011 12.7493 26C12.7493 26.1989 12.6703 26.3897 12.5296 26.5303C12.389 26.671 12.1982 26.75 11.9993 26.75H8.99932C7.92665 26.7496 6.86575 26.5266 5.88374 26.095C4.90173 25.6634 4.02001 25.0327 3.29438 24.2427C2.56874 23.4527 2.015 22.5207 1.66819 21.5057C1.32139 20.4906 1.18907 19.4146 1.27961 18.3458C1.37016 17.277 1.6816 16.2386 2.19421 15.2963C2.70683 14.3541 3.40947 13.5285 4.25765 12.8718C5.10583 12.2152 6.08109 11.7418 7.12171 11.4815C8.16232 11.2213 9.24563 11.1799 10.3031 11.36C11.3555 9.16156 13.1237 7.38603 15.3178 6.32459C17.5118 5.26315 20.0015 4.97882 22.3784 5.51822C24.7553 6.05762 26.8783 7.38874 28.3993 9.29326C29.9203 11.1978 30.7489 13.5626 30.7493 16ZM22.4693 21.47L19.7493 24.1887V16C19.7493 15.8011 19.6703 15.6103 19.5296 15.4696C19.389 15.329 19.1982 15.25 18.9993 15.25C18.8004 15.25 18.6096 15.329 18.469 15.4696C18.3283 15.6103 18.2493 15.8011 18.2493 16V24.1887L15.5293 21.47C15.3871 21.3375 15.1991 21.2654 15.0048 21.2688C14.8105 21.2722 14.6251 21.3509 14.4877 21.4884C14.3503 21.6258 14.2716 21.8112 14.2681 22.0055C14.2647 22.1998 14.3368 22.3878 14.4693 22.53L18.4693 26.53C18.6099 26.6704 18.8006 26.7493 18.9993 26.7493C19.1981 26.7493 19.3887 26.6704 19.5293 26.53L23.5293 22.53C23.6618 22.3878 23.7339 22.1998 23.7305 22.0055C23.7271 21.8112 23.6483 21.6258 23.5109 21.4884C23.3735 21.3509 23.1881 21.2722 22.9938 21.2688C22.7995 21.2654 22.6115 21.3375 22.4693 21.47Z" fill="currentColor"/>
44
+ </svg>
45
+ );
46
+ };
47
+
48
+ export default CloudArrowDown;
@@ -1,6 +1,6 @@
1
1
  import IconProps from "../../IconProps";
2
2
 
3
- const DotSixVertical = ({type}: IconProps) => {
3
+ const DotsSixVertical = ({type}: IconProps) => {
4
4
  if (type === 'thin') {
5
5
  return <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
6
6
  <path
@@ -46,4 +46,4 @@ const DotSixVertical = ({type}: IconProps) => {
46
46
  </svg>
47
47
  };
48
48
 
49
- export default DotSixVertical;
49
+ export default DotsSixVertical;
@@ -1,45 +1,103 @@
1
1
  import IconProps from "../../IconProps";
2
2
 
3
- const CalendarBlank = ({type = "light"}: IconProps) => {
3
+ const CalendarBlank = ({ type = "light" }: IconProps) => {
4
4
  if (type === "thin") {
5
5
  return (
6
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
7
- <path d="M26 4.5H22.5V3C22.5 2.86739 22.4473 2.74021 22.3536 2.64645C22.2598 2.55268 22.1326 2.5 22 2.5C21.8674 2.5 21.7402 2.55268 21.6464 2.64645C21.5527 2.74021 21.5 2.86739 21.5 3V4.5H10.5V3C10.5 2.86739 10.4473 2.74021 10.3536 2.64645C10.2598 2.55268 10.1326 2.5 10 2.5C9.86739 2.5 9.74021 2.55268 9.64645 2.64645C9.55268 2.74021 9.5 2.86739 9.5 3V4.5H6C5.60218 4.5 5.22064 4.65804 4.93934 4.93934C4.65804 5.22064 4.5 5.60218 4.5 6V26C4.5 26.3978 4.65804 26.7794 4.93934 27.0607C5.22064 27.342 5.60218 27.5 6 27.5H26C26.3978 27.5 26.7794 27.342 27.0607 27.0607C27.342 26.7794 27.5 26.3978 27.5 26V6C27.5 5.60218 27.342 5.22064 27.0607 4.93934C26.7794 4.65804 26.3978 4.5 26 4.5ZM6 5.5H9.5V7C9.5 7.13261 9.55268 7.25979 9.64645 7.35355C9.74021 7.44732 9.86739 7.5 10 7.5C10.1326 7.5 10.2598 7.44732 10.3536 7.35355C10.4473 7.25979 10.5 7.13261 10.5 7V5.5H21.5V7C21.5 7.13261 21.5527 7.25979 21.6464 7.35355C21.7402 7.44732 21.8674 7.5 22 7.5C22.1326 7.5 22.2598 7.44732 22.3536 7.35355C22.4473 7.25979 22.5 7.13261 22.5 7V5.5H26C26.1326 5.5 26.2598 5.55268 26.3536 5.64645C26.4473 5.74021 26.5 5.86739 26.5 6V10.5H5.5V6C5.5 5.86739 5.55268 5.74021 5.64645 5.64645C5.74021 5.55268 5.86739 5.5 6 5.5ZM26 26.5H6C5.86739 26.5 5.74021 26.4473 5.64645 26.3536C5.55268 26.2598 5.5 26.1326 5.5 26V11.5H26.5V26C26.5 26.1326 26.4473 26.2598 26.3536 26.3536C26.2598 26.4473 26.1326 26.5 26 26.5Z" fill="currentColor"/>
6
+ <svg
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="32"
9
+ height="32"
10
+ viewBox="0 0 32 32"
11
+ fill="none"
12
+ >
13
+ <path
14
+ d="M26 4.5H22.5V3C22.5 2.86739 22.4473 2.74021 22.3536 2.64645C22.2598 2.55268 22.1326 2.5 22 2.5C21.8674 2.5 21.7402 2.55268 21.6464 2.64645C21.5527 2.74021 21.5 2.86739 21.5 3V4.5H10.5V3C10.5 2.86739 10.4473 2.74021 10.3536 2.64645C10.2598 2.55268 10.1326 2.5 10 2.5C9.86739 2.5 9.74021 2.55268 9.64645 2.64645C9.55268 2.74021 9.5 2.86739 9.5 3V4.5H6C5.60218 4.5 5.22064 4.65804 4.93934 4.93934C4.65804 5.22064 4.5 5.60218 4.5 6V26C4.5 26.3978 4.65804 26.7794 4.93934 27.0607C5.22064 27.342 5.60218 27.5 6 27.5H26C26.3978 27.5 26.7794 27.342 27.0607 27.0607C27.342 26.7794 27.5 26.3978 27.5 26V6C27.5 5.60218 27.342 5.22064 27.0607 4.93934C26.7794 4.65804 26.3978 4.5 26 4.5ZM6 5.5H9.5V7C9.5 7.13261 9.55268 7.25979 9.64645 7.35355C9.74021 7.44732 9.86739 7.5 10 7.5C10.1326 7.5 10.2598 7.44732 10.3536 7.35355C10.4473 7.25979 10.5 7.13261 10.5 7V5.5H21.5V7C21.5 7.13261 21.5527 7.25979 21.6464 7.35355C21.7402 7.44732 21.8674 7.5 22 7.5C22.1326 7.5 22.2598 7.44732 22.3536 7.35355C22.4473 7.25979 22.5 7.13261 22.5 7V5.5H26C26.1326 5.5 26.2598 5.55268 26.3536 5.64645C26.4473 5.74021 26.5 5.86739 26.5 6V10.5H5.5V6C5.5 5.86739 5.55268 5.74021 5.64645 5.64645C5.74021 5.55268 5.86739 5.5 6 5.5ZM26 26.5H6C5.86739 26.5 5.74021 26.4473 5.64645 26.3536C5.55268 26.2598 5.5 26.1326 5.5 26V11.5H26.5V26C26.5 26.1326 26.4473 26.2598 26.3536 26.3536C26.2598 26.4473 26.1326 26.5 26 26.5Z"
15
+ fill="currentColor"
16
+ />
8
17
  </svg>
9
18
  );
10
19
  }
11
20
  if (type === "regular") {
12
21
  return (
13
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
14
- <path d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z" fill="currentColor"/>
22
+ <svg
23
+ xmlns="http://www.w3.org/2000/svg"
24
+ width="32"
25
+ height="32"
26
+ viewBox="0 0 32 32"
27
+ fill="none"
28
+ >
29
+ <path
30
+ d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z"
31
+ fill="currentColor"
32
+ />
15
33
  </svg>
16
34
  );
17
35
  }
18
36
  if (type === "bold") {
19
37
  return (
20
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
21
- <path d="M26 3.5H23.5V3C23.5 2.60218 23.342 2.22064 23.0607 1.93934C22.7794 1.65804 22.3978 1.5 22 1.5C21.6022 1.5 21.2206 1.65804 20.9393 1.93934C20.658 2.22064 20.5 2.60218 20.5 3V3.5H11.5V3C11.5 2.60218 11.342 2.22064 11.0607 1.93934C10.7794 1.65804 10.3978 1.5 10 1.5C9.60218 1.5 9.22064 1.65804 8.93934 1.93934C8.65804 2.22064 8.5 2.60218 8.5 3V3.5H6C5.33696 3.5 4.70107 3.76339 4.23223 4.23223C3.76339 4.70107 3.5 5.33696 3.5 6V26C3.5 26.663 3.76339 27.2989 4.23223 27.7678C4.70107 28.2366 5.33696 28.5 6 28.5H26C26.663 28.5 27.2989 28.2366 27.7678 27.7678C28.2366 27.2989 28.5 26.663 28.5 26V6C28.5 5.33696 28.2366 4.70107 27.7678 4.23223C27.2989 3.76339 26.663 3.5 26 3.5ZM8.5 6.5C8.5 6.89782 8.65804 7.27936 8.93934 7.56066C9.22064 7.84196 9.60218 8 10 8C10.3978 8 10.7794 7.84196 11.0607 7.56066C11.342 7.27936 11.5 6.89782 11.5 6.5H20.5C20.5 6.89782 20.658 7.27936 20.9393 7.56066C21.2206 7.84196 21.6022 8 22 8C22.3978 8 22.7794 7.84196 23.0607 7.56066C23.342 7.27936 23.5 6.89782 23.5 6.5H25.5V9.5H6.5V6.5H8.5ZM6.5 25.5V12.5H25.5V25.5H6.5Z" fill="currentColor"/>
38
+ <svg
39
+ xmlns="http://www.w3.org/2000/svg"
40
+ width="32"
41
+ height="32"
42
+ viewBox="0 0 32 32"
43
+ fill="none"
44
+ >
45
+ <path
46
+ d="M26 3.5H23.5V3C23.5 2.60218 23.342 2.22064 23.0607 1.93934C22.7794 1.65804 22.3978 1.5 22 1.5C21.6022 1.5 21.2206 1.65804 20.9393 1.93934C20.658 2.22064 20.5 2.60218 20.5 3V3.5H11.5V3C11.5 2.60218 11.342 2.22064 11.0607 1.93934C10.7794 1.65804 10.3978 1.5 10 1.5C9.60218 1.5 9.22064 1.65804 8.93934 1.93934C8.65804 2.22064 8.5 2.60218 8.5 3V3.5H6C5.33696 3.5 4.70107 3.76339 4.23223 4.23223C3.76339 4.70107 3.5 5.33696 3.5 6V26C3.5 26.663 3.76339 27.2989 4.23223 27.7678C4.70107 28.2366 5.33696 28.5 6 28.5H26C26.663 28.5 27.2989 28.2366 27.7678 27.7678C28.2366 27.2989 28.5 26.663 28.5 26V6C28.5 5.33696 28.2366 4.70107 27.7678 4.23223C27.2989 3.76339 26.663 3.5 26 3.5ZM8.5 6.5C8.5 6.89782 8.65804 7.27936 8.93934 7.56066C9.22064 7.84196 9.60218 8 10 8C10.3978 8 10.7794 7.84196 11.0607 7.56066C11.342 7.27936 11.5 6.89782 11.5 6.5H20.5C20.5 6.89782 20.658 7.27936 20.9393 7.56066C21.2206 7.84196 21.6022 8 22 8C22.3978 8 22.7794 7.84196 23.0607 7.56066C23.342 7.27936 23.5 6.89782 23.5 6.5H25.5V9.5H6.5V6.5H8.5ZM6.5 25.5V12.5H25.5V25.5H6.5Z"
47
+ fill="currentColor"
48
+ />
22
49
  </svg>
23
50
  );
24
51
  }
25
52
  if (type === "fill") {
26
53
  return (
27
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
28
- <path d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM26 10H6V6H9V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10Z" fill="currentColor"/>
54
+ <svg
55
+ xmlns="http://www.w3.org/2000/svg"
56
+ width="32"
57
+ height="32"
58
+ viewBox="0 0 32 32"
59
+ fill="none"
60
+ >
61
+ <path
62
+ d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM26 10H6V6H9V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10Z"
63
+ fill="currentColor"
64
+ />
29
65
  </svg>
30
66
  );
31
67
  }
32
68
  if (type === "duotone") {
33
69
  return (
34
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
35
- <path opacity="0.2" d="M27 6V11H5V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H26C26.2652 5 26.5196 5.10536 26.7071 5.29289C26.8946 5.48043 27 5.73478 27 6Z" fill="currentColor"/>
36
- <path d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z" fill="currentColor"/>
70
+ <svg
71
+ xmlns="http://www.w3.org/2000/svg"
72
+ width="32"
73
+ height="32"
74
+ viewBox="0 0 32 32"
75
+ fill="none"
76
+ >
77
+ <path
78
+ opacity="0.2"
79
+ d="M27 6V11H5V6C5 5.73478 5.10536 5.48043 5.29289 5.29289C5.48043 5.10536 5.73478 5 6 5H26C26.2652 5 26.5196 5.10536 26.7071 5.29289C26.8946 5.48043 27 5.73478 27 6Z"
80
+ fill="currentColor"
81
+ />
82
+ <path
83
+ d="M26 4H23V3C23 2.73478 22.8946 2.48043 22.7071 2.29289C22.5196 2.10536 22.2652 2 22 2C21.7348 2 21.4804 2.10536 21.2929 2.29289C21.1054 2.48043 21 2.73478 21 3V4H11V3C11 2.73478 10.8946 2.48043 10.7071 2.29289C10.5196 2.10536 10.2652 2 10 2C9.73478 2 9.48043 2.10536 9.29289 2.29289C9.10536 2.48043 9 2.73478 9 3V4H6C5.46957 4 4.96086 4.21071 4.58579 4.58579C4.21071 4.96086 4 5.46957 4 6V26C4 26.5304 4.21071 27.0391 4.58579 27.4142C4.96086 27.7893 5.46957 28 6 28H26C26.5304 28 27.0391 27.7893 27.4142 27.4142C27.7893 27.0391 28 26.5304 28 26V6C28 5.46957 27.7893 4.96086 27.4142 4.58579C27.0391 4.21071 26.5304 4 26 4ZM9 6V7C9 7.26522 9.10536 7.51957 9.29289 7.70711C9.48043 7.89464 9.73478 8 10 8C10.2652 8 10.5196 7.89464 10.7071 7.70711C10.8946 7.51957 11 7.26522 11 7V6H21V7C21 7.26522 21.1054 7.51957 21.2929 7.70711C21.4804 7.89464 21.7348 8 22 8C22.2652 8 22.5196 7.89464 22.7071 7.70711C22.8946 7.51957 23 7.26522 23 7V6H26V10H6V6H9ZM26 26H6V12H26V26Z"
84
+ fill="currentColor"
85
+ />
37
86
  </svg>
38
87
  );
39
88
  }
40
89
  return (
41
- <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
42
- <path d="M26 4.25H22.75V3C22.75 2.80109 22.671 2.61032 22.5303 2.46967C22.3897 2.32902 22.1989 2.25 22 2.25C21.8011 2.25 21.6103 2.32902 21.4697 2.46967C21.329 2.61032 21.25 2.80109 21.25 3V4.25H10.75V3C10.75 2.80109 10.671 2.61032 10.5303 2.46967C10.3897 2.32902 10.1989 2.25 10 2.25C9.80109 2.25 9.61032 2.32902 9.46967 2.46967C9.32902 2.61032 9.25 2.80109 9.25 3V4.25H6C5.53587 4.25 5.09075 4.43437 4.76256 4.76256C4.43437 5.09075 4.25 5.53587 4.25 6V26C4.25 26.4641 4.43437 26.9092 4.76256 27.2374C5.09075 27.5656 5.53587 27.75 6 27.75H26C26.4641 27.75 26.9092 27.5656 27.2374 27.2374C27.5656 26.9092 27.75 26.4641 27.75 26V6C27.75 5.53587 27.5656 5.09075 27.2374 4.76256C26.9092 4.43437 26.4641 4.25 26 4.25ZM6 5.75H9.25V7C9.25 7.19891 9.32902 7.38968 9.46967 7.53033C9.61032 7.67098 9.80109 7.75 10 7.75C10.1989 7.75 10.3897 7.67098 10.5303 7.53033C10.671 7.38968 10.75 7.19891 10.75 7V5.75H21.25V7C21.25 7.19891 21.329 7.38968 21.4697 7.53033C21.6103 7.67098 21.8011 7.75 22 7.75C22.1989 7.75 22.3897 7.67098 22.5303 7.53033C22.671 7.38968 22.75 7.19891 22.75 7V5.75H26C26.0663 5.75 26.1299 5.77634 26.1768 5.82322C26.2237 5.87011 26.25 5.9337 26.25 6V10.25H5.75V6C5.75 5.9337 5.77634 5.87011 5.82322 5.82322C5.87011 5.77634 5.9337 5.75 6 5.75ZM26 26.25H6C5.9337 26.25 5.87011 26.2237 5.82322 26.1768C5.77634 26.1299 5.75 26.0663 5.75 26V11.75H26.25V26C26.25 26.0663 26.2237 26.1299 26.1768 26.1768C26.1299 26.2237 26.0663 26.25 26 26.25Z" fill="currentColor"/>
90
+ <svg
91
+ xmlns="http://www.w3.org/2000/svg"
92
+ width="32"
93
+ height="32"
94
+ viewBox="0 0 32 32"
95
+ fill="none"
96
+ >
97
+ <path
98
+ d="M26 4.25H22.75V3C22.75 2.80109 22.671 2.61032 22.5303 2.46967C22.3897 2.32902 22.1989 2.25 22 2.25C21.8011 2.25 21.6103 2.32902 21.4697 2.46967C21.329 2.61032 21.25 2.80109 21.25 3V4.25H10.75V3C10.75 2.80109 10.671 2.61032 10.5303 2.46967C10.3897 2.32902 10.1989 2.25 10 2.25C9.80109 2.25 9.61032 2.32902 9.46967 2.46967C9.32902 2.61032 9.25 2.80109 9.25 3V4.25H6C5.53587 4.25 5.09075 4.43437 4.76256 4.76256C4.43437 5.09075 4.25 5.53587 4.25 6V26C4.25 26.4641 4.43437 26.9092 4.76256 27.2374C5.09075 27.5656 5.53587 27.75 6 27.75H26C26.4641 27.75 26.9092 27.5656 27.2374 27.2374C27.5656 26.9092 27.75 26.4641 27.75 26V6C27.75 5.53587 27.5656 5.09075 27.2374 4.76256C26.9092 4.43437 26.4641 4.25 26 4.25ZM6 5.75H9.25V7C9.25 7.19891 9.32902 7.38968 9.46967 7.53033C9.61032 7.67098 9.80109 7.75 10 7.75C10.1989 7.75 10.3897 7.67098 10.5303 7.53033C10.671 7.38968 10.75 7.19891 10.75 7V5.75H21.25V7C21.25 7.19891 21.329 7.38968 21.4697 7.53033C21.6103 7.67098 21.8011 7.75 22 7.75C22.1989 7.75 22.3897 7.67098 22.5303 7.53033C22.671 7.38968 22.75 7.19891 22.75 7V5.75H26C26.0663 5.75 26.1299 5.77634 26.1768 5.82322C26.2237 5.87011 26.25 5.9337 26.25 6V10.25H5.75V6C5.75 5.9337 5.77634 5.87011 5.82322 5.82322C5.87011 5.77634 5.9337 5.75 6 5.75ZM26 26.25H6C5.9337 26.25 5.87011 26.2237 5.82322 26.1768C5.77634 26.1299 5.75 26.0663 5.75 26V11.75H26.25V26C26.25 26.0663 26.2237 26.1299 26.1768 26.1768C26.1299 26.2237 26.0663 26.25 26 26.25Z"
99
+ fill="currentColor"
100
+ />
43
101
  </svg>
44
102
  );
45
103
  };
@@ -53,6 +53,7 @@ export { default as ChatCentered } from './Communication/ChatCentered/ChatCenter
53
53
  export { default as ChatCenteredDots } from './Communication/ChatCenteredDots/ChatCenteredDots.tsx';
54
54
  export { default as ChatCenteredText } from './Communication/ChatCenteredText/ChatCenteredText.tsx';
55
55
  export { default as ChatTearDropDots} from './Communication/ChatTeardropDots/ChatTeardropDots.tsx';
56
+ export { default as PaperPlaneTilt} from './Communication/PaperPlaneTilt/PaperPlaneTilt.tsx';
56
57
 
57
58
 
58
59
 
@@ -160,6 +161,7 @@ export { default as ImageSquare } from './Media/ImagesSquare/ImagesSquare.tsx';
160
161
  export { default as CassetteTape } from './Media/CassetteTape/CassetteTape.tsx';
161
162
  export { default as ClosedCaptioning } from './Media/ClosedCaptioning/ClosedCaptioning.tsx';
162
163
  export { default as Images } from './Media/Images/Images.tsx';
164
+ export { default as Image } from './Media/Image/Image.tsx';
163
165
 
164
166
 
165
167
 
@@ -210,7 +212,7 @@ export { default as SealCheck } from './SecurityAndWarnings/SealCheck/SealCheck.
210
212
  // Systems and devices
211
213
  export { default as Bell } from './SystemAndDevice/Bell/Bell';
212
214
  export { default as MagnifyingGlass } from './SystemAndDevice/MagnifyingGlass/MagnifyingGlass';
213
- export { default as DotsSixVertical } from './SystemAndDevice/DotSixVertical/DotSixVertical.tsx';
215
+ export { default as DotsSixVertical } from './SystemAndDevice/DotsSixVertical/DotsSixVertical.tsx';
214
216
  export { default as DotsSix } from './SystemAndDevice/DotsSix/DotsSix.tsx';
215
217
  export { default as DotsThree } from './SystemAndDevice/DotsThree/DotsThree.tsx';
216
218
  export { default as DotsThreeVertical } from './SystemAndDevice/DotsThreeVertical/DotsThreeVertical.tsx';
@@ -229,16 +231,16 @@ export { default as Desktop } from './SystemAndDevice/Desktop/Desktop.tsx';
229
231
  export { default as BellRinging } from './SystemAndDevice/BellRinging/BellRinging.tsx';
230
232
  export { default as PlugsConnected } from './SystemAndDevice/PlugsConnected/PlugsConnected.tsx';
231
233
  export { default as CloudArrowUp } from './SystemAndDevice/CloudArrowUp/CloudArrowUp.tsx';
232
-
234
+ export { default as DesktopTower } from './SystemAndDevice/DesktopTower/DesktopTower.tsx';
235
+ export { default as CloudArrowDown } from './SystemAndDevice/CloudArrowDown/CloudArrowDown.tsx';
233
236
 
234
237
  // Time
235
238
  export { default as Calendar } from './Time/Calendar/Calendar';
236
239
  export { default as CalendarCheck } from './Time/CalendarCheck/CalendarCheck.tsx';
237
- export { default as CalendarBank } from './Time/CalendarBank/CalendarBank';
240
+ export { default as CalendarBlank } from './Time/CalendarBlank/CalendarBlank.tsx';
238
241
  export { default as Clock } from './Time/Clock/Clock';
239
242
  export { default as ClockCounterClockwise } from './Time/ClockCounterClockwise/ClockCounterClockwise.tsx';
240
243
  export { default as Alarm } from './Time/Alarm/Alarm.tsx';
241
- export { default as CalendarBlank } from './Time/CalendarBlank/CalendarBlank.tsx';
242
244
  export { default as CalendarPlus } from './Time/CalendarPlus/CalendarPlus.tsx';
243
245
  export { default as CalendarX } from './Time/CalendarX/CalendarX.tsx';
244
246
  export { default as ClockAfternoon } from './Time/ClockAfternoon/ClockAfternoon.tsx';
@@ -1,4 +0,0 @@
1
- import { default as IconProps } from '../../IconProps';
2
-
3
- declare const DotSixVertical: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
- export default DotSixVertical;
@@ -1,4 +0,0 @@
1
- import { default as IconProps } from '../../IconProps';
2
-
3
- declare const CalendarBank: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
- export default CalendarBank;