@octavius2929-personal/design-system 0.15.0 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2895,10 +2895,313 @@ var ListItem = forwardRef32(function ListItem2({ leading: leading2, trailing: tr
2895
2895
  );
2896
2896
  });
2897
2897
 
2898
+ // src/components/icons/alert-circle/index.tsx
2899
+ import { jsx as jsx46, jsxs as jsxs31 } from "react/jsx-runtime";
2900
+ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2901
+ return /* @__PURE__ */ jsxs31(
2902
+ "svg",
2903
+ {
2904
+ xmlns: "http://www.w3.org/2000/svg",
2905
+ width: size3,
2906
+ height: size3,
2907
+ viewBox: "0 0 24 24",
2908
+ fill: "none",
2909
+ stroke: "currentColor",
2910
+ strokeWidth,
2911
+ strokeLinecap: "round",
2912
+ strokeLinejoin: "round",
2913
+ "aria-hidden": "true",
2914
+ ...rest,
2915
+ children: [
2916
+ /* @__PURE__ */ jsx46("circle", { cx: "12", cy: "12", r: "10" }),
2917
+ /* @__PURE__ */ jsx46("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
2918
+ /* @__PURE__ */ jsx46("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
2919
+ ]
2920
+ }
2921
+ );
2922
+ }
2923
+
2924
+ // src/components/icons/archive/index.tsx
2925
+ import { jsx as jsx47, jsxs as jsxs32 } from "react/jsx-runtime";
2926
+ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2927
+ return /* @__PURE__ */ jsxs32(
2928
+ "svg",
2929
+ {
2930
+ xmlns: "http://www.w3.org/2000/svg",
2931
+ width: size3,
2932
+ height: size3,
2933
+ viewBox: "0 0 24 24",
2934
+ fill: "none",
2935
+ stroke: "currentColor",
2936
+ strokeWidth,
2937
+ strokeLinecap: "round",
2938
+ strokeLinejoin: "round",
2939
+ "aria-hidden": "true",
2940
+ ...rest,
2941
+ children: [
2942
+ /* @__PURE__ */ jsx47("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
2943
+ /* @__PURE__ */ jsx47("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
2944
+ /* @__PURE__ */ jsx47("path", { d: "M10 12h4" })
2945
+ ]
2946
+ }
2947
+ );
2948
+ }
2949
+
2950
+ // src/components/icons/arrow-down/index.tsx
2951
+ import { jsx as jsx48, jsxs as jsxs33 } from "react/jsx-runtime";
2952
+ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2953
+ return /* @__PURE__ */ jsxs33(
2954
+ "svg",
2955
+ {
2956
+ xmlns: "http://www.w3.org/2000/svg",
2957
+ width: size3,
2958
+ height: size3,
2959
+ viewBox: "0 0 24 24",
2960
+ fill: "none",
2961
+ stroke: "currentColor",
2962
+ strokeWidth,
2963
+ strokeLinecap: "round",
2964
+ strokeLinejoin: "round",
2965
+ "aria-hidden": "true",
2966
+ ...rest,
2967
+ children: [
2968
+ /* @__PURE__ */ jsx48("path", { d: "M12 5v14" }),
2969
+ /* @__PURE__ */ jsx48("path", { d: "m19 12-7 7-7-7" })
2970
+ ]
2971
+ }
2972
+ );
2973
+ }
2974
+
2975
+ // src/components/icons/arrow-left/index.tsx
2976
+ import { jsx as jsx49, jsxs as jsxs34 } from "react/jsx-runtime";
2977
+ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2978
+ return /* @__PURE__ */ jsxs34(
2979
+ "svg",
2980
+ {
2981
+ xmlns: "http://www.w3.org/2000/svg",
2982
+ width: size3,
2983
+ height: size3,
2984
+ viewBox: "0 0 24 24",
2985
+ fill: "none",
2986
+ stroke: "currentColor",
2987
+ strokeWidth,
2988
+ strokeLinecap: "round",
2989
+ strokeLinejoin: "round",
2990
+ "aria-hidden": "true",
2991
+ ...rest,
2992
+ children: [
2993
+ /* @__PURE__ */ jsx49("path", { d: "m12 19-7-7 7-7" }),
2994
+ /* @__PURE__ */ jsx49("path", { d: "M19 12H5" })
2995
+ ]
2996
+ }
2997
+ );
2998
+ }
2999
+
3000
+ // src/components/icons/arrow-right/index.tsx
3001
+ import { jsx as jsx50, jsxs as jsxs35 } from "react/jsx-runtime";
3002
+ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3003
+ return /* @__PURE__ */ jsxs35(
3004
+ "svg",
3005
+ {
3006
+ xmlns: "http://www.w3.org/2000/svg",
3007
+ width: size3,
3008
+ height: size3,
3009
+ viewBox: "0 0 24 24",
3010
+ fill: "none",
3011
+ stroke: "currentColor",
3012
+ strokeWidth,
3013
+ strokeLinecap: "round",
3014
+ strokeLinejoin: "round",
3015
+ "aria-hidden": "true",
3016
+ ...rest,
3017
+ children: [
3018
+ /* @__PURE__ */ jsx50("path", { d: "M5 12h14" }),
3019
+ /* @__PURE__ */ jsx50("path", { d: "m12 5 7 7-7 7" })
3020
+ ]
3021
+ }
3022
+ );
3023
+ }
3024
+
3025
+ // src/components/icons/arrow-up/index.tsx
3026
+ import { jsx as jsx51, jsxs as jsxs36 } from "react/jsx-runtime";
3027
+ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3028
+ return /* @__PURE__ */ jsxs36(
3029
+ "svg",
3030
+ {
3031
+ xmlns: "http://www.w3.org/2000/svg",
3032
+ width: size3,
3033
+ height: size3,
3034
+ viewBox: "0 0 24 24",
3035
+ fill: "none",
3036
+ stroke: "currentColor",
3037
+ strokeWidth,
3038
+ strokeLinecap: "round",
3039
+ strokeLinejoin: "round",
3040
+ "aria-hidden": "true",
3041
+ ...rest,
3042
+ children: [
3043
+ /* @__PURE__ */ jsx51("path", { d: "m5 12 7-7 7 7" }),
3044
+ /* @__PURE__ */ jsx51("path", { d: "M12 19V5" })
3045
+ ]
3046
+ }
3047
+ );
3048
+ }
3049
+
3050
+ // src/components/icons/at-sign/index.tsx
3051
+ import { jsx as jsx52, jsxs as jsxs37 } from "react/jsx-runtime";
3052
+ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3053
+ return /* @__PURE__ */ jsxs37(
3054
+ "svg",
3055
+ {
3056
+ xmlns: "http://www.w3.org/2000/svg",
3057
+ width: size3,
3058
+ height: size3,
3059
+ viewBox: "0 0 24 24",
3060
+ fill: "none",
3061
+ stroke: "currentColor",
3062
+ strokeWidth,
3063
+ strokeLinecap: "round",
3064
+ strokeLinejoin: "round",
3065
+ "aria-hidden": "true",
3066
+ ...rest,
3067
+ children: [
3068
+ /* @__PURE__ */ jsx52("circle", { cx: "12", cy: "12", r: "4" }),
3069
+ /* @__PURE__ */ jsx52("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
3070
+ ]
3071
+ }
3072
+ );
3073
+ }
3074
+
3075
+ // src/components/icons/bell/index.tsx
3076
+ import { jsx as jsx53, jsxs as jsxs38 } from "react/jsx-runtime";
3077
+ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3078
+ return /* @__PURE__ */ jsxs38(
3079
+ "svg",
3080
+ {
3081
+ xmlns: "http://www.w3.org/2000/svg",
3082
+ width: size3,
3083
+ height: size3,
3084
+ viewBox: "0 0 24 24",
3085
+ fill: "none",
3086
+ stroke: "currentColor",
3087
+ strokeWidth,
3088
+ strokeLinecap: "round",
3089
+ strokeLinejoin: "round",
3090
+ "aria-hidden": "true",
3091
+ ...rest,
3092
+ children: [
3093
+ /* @__PURE__ */ jsx53("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
3094
+ /* @__PURE__ */ jsx53("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
3095
+ ]
3096
+ }
3097
+ );
3098
+ }
3099
+
3100
+ // src/components/icons/bell-off/index.tsx
3101
+ import { jsx as jsx54, jsxs as jsxs39 } from "react/jsx-runtime";
3102
+ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3103
+ return /* @__PURE__ */ jsxs39(
3104
+ "svg",
3105
+ {
3106
+ xmlns: "http://www.w3.org/2000/svg",
3107
+ width: size3,
3108
+ height: size3,
3109
+ viewBox: "0 0 24 24",
3110
+ fill: "none",
3111
+ stroke: "currentColor",
3112
+ strokeWidth,
3113
+ strokeLinecap: "round",
3114
+ strokeLinejoin: "round",
3115
+ "aria-hidden": "true",
3116
+ ...rest,
3117
+ children: [
3118
+ /* @__PURE__ */ jsx54("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
3119
+ /* @__PURE__ */ jsx54("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
3120
+ /* @__PURE__ */ jsx54("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
3121
+ /* @__PURE__ */ jsx54("path", { d: "m2 2 20 20" })
3122
+ ]
3123
+ }
3124
+ );
3125
+ }
3126
+
3127
+ // src/components/icons/bookmark/index.tsx
3128
+ import { jsx as jsx55 } from "react/jsx-runtime";
3129
+ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3130
+ return /* @__PURE__ */ jsx55(
3131
+ "svg",
3132
+ {
3133
+ xmlns: "http://www.w3.org/2000/svg",
3134
+ width: size3,
3135
+ height: size3,
3136
+ viewBox: "0 0 24 24",
3137
+ fill: "none",
3138
+ stroke: "currentColor",
3139
+ strokeWidth,
3140
+ strokeLinecap: "round",
3141
+ strokeLinejoin: "round",
3142
+ "aria-hidden": "true",
3143
+ ...rest,
3144
+ children: /* @__PURE__ */ jsx55("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
3145
+ }
3146
+ );
3147
+ }
3148
+
3149
+ // src/components/icons/calendar/index.tsx
3150
+ import { jsx as jsx56, jsxs as jsxs40 } from "react/jsx-runtime";
3151
+ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3152
+ return /* @__PURE__ */ jsxs40(
3153
+ "svg",
3154
+ {
3155
+ xmlns: "http://www.w3.org/2000/svg",
3156
+ width: size3,
3157
+ height: size3,
3158
+ viewBox: "0 0 24 24",
3159
+ fill: "none",
3160
+ stroke: "currentColor",
3161
+ strokeWidth,
3162
+ strokeLinecap: "round",
3163
+ strokeLinejoin: "round",
3164
+ "aria-hidden": "true",
3165
+ ...rest,
3166
+ children: [
3167
+ /* @__PURE__ */ jsx56("path", { d: "M8 2v4" }),
3168
+ /* @__PURE__ */ jsx56("path", { d: "M16 2v4" }),
3169
+ /* @__PURE__ */ jsx56("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
3170
+ /* @__PURE__ */ jsx56("path", { d: "M3 10h18" })
3171
+ ]
3172
+ }
3173
+ );
3174
+ }
3175
+
3176
+ // src/components/icons/camera/index.tsx
3177
+ import { jsx as jsx57, jsxs as jsxs41 } from "react/jsx-runtime";
3178
+ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3179
+ return /* @__PURE__ */ jsxs41(
3180
+ "svg",
3181
+ {
3182
+ xmlns: "http://www.w3.org/2000/svg",
3183
+ width: size3,
3184
+ height: size3,
3185
+ viewBox: "0 0 24 24",
3186
+ fill: "none",
3187
+ stroke: "currentColor",
3188
+ strokeWidth,
3189
+ strokeLinecap: "round",
3190
+ strokeLinejoin: "round",
3191
+ "aria-hidden": "true",
3192
+ ...rest,
3193
+ children: [
3194
+ /* @__PURE__ */ jsx57("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
3195
+ /* @__PURE__ */ jsx57("circle", { cx: "12", cy: "13", r: "3" })
3196
+ ]
3197
+ }
3198
+ );
3199
+ }
3200
+
2898
3201
  // src/components/icons/chevron-up/index.tsx
2899
- import { jsx as jsx46 } from "react/jsx-runtime";
3202
+ import { jsx as jsx58 } from "react/jsx-runtime";
2900
3203
  function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2901
- return /* @__PURE__ */ jsx46(
3204
+ return /* @__PURE__ */ jsx58(
2902
3205
  "svg",
2903
3206
  {
2904
3207
  xmlns: "http://www.w3.org/2000/svg",
@@ -2912,15 +3215,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2912
3215
  strokeLinejoin: "round",
2913
3216
  "aria-hidden": "true",
2914
3217
  ...rest,
2915
- children: /* @__PURE__ */ jsx46("path", { d: "m18 15-6-6-6 6" })
3218
+ children: /* @__PURE__ */ jsx58("path", { d: "m18 15-6-6-6 6" })
2916
3219
  }
2917
3220
  );
2918
3221
  }
2919
3222
 
2920
- // src/components/icons/search/index.tsx
2921
- import { jsx as jsx47, jsxs as jsxs31 } from "react/jsx-runtime";
2922
- function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2923
- return /* @__PURE__ */ jsxs31(
3223
+ // src/components/icons/chevrons-left/index.tsx
3224
+ import { jsx as jsx59, jsxs as jsxs42 } from "react/jsx-runtime";
3225
+ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3226
+ return /* @__PURE__ */ jsxs42(
2924
3227
  "svg",
2925
3228
  {
2926
3229
  xmlns: "http://www.w3.org/2000/svg",
@@ -2935,17 +3238,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2935
3238
  "aria-hidden": "true",
2936
3239
  ...rest,
2937
3240
  children: [
2938
- /* @__PURE__ */ jsx47("circle", { cx: "11", cy: "11", r: "8" }),
2939
- /* @__PURE__ */ jsx47("path", { d: "m21 21-4.3-4.3" })
3241
+ /* @__PURE__ */ jsx59("path", { d: "m11 17-5-5 5-5" }),
3242
+ /* @__PURE__ */ jsx59("path", { d: "m18 17-5-5 5-5" })
2940
3243
  ]
2941
3244
  }
2942
3245
  );
2943
3246
  }
2944
3247
 
2945
- // src/components/icons/plus/index.tsx
2946
- import { jsx as jsx48, jsxs as jsxs32 } from "react/jsx-runtime";
2947
- function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2948
- return /* @__PURE__ */ jsxs32(
3248
+ // src/components/icons/chevrons-right/index.tsx
3249
+ import { jsx as jsx60, jsxs as jsxs43 } from "react/jsx-runtime";
3250
+ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3251
+ return /* @__PURE__ */ jsxs43(
2949
3252
  "svg",
2950
3253
  {
2951
3254
  xmlns: "http://www.w3.org/2000/svg",
@@ -2960,17 +3263,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2960
3263
  "aria-hidden": "true",
2961
3264
  ...rest,
2962
3265
  children: [
2963
- /* @__PURE__ */ jsx48("path", { d: "M5 12h14" }),
2964
- /* @__PURE__ */ jsx48("path", { d: "M12 5v14" })
3266
+ /* @__PURE__ */ jsx60("path", { d: "m6 17 5-5-5-5" }),
3267
+ /* @__PURE__ */ jsx60("path", { d: "m13 17 5-5-5-5" })
2965
3268
  ]
2966
3269
  }
2967
3270
  );
2968
3271
  }
2969
3272
 
2970
- // src/components/icons/minus/index.tsx
2971
- import { jsx as jsx49 } from "react/jsx-runtime";
2972
- function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2973
- return /* @__PURE__ */ jsx49(
3273
+ // src/components/icons/clipboard/index.tsx
3274
+ import { jsx as jsx61, jsxs as jsxs44 } from "react/jsx-runtime";
3275
+ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3276
+ return /* @__PURE__ */ jsxs44(
2974
3277
  "svg",
2975
3278
  {
2976
3279
  xmlns: "http://www.w3.org/2000/svg",
@@ -2984,15 +3287,18 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2984
3287
  strokeLinejoin: "round",
2985
3288
  "aria-hidden": "true",
2986
3289
  ...rest,
2987
- children: /* @__PURE__ */ jsx49("path", { d: "M5 12h14" })
3290
+ children: [
3291
+ /* @__PURE__ */ jsx61("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
3292
+ /* @__PURE__ */ jsx61("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
3293
+ ]
2988
3294
  }
2989
3295
  );
2990
3296
  }
2991
3297
 
2992
- // src/components/icons/more-horizontal/index.tsx
2993
- import { jsx as jsx50, jsxs as jsxs33 } from "react/jsx-runtime";
2994
- function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
2995
- return /* @__PURE__ */ jsxs33(
3298
+ // src/components/icons/clock/index.tsx
3299
+ import { jsx as jsx62, jsxs as jsxs45 } from "react/jsx-runtime";
3300
+ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3301
+ return /* @__PURE__ */ jsxs45(
2996
3302
  "svg",
2997
3303
  {
2998
3304
  xmlns: "http://www.w3.org/2000/svg",
@@ -3007,21 +3313,2229 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3007
3313
  "aria-hidden": "true",
3008
3314
  ...rest,
3009
3315
  children: [
3010
- /* @__PURE__ */ jsx50("circle", { cx: "12", cy: "12", r: "1" }),
3011
- /* @__PURE__ */ jsx50("circle", { cx: "19", cy: "12", r: "1" }),
3012
- /* @__PURE__ */ jsx50("circle", { cx: "5", cy: "12", r: "1" })
3316
+ /* @__PURE__ */ jsx62("circle", { cx: "12", cy: "12", r: "10" }),
3317
+ /* @__PURE__ */ jsx62("polyline", { points: "12 6 12 12 16 14" })
3013
3318
  ]
3014
3319
  }
3015
3320
  );
3016
3321
  }
3322
+
3323
+ // src/components/icons/cloud/index.tsx
3324
+ import { jsx as jsx63 } from "react/jsx-runtime";
3325
+ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3326
+ return /* @__PURE__ */ jsx63(
3327
+ "svg",
3328
+ {
3329
+ xmlns: "http://www.w3.org/2000/svg",
3330
+ width: size3,
3331
+ height: size3,
3332
+ viewBox: "0 0 24 24",
3333
+ fill: "none",
3334
+ stroke: "currentColor",
3335
+ strokeWidth,
3336
+ strokeLinecap: "round",
3337
+ strokeLinejoin: "round",
3338
+ "aria-hidden": "true",
3339
+ ...rest,
3340
+ children: /* @__PURE__ */ jsx63("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
3341
+ }
3342
+ );
3343
+ }
3344
+
3345
+ // src/components/icons/copy/index.tsx
3346
+ import { jsx as jsx64, jsxs as jsxs46 } from "react/jsx-runtime";
3347
+ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3348
+ return /* @__PURE__ */ jsxs46(
3349
+ "svg",
3350
+ {
3351
+ xmlns: "http://www.w3.org/2000/svg",
3352
+ width: size3,
3353
+ height: size3,
3354
+ viewBox: "0 0 24 24",
3355
+ fill: "none",
3356
+ stroke: "currentColor",
3357
+ strokeWidth,
3358
+ strokeLinecap: "round",
3359
+ strokeLinejoin: "round",
3360
+ "aria-hidden": "true",
3361
+ ...rest,
3362
+ children: [
3363
+ /* @__PURE__ */ jsx64("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
3364
+ /* @__PURE__ */ jsx64("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
3365
+ ]
3366
+ }
3367
+ );
3368
+ }
3369
+
3370
+ // src/components/icons/corner-down-right/index.tsx
3371
+ import { jsx as jsx65, jsxs as jsxs47 } from "react/jsx-runtime";
3372
+ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3373
+ return /* @__PURE__ */ jsxs47(
3374
+ "svg",
3375
+ {
3376
+ xmlns: "http://www.w3.org/2000/svg",
3377
+ width: size3,
3378
+ height: size3,
3379
+ viewBox: "0 0 24 24",
3380
+ fill: "none",
3381
+ stroke: "currentColor",
3382
+ strokeWidth,
3383
+ strokeLinecap: "round",
3384
+ strokeLinejoin: "round",
3385
+ "aria-hidden": "true",
3386
+ ...rest,
3387
+ children: [
3388
+ /* @__PURE__ */ jsx65("polyline", { points: "15 10 20 15 15 20" }),
3389
+ /* @__PURE__ */ jsx65("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
3390
+ ]
3391
+ }
3392
+ );
3393
+ }
3394
+
3395
+ // src/components/icons/credit-card/index.tsx
3396
+ import { jsx as jsx66, jsxs as jsxs48 } from "react/jsx-runtime";
3397
+ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3398
+ return /* @__PURE__ */ jsxs48(
3399
+ "svg",
3400
+ {
3401
+ xmlns: "http://www.w3.org/2000/svg",
3402
+ width: size3,
3403
+ height: size3,
3404
+ viewBox: "0 0 24 24",
3405
+ fill: "none",
3406
+ stroke: "currentColor",
3407
+ strokeWidth,
3408
+ strokeLinecap: "round",
3409
+ strokeLinejoin: "round",
3410
+ "aria-hidden": "true",
3411
+ ...rest,
3412
+ children: [
3413
+ /* @__PURE__ */ jsx66("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
3414
+ /* @__PURE__ */ jsx66("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
3415
+ ]
3416
+ }
3417
+ );
3418
+ }
3419
+
3420
+ // src/components/icons/dollar-sign/index.tsx
3421
+ import { jsx as jsx67, jsxs as jsxs49 } from "react/jsx-runtime";
3422
+ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3423
+ return /* @__PURE__ */ jsxs49(
3424
+ "svg",
3425
+ {
3426
+ xmlns: "http://www.w3.org/2000/svg",
3427
+ width: size3,
3428
+ height: size3,
3429
+ viewBox: "0 0 24 24",
3430
+ fill: "none",
3431
+ stroke: "currentColor",
3432
+ strokeWidth,
3433
+ strokeLinecap: "round",
3434
+ strokeLinejoin: "round",
3435
+ "aria-hidden": "true",
3436
+ ...rest,
3437
+ children: [
3438
+ /* @__PURE__ */ jsx67("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
3439
+ /* @__PURE__ */ jsx67("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
3440
+ ]
3441
+ }
3442
+ );
3443
+ }
3444
+
3445
+ // src/components/icons/download/index.tsx
3446
+ import { jsx as jsx68, jsxs as jsxs50 } from "react/jsx-runtime";
3447
+ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3448
+ return /* @__PURE__ */ jsxs50(
3449
+ "svg",
3450
+ {
3451
+ xmlns: "http://www.w3.org/2000/svg",
3452
+ width: size3,
3453
+ height: size3,
3454
+ viewBox: "0 0 24 24",
3455
+ fill: "none",
3456
+ stroke: "currentColor",
3457
+ strokeWidth,
3458
+ strokeLinecap: "round",
3459
+ strokeLinejoin: "round",
3460
+ "aria-hidden": "true",
3461
+ ...rest,
3462
+ children: [
3463
+ /* @__PURE__ */ jsx68("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
3464
+ /* @__PURE__ */ jsx68("polyline", { points: "7 10 12 15 17 10" }),
3465
+ /* @__PURE__ */ jsx68("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
3466
+ ]
3467
+ }
3468
+ );
3469
+ }
3470
+
3471
+ // src/components/icons/external-link/index.tsx
3472
+ import { jsx as jsx69, jsxs as jsxs51 } from "react/jsx-runtime";
3473
+ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3474
+ return /* @__PURE__ */ jsxs51(
3475
+ "svg",
3476
+ {
3477
+ xmlns: "http://www.w3.org/2000/svg",
3478
+ width: size3,
3479
+ height: size3,
3480
+ viewBox: "0 0 24 24",
3481
+ fill: "none",
3482
+ stroke: "currentColor",
3483
+ strokeWidth,
3484
+ strokeLinecap: "round",
3485
+ strokeLinejoin: "round",
3486
+ "aria-hidden": "true",
3487
+ ...rest,
3488
+ children: [
3489
+ /* @__PURE__ */ jsx69("path", { d: "M15 3h6v6" }),
3490
+ /* @__PURE__ */ jsx69("path", { d: "M10 14 21 3" }),
3491
+ /* @__PURE__ */ jsx69("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
3492
+ ]
3493
+ }
3494
+ );
3495
+ }
3496
+
3497
+ // src/components/icons/file/index.tsx
3498
+ import { jsx as jsx70, jsxs as jsxs52 } from "react/jsx-runtime";
3499
+ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3500
+ return /* @__PURE__ */ jsxs52(
3501
+ "svg",
3502
+ {
3503
+ xmlns: "http://www.w3.org/2000/svg",
3504
+ width: size3,
3505
+ height: size3,
3506
+ viewBox: "0 0 24 24",
3507
+ fill: "none",
3508
+ stroke: "currentColor",
3509
+ strokeWidth,
3510
+ strokeLinecap: "round",
3511
+ strokeLinejoin: "round",
3512
+ "aria-hidden": "true",
3513
+ ...rest,
3514
+ children: [
3515
+ /* @__PURE__ */ jsx70("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
3516
+ /* @__PURE__ */ jsx70("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
3517
+ ]
3518
+ }
3519
+ );
3520
+ }
3521
+
3522
+ // src/components/icons/file-text/index.tsx
3523
+ import { jsx as jsx71, jsxs as jsxs53 } from "react/jsx-runtime";
3524
+ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3525
+ return /* @__PURE__ */ jsxs53(
3526
+ "svg",
3527
+ {
3528
+ xmlns: "http://www.w3.org/2000/svg",
3529
+ width: size3,
3530
+ height: size3,
3531
+ viewBox: "0 0 24 24",
3532
+ fill: "none",
3533
+ stroke: "currentColor",
3534
+ strokeWidth,
3535
+ strokeLinecap: "round",
3536
+ strokeLinejoin: "round",
3537
+ "aria-hidden": "true",
3538
+ ...rest,
3539
+ children: [
3540
+ /* @__PURE__ */ jsx71("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
3541
+ /* @__PURE__ */ jsx71("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
3542
+ /* @__PURE__ */ jsx71("path", { d: "M16 13H8" }),
3543
+ /* @__PURE__ */ jsx71("path", { d: "M16 17H8" }),
3544
+ /* @__PURE__ */ jsx71("path", { d: "M10 9H8" })
3545
+ ]
3546
+ }
3547
+ );
3548
+ }
3549
+
3550
+ // src/components/icons/filter/index.tsx
3551
+ import { jsx as jsx72 } from "react/jsx-runtime";
3552
+ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3553
+ return /* @__PURE__ */ jsx72(
3554
+ "svg",
3555
+ {
3556
+ xmlns: "http://www.w3.org/2000/svg",
3557
+ width: size3,
3558
+ height: size3,
3559
+ viewBox: "0 0 24 24",
3560
+ fill: "none",
3561
+ stroke: "currentColor",
3562
+ strokeWidth,
3563
+ strokeLinecap: "round",
3564
+ strokeLinejoin: "round",
3565
+ "aria-hidden": "true",
3566
+ ...rest,
3567
+ children: /* @__PURE__ */ jsx72("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
3568
+ }
3569
+ );
3570
+ }
3571
+
3572
+ // src/components/icons/fingerprint/index.tsx
3573
+ import { jsx as jsx73, jsxs as jsxs54 } from "react/jsx-runtime";
3574
+ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3575
+ return /* @__PURE__ */ jsxs54(
3576
+ "svg",
3577
+ {
3578
+ xmlns: "http://www.w3.org/2000/svg",
3579
+ width: size3,
3580
+ height: size3,
3581
+ viewBox: "0 0 24 24",
3582
+ fill: "none",
3583
+ stroke: "currentColor",
3584
+ strokeWidth,
3585
+ strokeLinecap: "round",
3586
+ strokeLinejoin: "round",
3587
+ "aria-hidden": "true",
3588
+ ...rest,
3589
+ children: [
3590
+ /* @__PURE__ */ jsx73("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
3591
+ /* @__PURE__ */ jsx73("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
3592
+ /* @__PURE__ */ jsx73("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
3593
+ /* @__PURE__ */ jsx73("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
3594
+ /* @__PURE__ */ jsx73("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
3595
+ /* @__PURE__ */ jsx73("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
3596
+ /* @__PURE__ */ jsx73("path", { d: "M2 16h.01" }),
3597
+ /* @__PURE__ */ jsx73("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
3598
+ /* @__PURE__ */ jsx73("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
3599
+ ]
3600
+ }
3601
+ );
3602
+ }
3603
+
3604
+ // src/components/icons/folder/index.tsx
3605
+ import { jsx as jsx74 } from "react/jsx-runtime";
3606
+ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3607
+ return /* @__PURE__ */ jsx74(
3608
+ "svg",
3609
+ {
3610
+ xmlns: "http://www.w3.org/2000/svg",
3611
+ width: size3,
3612
+ height: size3,
3613
+ viewBox: "0 0 24 24",
3614
+ fill: "none",
3615
+ stroke: "currentColor",
3616
+ strokeWidth,
3617
+ strokeLinecap: "round",
3618
+ strokeLinejoin: "round",
3619
+ "aria-hidden": "true",
3620
+ ...rest,
3621
+ children: /* @__PURE__ */ jsx74("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
3622
+ }
3623
+ );
3624
+ }
3625
+
3626
+ // src/components/icons/folder-open/index.tsx
3627
+ import { jsx as jsx75 } from "react/jsx-runtime";
3628
+ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3629
+ return /* @__PURE__ */ jsx75(
3630
+ "svg",
3631
+ {
3632
+ xmlns: "http://www.w3.org/2000/svg",
3633
+ width: size3,
3634
+ height: size3,
3635
+ viewBox: "0 0 24 24",
3636
+ fill: "none",
3637
+ stroke: "currentColor",
3638
+ strokeWidth,
3639
+ strokeLinecap: "round",
3640
+ strokeLinejoin: "round",
3641
+ "aria-hidden": "true",
3642
+ ...rest,
3643
+ children: /* @__PURE__ */ jsx75("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
3644
+ }
3645
+ );
3646
+ }
3647
+
3648
+ // src/components/icons/gift/index.tsx
3649
+ import { jsx as jsx76, jsxs as jsxs55 } from "react/jsx-runtime";
3650
+ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3651
+ return /* @__PURE__ */ jsxs55(
3652
+ "svg",
3653
+ {
3654
+ xmlns: "http://www.w3.org/2000/svg",
3655
+ width: size3,
3656
+ height: size3,
3657
+ viewBox: "0 0 24 24",
3658
+ fill: "none",
3659
+ stroke: "currentColor",
3660
+ strokeWidth,
3661
+ strokeLinecap: "round",
3662
+ strokeLinejoin: "round",
3663
+ "aria-hidden": "true",
3664
+ ...rest,
3665
+ children: [
3666
+ /* @__PURE__ */ jsx76("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
3667
+ /* @__PURE__ */ jsx76("path", { d: "M12 8v13" }),
3668
+ /* @__PURE__ */ jsx76("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
3669
+ /* @__PURE__ */ jsx76("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
3670
+ ]
3671
+ }
3672
+ );
3673
+ }
3674
+
3675
+ // src/components/icons/globe/index.tsx
3676
+ import { jsx as jsx77, jsxs as jsxs56 } from "react/jsx-runtime";
3677
+ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3678
+ return /* @__PURE__ */ jsxs56(
3679
+ "svg",
3680
+ {
3681
+ xmlns: "http://www.w3.org/2000/svg",
3682
+ width: size3,
3683
+ height: size3,
3684
+ viewBox: "0 0 24 24",
3685
+ fill: "none",
3686
+ stroke: "currentColor",
3687
+ strokeWidth,
3688
+ strokeLinecap: "round",
3689
+ strokeLinejoin: "round",
3690
+ "aria-hidden": "true",
3691
+ ...rest,
3692
+ children: [
3693
+ /* @__PURE__ */ jsx77("circle", { cx: "12", cy: "12", r: "10" }),
3694
+ /* @__PURE__ */ jsx77("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
3695
+ /* @__PURE__ */ jsx77("path", { d: "M2 12h20" })
3696
+ ]
3697
+ }
3698
+ );
3699
+ }
3700
+
3701
+ // src/components/icons/grid/index.tsx
3702
+ import { jsx as jsx78, jsxs as jsxs57 } from "react/jsx-runtime";
3703
+ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3704
+ return /* @__PURE__ */ jsxs57(
3705
+ "svg",
3706
+ {
3707
+ xmlns: "http://www.w3.org/2000/svg",
3708
+ width: size3,
3709
+ height: size3,
3710
+ viewBox: "0 0 24 24",
3711
+ fill: "none",
3712
+ stroke: "currentColor",
3713
+ strokeWidth,
3714
+ strokeLinecap: "round",
3715
+ strokeLinejoin: "round",
3716
+ "aria-hidden": "true",
3717
+ ...rest,
3718
+ children: [
3719
+ /* @__PURE__ */ jsx78("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
3720
+ /* @__PURE__ */ jsx78("path", { d: "M3 9h18" }),
3721
+ /* @__PURE__ */ jsx78("path", { d: "M3 15h18" }),
3722
+ /* @__PURE__ */ jsx78("path", { d: "M9 3v18" }),
3723
+ /* @__PURE__ */ jsx78("path", { d: "M15 3v18" })
3724
+ ]
3725
+ }
3726
+ );
3727
+ }
3728
+
3729
+ // src/components/icons/heart/index.tsx
3730
+ import { jsx as jsx79 } from "react/jsx-runtime";
3731
+ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3732
+ return /* @__PURE__ */ jsx79(
3733
+ "svg",
3734
+ {
3735
+ xmlns: "http://www.w3.org/2000/svg",
3736
+ width: size3,
3737
+ height: size3,
3738
+ viewBox: "0 0 24 24",
3739
+ fill: "none",
3740
+ stroke: "currentColor",
3741
+ strokeWidth,
3742
+ strokeLinecap: "round",
3743
+ strokeLinejoin: "round",
3744
+ "aria-hidden": "true",
3745
+ ...rest,
3746
+ children: /* @__PURE__ */ jsx79("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
3747
+ }
3748
+ );
3749
+ }
3750
+
3751
+ // src/components/icons/help-circle/index.tsx
3752
+ import { jsx as jsx80, jsxs as jsxs58 } from "react/jsx-runtime";
3753
+ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3754
+ return /* @__PURE__ */ jsxs58(
3755
+ "svg",
3756
+ {
3757
+ xmlns: "http://www.w3.org/2000/svg",
3758
+ width: size3,
3759
+ height: size3,
3760
+ viewBox: "0 0 24 24",
3761
+ fill: "none",
3762
+ stroke: "currentColor",
3763
+ strokeWidth,
3764
+ strokeLinecap: "round",
3765
+ strokeLinejoin: "round",
3766
+ "aria-hidden": "true",
3767
+ ...rest,
3768
+ children: [
3769
+ /* @__PURE__ */ jsx80("circle", { cx: "12", cy: "12", r: "10" }),
3770
+ /* @__PURE__ */ jsx80("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
3771
+ /* @__PURE__ */ jsx80("path", { d: "M12 17h.01" })
3772
+ ]
3773
+ }
3774
+ );
3775
+ }
3776
+
3777
+ // src/components/icons/home/index.tsx
3778
+ import { jsx as jsx81, jsxs as jsxs59 } from "react/jsx-runtime";
3779
+ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3780
+ return /* @__PURE__ */ jsxs59(
3781
+ "svg",
3782
+ {
3783
+ xmlns: "http://www.w3.org/2000/svg",
3784
+ width: size3,
3785
+ height: size3,
3786
+ viewBox: "0 0 24 24",
3787
+ fill: "none",
3788
+ stroke: "currentColor",
3789
+ strokeWidth,
3790
+ strokeLinecap: "round",
3791
+ strokeLinejoin: "round",
3792
+ "aria-hidden": "true",
3793
+ ...rest,
3794
+ children: [
3795
+ /* @__PURE__ */ jsx81("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
3796
+ /* @__PURE__ */ jsx81("polyline", { points: "9 22 9 12 15 12 15 22" })
3797
+ ]
3798
+ }
3799
+ );
3800
+ }
3801
+
3802
+ // src/components/icons/image/index.tsx
3803
+ import { jsx as jsx82, jsxs as jsxs60 } from "react/jsx-runtime";
3804
+ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3805
+ return /* @__PURE__ */ jsxs60(
3806
+ "svg",
3807
+ {
3808
+ xmlns: "http://www.w3.org/2000/svg",
3809
+ width: size3,
3810
+ height: size3,
3811
+ viewBox: "0 0 24 24",
3812
+ fill: "none",
3813
+ stroke: "currentColor",
3814
+ strokeWidth,
3815
+ strokeLinecap: "round",
3816
+ strokeLinejoin: "round",
3817
+ "aria-hidden": "true",
3818
+ ...rest,
3819
+ children: [
3820
+ /* @__PURE__ */ jsx82("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
3821
+ /* @__PURE__ */ jsx82("circle", { cx: "9", cy: "9", r: "2" }),
3822
+ /* @__PURE__ */ jsx82("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
3823
+ ]
3824
+ }
3825
+ );
3826
+ }
3827
+
3828
+ // src/components/icons/inbox/index.tsx
3829
+ import { jsx as jsx83, jsxs as jsxs61 } from "react/jsx-runtime";
3830
+ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3831
+ return /* @__PURE__ */ jsxs61(
3832
+ "svg",
3833
+ {
3834
+ xmlns: "http://www.w3.org/2000/svg",
3835
+ width: size3,
3836
+ height: size3,
3837
+ viewBox: "0 0 24 24",
3838
+ fill: "none",
3839
+ stroke: "currentColor",
3840
+ strokeWidth,
3841
+ strokeLinecap: "round",
3842
+ strokeLinejoin: "round",
3843
+ "aria-hidden": "true",
3844
+ ...rest,
3845
+ children: [
3846
+ /* @__PURE__ */ jsx83("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
3847
+ /* @__PURE__ */ jsx83("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
3848
+ ]
3849
+ }
3850
+ );
3851
+ }
3852
+
3853
+ // src/components/icons/key/index.tsx
3854
+ import { jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
3855
+ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3856
+ return /* @__PURE__ */ jsxs62(
3857
+ "svg",
3858
+ {
3859
+ xmlns: "http://www.w3.org/2000/svg",
3860
+ width: size3,
3861
+ height: size3,
3862
+ viewBox: "0 0 24 24",
3863
+ fill: "none",
3864
+ stroke: "currentColor",
3865
+ strokeWidth,
3866
+ strokeLinecap: "round",
3867
+ strokeLinejoin: "round",
3868
+ "aria-hidden": "true",
3869
+ ...rest,
3870
+ children: [
3871
+ /* @__PURE__ */ jsx84("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
3872
+ /* @__PURE__ */ jsx84("path", { d: "m21 2-9.6 9.6" }),
3873
+ /* @__PURE__ */ jsx84("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
3874
+ ]
3875
+ }
3876
+ );
3877
+ }
3878
+
3879
+ // src/components/icons/layout/index.tsx
3880
+ import { jsx as jsx85, jsxs as jsxs63 } from "react/jsx-runtime";
3881
+ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3882
+ return /* @__PURE__ */ jsxs63(
3883
+ "svg",
3884
+ {
3885
+ xmlns: "http://www.w3.org/2000/svg",
3886
+ width: size3,
3887
+ height: size3,
3888
+ viewBox: "0 0 24 24",
3889
+ fill: "none",
3890
+ stroke: "currentColor",
3891
+ strokeWidth,
3892
+ strokeLinecap: "round",
3893
+ strokeLinejoin: "round",
3894
+ "aria-hidden": "true",
3895
+ ...rest,
3896
+ children: [
3897
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
3898
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
3899
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
3900
+ /* @__PURE__ */ jsx85("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
3901
+ ]
3902
+ }
3903
+ );
3904
+ }
3905
+
3906
+ // src/components/icons/link/index.tsx
3907
+ import { jsx as jsx86, jsxs as jsxs64 } from "react/jsx-runtime";
3908
+ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3909
+ return /* @__PURE__ */ jsxs64(
3910
+ "svg",
3911
+ {
3912
+ xmlns: "http://www.w3.org/2000/svg",
3913
+ width: size3,
3914
+ height: size3,
3915
+ viewBox: "0 0 24 24",
3916
+ fill: "none",
3917
+ stroke: "currentColor",
3918
+ strokeWidth,
3919
+ strokeLinecap: "round",
3920
+ strokeLinejoin: "round",
3921
+ "aria-hidden": "true",
3922
+ ...rest,
3923
+ children: [
3924
+ /* @__PURE__ */ jsx86("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
3925
+ /* @__PURE__ */ jsx86("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
3926
+ ]
3927
+ }
3928
+ );
3929
+ }
3930
+
3931
+ // src/components/icons/list/index.tsx
3932
+ import { jsx as jsx87, jsxs as jsxs65 } from "react/jsx-runtime";
3933
+ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3934
+ return /* @__PURE__ */ jsxs65(
3935
+ "svg",
3936
+ {
3937
+ xmlns: "http://www.w3.org/2000/svg",
3938
+ width: size3,
3939
+ height: size3,
3940
+ viewBox: "0 0 24 24",
3941
+ fill: "none",
3942
+ stroke: "currentColor",
3943
+ strokeWidth,
3944
+ strokeLinecap: "round",
3945
+ strokeLinejoin: "round",
3946
+ "aria-hidden": "true",
3947
+ ...rest,
3948
+ children: [
3949
+ /* @__PURE__ */ jsx87("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
3950
+ /* @__PURE__ */ jsx87("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
3951
+ /* @__PURE__ */ jsx87("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
3952
+ /* @__PURE__ */ jsx87("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
3953
+ /* @__PURE__ */ jsx87("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
3954
+ /* @__PURE__ */ jsx87("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
3955
+ ]
3956
+ }
3957
+ );
3958
+ }
3959
+
3960
+ // src/components/icons/loader/index.tsx
3961
+ import { jsx as jsx88, jsxs as jsxs66 } from "react/jsx-runtime";
3962
+ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3963
+ return /* @__PURE__ */ jsxs66(
3964
+ "svg",
3965
+ {
3966
+ xmlns: "http://www.w3.org/2000/svg",
3967
+ width: size3,
3968
+ height: size3,
3969
+ viewBox: "0 0 24 24",
3970
+ fill: "none",
3971
+ stroke: "currentColor",
3972
+ strokeWidth,
3973
+ strokeLinecap: "round",
3974
+ strokeLinejoin: "round",
3975
+ "aria-hidden": "true",
3976
+ ...rest,
3977
+ children: [
3978
+ /* @__PURE__ */ jsx88("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
3979
+ /* @__PURE__ */ jsx88("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
3980
+ /* @__PURE__ */ jsx88("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
3981
+ /* @__PURE__ */ jsx88("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
3982
+ /* @__PURE__ */ jsx88("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
3983
+ /* @__PURE__ */ jsx88("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
3984
+ /* @__PURE__ */ jsx88("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
3985
+ /* @__PURE__ */ jsx88("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
3986
+ ]
3987
+ }
3988
+ );
3989
+ }
3990
+
3991
+ // src/components/icons/lock/index.tsx
3992
+ import { jsx as jsx89, jsxs as jsxs67 } from "react/jsx-runtime";
3993
+ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
3994
+ return /* @__PURE__ */ jsxs67(
3995
+ "svg",
3996
+ {
3997
+ xmlns: "http://www.w3.org/2000/svg",
3998
+ width: size3,
3999
+ height: size3,
4000
+ viewBox: "0 0 24 24",
4001
+ fill: "none",
4002
+ stroke: "currentColor",
4003
+ strokeWidth,
4004
+ strokeLinecap: "round",
4005
+ strokeLinejoin: "round",
4006
+ "aria-hidden": "true",
4007
+ ...rest,
4008
+ children: [
4009
+ /* @__PURE__ */ jsx89("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
4010
+ /* @__PURE__ */ jsx89("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
4011
+ ]
4012
+ }
4013
+ );
4014
+ }
4015
+
4016
+ // src/components/icons/log-in/index.tsx
4017
+ import { jsx as jsx90, jsxs as jsxs68 } from "react/jsx-runtime";
4018
+ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4019
+ return /* @__PURE__ */ jsxs68(
4020
+ "svg",
4021
+ {
4022
+ xmlns: "http://www.w3.org/2000/svg",
4023
+ width: size3,
4024
+ height: size3,
4025
+ viewBox: "0 0 24 24",
4026
+ fill: "none",
4027
+ stroke: "currentColor",
4028
+ strokeWidth,
4029
+ strokeLinecap: "round",
4030
+ strokeLinejoin: "round",
4031
+ "aria-hidden": "true",
4032
+ ...rest,
4033
+ children: [
4034
+ /* @__PURE__ */ jsx90("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
4035
+ /* @__PURE__ */ jsx90("polyline", { points: "10 17 15 12 10 7" }),
4036
+ /* @__PURE__ */ jsx90("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
4037
+ ]
4038
+ }
4039
+ );
4040
+ }
4041
+
4042
+ // src/components/icons/log-out/index.tsx
4043
+ import { jsx as jsx91, jsxs as jsxs69 } from "react/jsx-runtime";
4044
+ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4045
+ return /* @__PURE__ */ jsxs69(
4046
+ "svg",
4047
+ {
4048
+ xmlns: "http://www.w3.org/2000/svg",
4049
+ width: size3,
4050
+ height: size3,
4051
+ viewBox: "0 0 24 24",
4052
+ fill: "none",
4053
+ stroke: "currentColor",
4054
+ strokeWidth,
4055
+ strokeLinecap: "round",
4056
+ strokeLinejoin: "round",
4057
+ "aria-hidden": "true",
4058
+ ...rest,
4059
+ children: [
4060
+ /* @__PURE__ */ jsx91("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
4061
+ /* @__PURE__ */ jsx91("polyline", { points: "16 17 21 12 16 7" }),
4062
+ /* @__PURE__ */ jsx91("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
4063
+ ]
4064
+ }
4065
+ );
4066
+ }
4067
+
4068
+ // src/components/icons/mail/index.tsx
4069
+ import { jsx as jsx92, jsxs as jsxs70 } from "react/jsx-runtime";
4070
+ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4071
+ return /* @__PURE__ */ jsxs70(
4072
+ "svg",
4073
+ {
4074
+ xmlns: "http://www.w3.org/2000/svg",
4075
+ width: size3,
4076
+ height: size3,
4077
+ viewBox: "0 0 24 24",
4078
+ fill: "none",
4079
+ stroke: "currentColor",
4080
+ strokeWidth,
4081
+ strokeLinecap: "round",
4082
+ strokeLinejoin: "round",
4083
+ "aria-hidden": "true",
4084
+ ...rest,
4085
+ children: [
4086
+ /* @__PURE__ */ jsx92("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
4087
+ /* @__PURE__ */ jsx92("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
4088
+ ]
4089
+ }
4090
+ );
4091
+ }
4092
+
4093
+ // src/components/icons/map-pin/index.tsx
4094
+ import { jsx as jsx93, jsxs as jsxs71 } from "react/jsx-runtime";
4095
+ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4096
+ return /* @__PURE__ */ jsxs71(
4097
+ "svg",
4098
+ {
4099
+ xmlns: "http://www.w3.org/2000/svg",
4100
+ width: size3,
4101
+ height: size3,
4102
+ viewBox: "0 0 24 24",
4103
+ fill: "none",
4104
+ stroke: "currentColor",
4105
+ strokeWidth,
4106
+ strokeLinecap: "round",
4107
+ strokeLinejoin: "round",
4108
+ "aria-hidden": "true",
4109
+ ...rest,
4110
+ children: [
4111
+ /* @__PURE__ */ jsx93("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
4112
+ /* @__PURE__ */ jsx93("circle", { cx: "12", cy: "10", r: "3" })
4113
+ ]
4114
+ }
4115
+ );
4116
+ }
4117
+
4118
+ // src/components/icons/maximize/index.tsx
4119
+ import { jsx as jsx94, jsxs as jsxs72 } from "react/jsx-runtime";
4120
+ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4121
+ return /* @__PURE__ */ jsxs72(
4122
+ "svg",
4123
+ {
4124
+ xmlns: "http://www.w3.org/2000/svg",
4125
+ width: size3,
4126
+ height: size3,
4127
+ viewBox: "0 0 24 24",
4128
+ fill: "none",
4129
+ stroke: "currentColor",
4130
+ strokeWidth,
4131
+ strokeLinecap: "round",
4132
+ strokeLinejoin: "round",
4133
+ "aria-hidden": "true",
4134
+ ...rest,
4135
+ children: [
4136
+ /* @__PURE__ */ jsx94("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
4137
+ /* @__PURE__ */ jsx94("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
4138
+ /* @__PURE__ */ jsx94("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
4139
+ /* @__PURE__ */ jsx94("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
4140
+ ]
4141
+ }
4142
+ );
4143
+ }
4144
+
4145
+ // src/components/icons/menu/index.tsx
4146
+ import { jsx as jsx95, jsxs as jsxs73 } from "react/jsx-runtime";
4147
+ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4148
+ return /* @__PURE__ */ jsxs73(
4149
+ "svg",
4150
+ {
4151
+ xmlns: "http://www.w3.org/2000/svg",
4152
+ width: size3,
4153
+ height: size3,
4154
+ viewBox: "0 0 24 24",
4155
+ fill: "none",
4156
+ stroke: "currentColor",
4157
+ strokeWidth,
4158
+ strokeLinecap: "round",
4159
+ strokeLinejoin: "round",
4160
+ "aria-hidden": "true",
4161
+ ...rest,
4162
+ children: [
4163
+ /* @__PURE__ */ jsx95("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
4164
+ /* @__PURE__ */ jsx95("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
4165
+ /* @__PURE__ */ jsx95("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
4166
+ ]
4167
+ }
4168
+ );
4169
+ }
4170
+
4171
+ // src/components/icons/message-circle/index.tsx
4172
+ import { jsx as jsx96 } from "react/jsx-runtime";
4173
+ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4174
+ return /* @__PURE__ */ jsx96(
4175
+ "svg",
4176
+ {
4177
+ xmlns: "http://www.w3.org/2000/svg",
4178
+ width: size3,
4179
+ height: size3,
4180
+ viewBox: "0 0 24 24",
4181
+ fill: "none",
4182
+ stroke: "currentColor",
4183
+ strokeWidth,
4184
+ strokeLinecap: "round",
4185
+ strokeLinejoin: "round",
4186
+ "aria-hidden": "true",
4187
+ ...rest,
4188
+ children: /* @__PURE__ */ jsx96("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
4189
+ }
4190
+ );
4191
+ }
4192
+
4193
+ // src/components/icons/message-square/index.tsx
4194
+ import { jsx as jsx97 } from "react/jsx-runtime";
4195
+ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4196
+ return /* @__PURE__ */ jsx97(
4197
+ "svg",
4198
+ {
4199
+ xmlns: "http://www.w3.org/2000/svg",
4200
+ width: size3,
4201
+ height: size3,
4202
+ viewBox: "0 0 24 24",
4203
+ fill: "none",
4204
+ stroke: "currentColor",
4205
+ strokeWidth,
4206
+ strokeLinecap: "round",
4207
+ strokeLinejoin: "round",
4208
+ "aria-hidden": "true",
4209
+ ...rest,
4210
+ children: /* @__PURE__ */ jsx97("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
4211
+ }
4212
+ );
4213
+ }
4214
+
4215
+ // src/components/icons/mic/index.tsx
4216
+ import { jsx as jsx98, jsxs as jsxs74 } from "react/jsx-runtime";
4217
+ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4218
+ return /* @__PURE__ */ jsxs74(
4219
+ "svg",
4220
+ {
4221
+ xmlns: "http://www.w3.org/2000/svg",
4222
+ width: size3,
4223
+ height: size3,
4224
+ viewBox: "0 0 24 24",
4225
+ fill: "none",
4226
+ stroke: "currentColor",
4227
+ strokeWidth,
4228
+ strokeLinecap: "round",
4229
+ strokeLinejoin: "round",
4230
+ "aria-hidden": "true",
4231
+ ...rest,
4232
+ children: [
4233
+ /* @__PURE__ */ jsx98("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
4234
+ /* @__PURE__ */ jsx98("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
4235
+ /* @__PURE__ */ jsx98("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
4236
+ ]
4237
+ }
4238
+ );
4239
+ }
4240
+
4241
+ // src/components/icons/minimize/index.tsx
4242
+ import { jsx as jsx99, jsxs as jsxs75 } from "react/jsx-runtime";
4243
+ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4244
+ return /* @__PURE__ */ jsxs75(
4245
+ "svg",
4246
+ {
4247
+ xmlns: "http://www.w3.org/2000/svg",
4248
+ width: size3,
4249
+ height: size3,
4250
+ viewBox: "0 0 24 24",
4251
+ fill: "none",
4252
+ stroke: "currentColor",
4253
+ strokeWidth,
4254
+ strokeLinecap: "round",
4255
+ strokeLinejoin: "round",
4256
+ "aria-hidden": "true",
4257
+ ...rest,
4258
+ children: [
4259
+ /* @__PURE__ */ jsx99("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
4260
+ /* @__PURE__ */ jsx99("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
4261
+ /* @__PURE__ */ jsx99("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
4262
+ /* @__PURE__ */ jsx99("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
4263
+ ]
4264
+ }
4265
+ );
4266
+ }
4267
+
4268
+ // src/components/icons/minus/index.tsx
4269
+ import { jsx as jsx100 } from "react/jsx-runtime";
4270
+ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4271
+ return /* @__PURE__ */ jsx100(
4272
+ "svg",
4273
+ {
4274
+ xmlns: "http://www.w3.org/2000/svg",
4275
+ width: size3,
4276
+ height: size3,
4277
+ viewBox: "0 0 24 24",
4278
+ fill: "none",
4279
+ stroke: "currentColor",
4280
+ strokeWidth,
4281
+ strokeLinecap: "round",
4282
+ strokeLinejoin: "round",
4283
+ "aria-hidden": "true",
4284
+ ...rest,
4285
+ children: /* @__PURE__ */ jsx100("path", { d: "M5 12h14" })
4286
+ }
4287
+ );
4288
+ }
4289
+
4290
+ // src/components/icons/moon/index.tsx
4291
+ import { jsx as jsx101 } from "react/jsx-runtime";
4292
+ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4293
+ return /* @__PURE__ */ jsx101(
4294
+ "svg",
4295
+ {
4296
+ xmlns: "http://www.w3.org/2000/svg",
4297
+ width: size3,
4298
+ height: size3,
4299
+ viewBox: "0 0 24 24",
4300
+ fill: "none",
4301
+ stroke: "currentColor",
4302
+ strokeWidth,
4303
+ strokeLinecap: "round",
4304
+ strokeLinejoin: "round",
4305
+ "aria-hidden": "true",
4306
+ ...rest,
4307
+ children: /* @__PURE__ */ jsx101("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
4308
+ }
4309
+ );
4310
+ }
4311
+
4312
+ // src/components/icons/more-horizontal/index.tsx
4313
+ import { jsx as jsx102, jsxs as jsxs76 } from "react/jsx-runtime";
4314
+ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4315
+ return /* @__PURE__ */ jsxs76(
4316
+ "svg",
4317
+ {
4318
+ xmlns: "http://www.w3.org/2000/svg",
4319
+ width: size3,
4320
+ height: size3,
4321
+ viewBox: "0 0 24 24",
4322
+ fill: "none",
4323
+ stroke: "currentColor",
4324
+ strokeWidth,
4325
+ strokeLinecap: "round",
4326
+ strokeLinejoin: "round",
4327
+ "aria-hidden": "true",
4328
+ ...rest,
4329
+ children: [
4330
+ /* @__PURE__ */ jsx102("circle", { cx: "12", cy: "12", r: "1" }),
4331
+ /* @__PURE__ */ jsx102("circle", { cx: "19", cy: "12", r: "1" }),
4332
+ /* @__PURE__ */ jsx102("circle", { cx: "5", cy: "12", r: "1" })
4333
+ ]
4334
+ }
4335
+ );
4336
+ }
4337
+
4338
+ // src/components/icons/more-vertical/index.tsx
4339
+ import { jsx as jsx103, jsxs as jsxs77 } from "react/jsx-runtime";
4340
+ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4341
+ return /* @__PURE__ */ jsxs77(
4342
+ "svg",
4343
+ {
4344
+ xmlns: "http://www.w3.org/2000/svg",
4345
+ width: size3,
4346
+ height: size3,
4347
+ viewBox: "0 0 24 24",
4348
+ fill: "none",
4349
+ stroke: "currentColor",
4350
+ strokeWidth,
4351
+ strokeLinecap: "round",
4352
+ strokeLinejoin: "round",
4353
+ "aria-hidden": "true",
4354
+ ...rest,
4355
+ children: [
4356
+ /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "12", r: "1" }),
4357
+ /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "5", r: "1" }),
4358
+ /* @__PURE__ */ jsx103("circle", { cx: "12", cy: "19", r: "1" })
4359
+ ]
4360
+ }
4361
+ );
4362
+ }
4363
+
4364
+ // src/components/icons/package/index.tsx
4365
+ import { jsx as jsx104, jsxs as jsxs78 } from "react/jsx-runtime";
4366
+ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4367
+ return /* @__PURE__ */ jsxs78(
4368
+ "svg",
4369
+ {
4370
+ xmlns: "http://www.w3.org/2000/svg",
4371
+ width: size3,
4372
+ height: size3,
4373
+ viewBox: "0 0 24 24",
4374
+ fill: "none",
4375
+ stroke: "currentColor",
4376
+ strokeWidth,
4377
+ strokeLinecap: "round",
4378
+ strokeLinejoin: "round",
4379
+ "aria-hidden": "true",
4380
+ ...rest,
4381
+ children: [
4382
+ /* @__PURE__ */ jsx104("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
4383
+ /* @__PURE__ */ jsx104("path", { d: "M3.3 7 12 12l8.7-5" }),
4384
+ /* @__PURE__ */ jsx104("path", { d: "M12 22V12" })
4385
+ ]
4386
+ }
4387
+ );
4388
+ }
4389
+
4390
+ // src/components/icons/paperclip/index.tsx
4391
+ import { jsx as jsx105 } from "react/jsx-runtime";
4392
+ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4393
+ return /* @__PURE__ */ jsx105(
4394
+ "svg",
4395
+ {
4396
+ xmlns: "http://www.w3.org/2000/svg",
4397
+ width: size3,
4398
+ height: size3,
4399
+ viewBox: "0 0 24 24",
4400
+ fill: "none",
4401
+ stroke: "currentColor",
4402
+ strokeWidth,
4403
+ strokeLinecap: "round",
4404
+ strokeLinejoin: "round",
4405
+ "aria-hidden": "true",
4406
+ ...rest,
4407
+ children: /* @__PURE__ */ jsx105("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
4408
+ }
4409
+ );
4410
+ }
4411
+
4412
+ // src/components/icons/pause/index.tsx
4413
+ import { jsx as jsx106, jsxs as jsxs79 } from "react/jsx-runtime";
4414
+ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4415
+ return /* @__PURE__ */ jsxs79(
4416
+ "svg",
4417
+ {
4418
+ xmlns: "http://www.w3.org/2000/svg",
4419
+ width: size3,
4420
+ height: size3,
4421
+ viewBox: "0 0 24 24",
4422
+ fill: "none",
4423
+ stroke: "currentColor",
4424
+ strokeWidth,
4425
+ strokeLinecap: "round",
4426
+ strokeLinejoin: "round",
4427
+ "aria-hidden": "true",
4428
+ ...rest,
4429
+ children: [
4430
+ /* @__PURE__ */ jsx106("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
4431
+ /* @__PURE__ */ jsx106("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
4432
+ ]
4433
+ }
4434
+ );
4435
+ }
4436
+
4437
+ // src/components/icons/pencil/index.tsx
4438
+ import { jsx as jsx107, jsxs as jsxs80 } from "react/jsx-runtime";
4439
+ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4440
+ return /* @__PURE__ */ jsxs80(
4441
+ "svg",
4442
+ {
4443
+ xmlns: "http://www.w3.org/2000/svg",
4444
+ width: size3,
4445
+ height: size3,
4446
+ viewBox: "0 0 24 24",
4447
+ fill: "none",
4448
+ stroke: "currentColor",
4449
+ strokeWidth,
4450
+ strokeLinecap: "round",
4451
+ strokeLinejoin: "round",
4452
+ "aria-hidden": "true",
4453
+ ...rest,
4454
+ children: [
4455
+ /* @__PURE__ */ jsx107("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
4456
+ /* @__PURE__ */ jsx107("path", { d: "m15 5 4 4" })
4457
+ ]
4458
+ }
4459
+ );
4460
+ }
4461
+
4462
+ // src/components/icons/phone/index.tsx
4463
+ import { jsx as jsx108 } from "react/jsx-runtime";
4464
+ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4465
+ return /* @__PURE__ */ jsx108(
4466
+ "svg",
4467
+ {
4468
+ xmlns: "http://www.w3.org/2000/svg",
4469
+ width: size3,
4470
+ height: size3,
4471
+ viewBox: "0 0 24 24",
4472
+ fill: "none",
4473
+ stroke: "currentColor",
4474
+ strokeWidth,
4475
+ strokeLinecap: "round",
4476
+ strokeLinejoin: "round",
4477
+ "aria-hidden": "true",
4478
+ ...rest,
4479
+ children: /* @__PURE__ */ jsx108("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
4480
+ }
4481
+ );
4482
+ }
4483
+
4484
+ // src/components/icons/play/index.tsx
4485
+ import { jsx as jsx109 } from "react/jsx-runtime";
4486
+ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4487
+ return /* @__PURE__ */ jsx109(
4488
+ "svg",
4489
+ {
4490
+ xmlns: "http://www.w3.org/2000/svg",
4491
+ width: size3,
4492
+ height: size3,
4493
+ viewBox: "0 0 24 24",
4494
+ fill: "none",
4495
+ stroke: "currentColor",
4496
+ strokeWidth,
4497
+ strokeLinecap: "round",
4498
+ strokeLinejoin: "round",
4499
+ "aria-hidden": "true",
4500
+ ...rest,
4501
+ children: /* @__PURE__ */ jsx109("polygon", { points: "6 3 20 12 6 21 6 3" })
4502
+ }
4503
+ );
4504
+ }
4505
+
4506
+ // src/components/icons/plus/index.tsx
4507
+ import { jsx as jsx110, jsxs as jsxs81 } from "react/jsx-runtime";
4508
+ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4509
+ return /* @__PURE__ */ jsxs81(
4510
+ "svg",
4511
+ {
4512
+ xmlns: "http://www.w3.org/2000/svg",
4513
+ width: size3,
4514
+ height: size3,
4515
+ viewBox: "0 0 24 24",
4516
+ fill: "none",
4517
+ stroke: "currentColor",
4518
+ strokeWidth,
4519
+ strokeLinecap: "round",
4520
+ strokeLinejoin: "round",
4521
+ "aria-hidden": "true",
4522
+ ...rest,
4523
+ children: [
4524
+ /* @__PURE__ */ jsx110("path", { d: "M5 12h14" }),
4525
+ /* @__PURE__ */ jsx110("path", { d: "M12 5v14" })
4526
+ ]
4527
+ }
4528
+ );
4529
+ }
4530
+
4531
+ // src/components/icons/printer/index.tsx
4532
+ import { jsx as jsx111, jsxs as jsxs82 } from "react/jsx-runtime";
4533
+ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4534
+ return /* @__PURE__ */ jsxs82(
4535
+ "svg",
4536
+ {
4537
+ xmlns: "http://www.w3.org/2000/svg",
4538
+ width: size3,
4539
+ height: size3,
4540
+ viewBox: "0 0 24 24",
4541
+ fill: "none",
4542
+ stroke: "currentColor",
4543
+ strokeWidth,
4544
+ strokeLinecap: "round",
4545
+ strokeLinejoin: "round",
4546
+ "aria-hidden": "true",
4547
+ ...rest,
4548
+ children: [
4549
+ /* @__PURE__ */ jsx111("polyline", { points: "6 9 6 2 18 2 18 9" }),
4550
+ /* @__PURE__ */ jsx111("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
4551
+ /* @__PURE__ */ jsx111("rect", { width: "12", height: "8", x: "6", y: "14" })
4552
+ ]
4553
+ }
4554
+ );
4555
+ }
4556
+
4557
+ // src/components/icons/redo/index.tsx
4558
+ import { jsx as jsx112, jsxs as jsxs83 } from "react/jsx-runtime";
4559
+ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4560
+ return /* @__PURE__ */ jsxs83(
4561
+ "svg",
4562
+ {
4563
+ xmlns: "http://www.w3.org/2000/svg",
4564
+ width: size3,
4565
+ height: size3,
4566
+ viewBox: "0 0 24 24",
4567
+ fill: "none",
4568
+ stroke: "currentColor",
4569
+ strokeWidth,
4570
+ strokeLinecap: "round",
4571
+ strokeLinejoin: "round",
4572
+ "aria-hidden": "true",
4573
+ ...rest,
4574
+ children: [
4575
+ /* @__PURE__ */ jsx112("path", { d: "M21 7v6h-6" }),
4576
+ /* @__PURE__ */ jsx112("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
4577
+ ]
4578
+ }
4579
+ );
4580
+ }
4581
+
4582
+ // src/components/icons/refresh-cw/index.tsx
4583
+ import { jsx as jsx113, jsxs as jsxs84 } from "react/jsx-runtime";
4584
+ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4585
+ return /* @__PURE__ */ jsxs84(
4586
+ "svg",
4587
+ {
4588
+ xmlns: "http://www.w3.org/2000/svg",
4589
+ width: size3,
4590
+ height: size3,
4591
+ viewBox: "0 0 24 24",
4592
+ fill: "none",
4593
+ stroke: "currentColor",
4594
+ strokeWidth,
4595
+ strokeLinecap: "round",
4596
+ strokeLinejoin: "round",
4597
+ "aria-hidden": "true",
4598
+ ...rest,
4599
+ children: [
4600
+ /* @__PURE__ */ jsx113("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
4601
+ /* @__PURE__ */ jsx113("path", { d: "M21 3v5h-5" }),
4602
+ /* @__PURE__ */ jsx113("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
4603
+ /* @__PURE__ */ jsx113("path", { d: "M3 21v-5h5" })
4604
+ ]
4605
+ }
4606
+ );
4607
+ }
4608
+
4609
+ // src/components/icons/save/index.tsx
4610
+ import { jsx as jsx114, jsxs as jsxs85 } from "react/jsx-runtime";
4611
+ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4612
+ return /* @__PURE__ */ jsxs85(
4613
+ "svg",
4614
+ {
4615
+ xmlns: "http://www.w3.org/2000/svg",
4616
+ width: size3,
4617
+ height: size3,
4618
+ viewBox: "0 0 24 24",
4619
+ fill: "none",
4620
+ stroke: "currentColor",
4621
+ strokeWidth,
4622
+ strokeLinecap: "round",
4623
+ strokeLinejoin: "round",
4624
+ "aria-hidden": "true",
4625
+ ...rest,
4626
+ children: [
4627
+ /* @__PURE__ */ jsx114("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
4628
+ /* @__PURE__ */ jsx114("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
4629
+ /* @__PURE__ */ jsx114("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
4630
+ ]
4631
+ }
4632
+ );
4633
+ }
4634
+
4635
+ // src/components/icons/search/index.tsx
4636
+ import { jsx as jsx115, jsxs as jsxs86 } from "react/jsx-runtime";
4637
+ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4638
+ return /* @__PURE__ */ jsxs86(
4639
+ "svg",
4640
+ {
4641
+ xmlns: "http://www.w3.org/2000/svg",
4642
+ width: size3,
4643
+ height: size3,
4644
+ viewBox: "0 0 24 24",
4645
+ fill: "none",
4646
+ stroke: "currentColor",
4647
+ strokeWidth,
4648
+ strokeLinecap: "round",
4649
+ strokeLinejoin: "round",
4650
+ "aria-hidden": "true",
4651
+ ...rest,
4652
+ children: [
4653
+ /* @__PURE__ */ jsx115("circle", { cx: "11", cy: "11", r: "8" }),
4654
+ /* @__PURE__ */ jsx115("path", { d: "m21 21-4.3-4.3" })
4655
+ ]
4656
+ }
4657
+ );
4658
+ }
4659
+
4660
+ // src/components/icons/send/index.tsx
4661
+ import { jsx as jsx116, jsxs as jsxs87 } from "react/jsx-runtime";
4662
+ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4663
+ return /* @__PURE__ */ jsxs87(
4664
+ "svg",
4665
+ {
4666
+ xmlns: "http://www.w3.org/2000/svg",
4667
+ width: size3,
4668
+ height: size3,
4669
+ viewBox: "0 0 24 24",
4670
+ fill: "none",
4671
+ stroke: "currentColor",
4672
+ strokeWidth,
4673
+ strokeLinecap: "round",
4674
+ strokeLinejoin: "round",
4675
+ "aria-hidden": "true",
4676
+ ...rest,
4677
+ children: [
4678
+ /* @__PURE__ */ jsx116("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
4679
+ /* @__PURE__ */ jsx116("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
4680
+ ]
4681
+ }
4682
+ );
4683
+ }
4684
+
4685
+ // src/components/icons/settings/index.tsx
4686
+ import { jsx as jsx117, jsxs as jsxs88 } from "react/jsx-runtime";
4687
+ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4688
+ return /* @__PURE__ */ jsxs88(
4689
+ "svg",
4690
+ {
4691
+ xmlns: "http://www.w3.org/2000/svg",
4692
+ width: size3,
4693
+ height: size3,
4694
+ viewBox: "0 0 24 24",
4695
+ fill: "none",
4696
+ stroke: "currentColor",
4697
+ strokeWidth,
4698
+ strokeLinecap: "round",
4699
+ strokeLinejoin: "round",
4700
+ "aria-hidden": "true",
4701
+ ...rest,
4702
+ children: [
4703
+ /* @__PURE__ */ jsx117("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
4704
+ /* @__PURE__ */ jsx117("circle", { cx: "12", cy: "12", r: "3" })
4705
+ ]
4706
+ }
4707
+ );
4708
+ }
4709
+
4710
+ // src/components/icons/share/index.tsx
4711
+ import { jsx as jsx118, jsxs as jsxs89 } from "react/jsx-runtime";
4712
+ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4713
+ return /* @__PURE__ */ jsxs89(
4714
+ "svg",
4715
+ {
4716
+ xmlns: "http://www.w3.org/2000/svg",
4717
+ width: size3,
4718
+ height: size3,
4719
+ viewBox: "0 0 24 24",
4720
+ fill: "none",
4721
+ stroke: "currentColor",
4722
+ strokeWidth,
4723
+ strokeLinecap: "round",
4724
+ strokeLinejoin: "round",
4725
+ "aria-hidden": "true",
4726
+ ...rest,
4727
+ children: [
4728
+ /* @__PURE__ */ jsx118("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
4729
+ /* @__PURE__ */ jsx118("polyline", { points: "16 6 12 2 8 6" }),
4730
+ /* @__PURE__ */ jsx118("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
4731
+ ]
4732
+ }
4733
+ );
4734
+ }
4735
+
4736
+ // src/components/icons/shield/index.tsx
4737
+ import { jsx as jsx119 } from "react/jsx-runtime";
4738
+ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4739
+ return /* @__PURE__ */ jsx119(
4740
+ "svg",
4741
+ {
4742
+ xmlns: "http://www.w3.org/2000/svg",
4743
+ width: size3,
4744
+ height: size3,
4745
+ viewBox: "0 0 24 24",
4746
+ fill: "none",
4747
+ stroke: "currentColor",
4748
+ strokeWidth,
4749
+ strokeLinecap: "round",
4750
+ strokeLinejoin: "round",
4751
+ "aria-hidden": "true",
4752
+ ...rest,
4753
+ children: /* @__PURE__ */ jsx119("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
4754
+ }
4755
+ );
4756
+ }
4757
+
4758
+ // src/components/icons/shield-check/index.tsx
4759
+ import { jsx as jsx120, jsxs as jsxs90 } from "react/jsx-runtime";
4760
+ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4761
+ return /* @__PURE__ */ jsxs90(
4762
+ "svg",
4763
+ {
4764
+ xmlns: "http://www.w3.org/2000/svg",
4765
+ width: size3,
4766
+ height: size3,
4767
+ viewBox: "0 0 24 24",
4768
+ fill: "none",
4769
+ stroke: "currentColor",
4770
+ strokeWidth,
4771
+ strokeLinecap: "round",
4772
+ strokeLinejoin: "round",
4773
+ "aria-hidden": "true",
4774
+ ...rest,
4775
+ children: [
4776
+ /* @__PURE__ */ jsx120("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
4777
+ /* @__PURE__ */ jsx120("path", { d: "m9 12 2 2 4-4" })
4778
+ ]
4779
+ }
4780
+ );
4781
+ }
4782
+
4783
+ // src/components/icons/shopping-bag/index.tsx
4784
+ import { jsx as jsx121, jsxs as jsxs91 } from "react/jsx-runtime";
4785
+ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4786
+ return /* @__PURE__ */ jsxs91(
4787
+ "svg",
4788
+ {
4789
+ xmlns: "http://www.w3.org/2000/svg",
4790
+ width: size3,
4791
+ height: size3,
4792
+ viewBox: "0 0 24 24",
4793
+ fill: "none",
4794
+ stroke: "currentColor",
4795
+ strokeWidth,
4796
+ strokeLinecap: "round",
4797
+ strokeLinejoin: "round",
4798
+ "aria-hidden": "true",
4799
+ ...rest,
4800
+ children: [
4801
+ /* @__PURE__ */ jsx121("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
4802
+ /* @__PURE__ */ jsx121("path", { d: "M3 6h18" }),
4803
+ /* @__PURE__ */ jsx121("path", { d: "M16 10a4 4 0 0 1-8 0" })
4804
+ ]
4805
+ }
4806
+ );
4807
+ }
4808
+
4809
+ // src/components/icons/shopping-cart/index.tsx
4810
+ import { jsx as jsx122, jsxs as jsxs92 } from "react/jsx-runtime";
4811
+ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4812
+ return /* @__PURE__ */ jsxs92(
4813
+ "svg",
4814
+ {
4815
+ xmlns: "http://www.w3.org/2000/svg",
4816
+ width: size3,
4817
+ height: size3,
4818
+ viewBox: "0 0 24 24",
4819
+ fill: "none",
4820
+ stroke: "currentColor",
4821
+ strokeWidth,
4822
+ strokeLinecap: "round",
4823
+ strokeLinejoin: "round",
4824
+ "aria-hidden": "true",
4825
+ ...rest,
4826
+ children: [
4827
+ /* @__PURE__ */ jsx122("circle", { cx: "8", cy: "21", r: "1" }),
4828
+ /* @__PURE__ */ jsx122("circle", { cx: "19", cy: "21", r: "1" }),
4829
+ /* @__PURE__ */ jsx122("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
4830
+ ]
4831
+ }
4832
+ );
4833
+ }
4834
+
4835
+ // src/components/icons/sidebar/index.tsx
4836
+ import { jsx as jsx123, jsxs as jsxs93 } from "react/jsx-runtime";
4837
+ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4838
+ return /* @__PURE__ */ jsxs93(
4839
+ "svg",
4840
+ {
4841
+ xmlns: "http://www.w3.org/2000/svg",
4842
+ width: size3,
4843
+ height: size3,
4844
+ viewBox: "0 0 24 24",
4845
+ fill: "none",
4846
+ stroke: "currentColor",
4847
+ strokeWidth,
4848
+ strokeLinecap: "round",
4849
+ strokeLinejoin: "round",
4850
+ "aria-hidden": "true",
4851
+ ...rest,
4852
+ children: [
4853
+ /* @__PURE__ */ jsx123("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
4854
+ /* @__PURE__ */ jsx123("path", { d: "M9 3v18" })
4855
+ ]
4856
+ }
4857
+ );
4858
+ }
4859
+
4860
+ // src/components/icons/skip-back/index.tsx
4861
+ import { jsx as jsx124, jsxs as jsxs94 } from "react/jsx-runtime";
4862
+ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4863
+ return /* @__PURE__ */ jsxs94(
4864
+ "svg",
4865
+ {
4866
+ xmlns: "http://www.w3.org/2000/svg",
4867
+ width: size3,
4868
+ height: size3,
4869
+ viewBox: "0 0 24 24",
4870
+ fill: "none",
4871
+ stroke: "currentColor",
4872
+ strokeWidth,
4873
+ strokeLinecap: "round",
4874
+ strokeLinejoin: "round",
4875
+ "aria-hidden": "true",
4876
+ ...rest,
4877
+ children: [
4878
+ /* @__PURE__ */ jsx124("polygon", { points: "19 20 9 12 19 4 19 20" }),
4879
+ /* @__PURE__ */ jsx124("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
4880
+ ]
4881
+ }
4882
+ );
4883
+ }
4884
+
4885
+ // src/components/icons/skip-forward/index.tsx
4886
+ import { jsx as jsx125, jsxs as jsxs95 } from "react/jsx-runtime";
4887
+ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4888
+ return /* @__PURE__ */ jsxs95(
4889
+ "svg",
4890
+ {
4891
+ xmlns: "http://www.w3.org/2000/svg",
4892
+ width: size3,
4893
+ height: size3,
4894
+ viewBox: "0 0 24 24",
4895
+ fill: "none",
4896
+ stroke: "currentColor",
4897
+ strokeWidth,
4898
+ strokeLinecap: "round",
4899
+ strokeLinejoin: "round",
4900
+ "aria-hidden": "true",
4901
+ ...rest,
4902
+ children: [
4903
+ /* @__PURE__ */ jsx125("polygon", { points: "5 4 15 12 5 20 5 4" }),
4904
+ /* @__PURE__ */ jsx125("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
4905
+ ]
4906
+ }
4907
+ );
4908
+ }
4909
+
4910
+ // src/components/icons/sliders/index.tsx
4911
+ import { jsx as jsx126, jsxs as jsxs96 } from "react/jsx-runtime";
4912
+ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4913
+ return /* @__PURE__ */ jsxs96(
4914
+ "svg",
4915
+ {
4916
+ xmlns: "http://www.w3.org/2000/svg",
4917
+ width: size3,
4918
+ height: size3,
4919
+ viewBox: "0 0 24 24",
4920
+ fill: "none",
4921
+ stroke: "currentColor",
4922
+ strokeWidth,
4923
+ strokeLinecap: "round",
4924
+ strokeLinejoin: "round",
4925
+ "aria-hidden": "true",
4926
+ ...rest,
4927
+ children: [
4928
+ /* @__PURE__ */ jsx126("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
4929
+ /* @__PURE__ */ jsx126("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
4930
+ /* @__PURE__ */ jsx126("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
4931
+ /* @__PURE__ */ jsx126("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
4932
+ /* @__PURE__ */ jsx126("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
4933
+ /* @__PURE__ */ jsx126("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
4934
+ /* @__PURE__ */ jsx126("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
4935
+ /* @__PURE__ */ jsx126("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
4936
+ /* @__PURE__ */ jsx126("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
4937
+ ]
4938
+ }
4939
+ );
4940
+ }
4941
+
4942
+ // src/components/icons/smile/index.tsx
4943
+ import { jsx as jsx127, jsxs as jsxs97 } from "react/jsx-runtime";
4944
+ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4945
+ return /* @__PURE__ */ jsxs97(
4946
+ "svg",
4947
+ {
4948
+ xmlns: "http://www.w3.org/2000/svg",
4949
+ width: size3,
4950
+ height: size3,
4951
+ viewBox: "0 0 24 24",
4952
+ fill: "none",
4953
+ stroke: "currentColor",
4954
+ strokeWidth,
4955
+ strokeLinecap: "round",
4956
+ strokeLinejoin: "round",
4957
+ "aria-hidden": "true",
4958
+ ...rest,
4959
+ children: [
4960
+ /* @__PURE__ */ jsx127("circle", { cx: "12", cy: "12", r: "10" }),
4961
+ /* @__PURE__ */ jsx127("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
4962
+ /* @__PURE__ */ jsx127("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
4963
+ /* @__PURE__ */ jsx127("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
4964
+ ]
4965
+ }
4966
+ );
4967
+ }
4968
+
4969
+ // src/components/icons/star/index.tsx
4970
+ import { jsx as jsx128 } from "react/jsx-runtime";
4971
+ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4972
+ return /* @__PURE__ */ jsx128(
4973
+ "svg",
4974
+ {
4975
+ xmlns: "http://www.w3.org/2000/svg",
4976
+ width: size3,
4977
+ height: size3,
4978
+ viewBox: "0 0 24 24",
4979
+ fill: "none",
4980
+ stroke: "currentColor",
4981
+ strokeWidth,
4982
+ strokeLinecap: "round",
4983
+ strokeLinejoin: "round",
4984
+ "aria-hidden": "true",
4985
+ ...rest,
4986
+ children: /* @__PURE__ */ jsx128("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
4987
+ }
4988
+ );
4989
+ }
4990
+
4991
+ // src/components/icons/sun/index.tsx
4992
+ import { jsx as jsx129, jsxs as jsxs98 } from "react/jsx-runtime";
4993
+ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
4994
+ return /* @__PURE__ */ jsxs98(
4995
+ "svg",
4996
+ {
4997
+ xmlns: "http://www.w3.org/2000/svg",
4998
+ width: size3,
4999
+ height: size3,
5000
+ viewBox: "0 0 24 24",
5001
+ fill: "none",
5002
+ stroke: "currentColor",
5003
+ strokeWidth,
5004
+ strokeLinecap: "round",
5005
+ strokeLinejoin: "round",
5006
+ "aria-hidden": "true",
5007
+ ...rest,
5008
+ children: [
5009
+ /* @__PURE__ */ jsx129("circle", { cx: "12", cy: "12", r: "4" }),
5010
+ /* @__PURE__ */ jsx129("path", { d: "M12 2v2" }),
5011
+ /* @__PURE__ */ jsx129("path", { d: "M12 20v2" }),
5012
+ /* @__PURE__ */ jsx129("path", { d: "m4.93 4.93 1.41 1.41" }),
5013
+ /* @__PURE__ */ jsx129("path", { d: "m17.66 17.66 1.41 1.41" }),
5014
+ /* @__PURE__ */ jsx129("path", { d: "M2 12h2" }),
5015
+ /* @__PURE__ */ jsx129("path", { d: "M20 12h2" }),
5016
+ /* @__PURE__ */ jsx129("path", { d: "m6.34 17.66-1.41 1.41" }),
5017
+ /* @__PURE__ */ jsx129("path", { d: "m19.07 4.93-1.41 1.41" })
5018
+ ]
5019
+ }
5020
+ );
5021
+ }
5022
+
5023
+ // src/components/icons/tag/index.tsx
5024
+ import { jsx as jsx130, jsxs as jsxs99 } from "react/jsx-runtime";
5025
+ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5026
+ return /* @__PURE__ */ jsxs99(
5027
+ "svg",
5028
+ {
5029
+ xmlns: "http://www.w3.org/2000/svg",
5030
+ width: size3,
5031
+ height: size3,
5032
+ viewBox: "0 0 24 24",
5033
+ fill: "none",
5034
+ stroke: "currentColor",
5035
+ strokeWidth,
5036
+ strokeLinecap: "round",
5037
+ strokeLinejoin: "round",
5038
+ "aria-hidden": "true",
5039
+ ...rest,
5040
+ children: [
5041
+ /* @__PURE__ */ jsx130("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
5042
+ /* @__PURE__ */ jsx130("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
5043
+ ]
5044
+ }
5045
+ );
5046
+ }
5047
+
5048
+ // src/components/icons/thumbs-down/index.tsx
5049
+ import { jsx as jsx131, jsxs as jsxs100 } from "react/jsx-runtime";
5050
+ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5051
+ return /* @__PURE__ */ jsxs100(
5052
+ "svg",
5053
+ {
5054
+ xmlns: "http://www.w3.org/2000/svg",
5055
+ width: size3,
5056
+ height: size3,
5057
+ viewBox: "0 0 24 24",
5058
+ fill: "none",
5059
+ stroke: "currentColor",
5060
+ strokeWidth,
5061
+ strokeLinecap: "round",
5062
+ strokeLinejoin: "round",
5063
+ "aria-hidden": "true",
5064
+ ...rest,
5065
+ children: [
5066
+ /* @__PURE__ */ jsx131("path", { d: "M17 14V2" }),
5067
+ /* @__PURE__ */ jsx131("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
5068
+ ]
5069
+ }
5070
+ );
5071
+ }
5072
+
5073
+ // src/components/icons/thumbs-up/index.tsx
5074
+ import { jsx as jsx132, jsxs as jsxs101 } from "react/jsx-runtime";
5075
+ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5076
+ return /* @__PURE__ */ jsxs101(
5077
+ "svg",
5078
+ {
5079
+ xmlns: "http://www.w3.org/2000/svg",
5080
+ width: size3,
5081
+ height: size3,
5082
+ viewBox: "0 0 24 24",
5083
+ fill: "none",
5084
+ stroke: "currentColor",
5085
+ strokeWidth,
5086
+ strokeLinecap: "round",
5087
+ strokeLinejoin: "round",
5088
+ "aria-hidden": "true",
5089
+ ...rest,
5090
+ children: [
5091
+ /* @__PURE__ */ jsx132("path", { d: "M7 10v12" }),
5092
+ /* @__PURE__ */ jsx132("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
5093
+ ]
5094
+ }
5095
+ );
5096
+ }
5097
+
5098
+ // src/components/icons/trash/index.tsx
5099
+ import { jsx as jsx133, jsxs as jsxs102 } from "react/jsx-runtime";
5100
+ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5101
+ return /* @__PURE__ */ jsxs102(
5102
+ "svg",
5103
+ {
5104
+ xmlns: "http://www.w3.org/2000/svg",
5105
+ width: size3,
5106
+ height: size3,
5107
+ viewBox: "0 0 24 24",
5108
+ fill: "none",
5109
+ stroke: "currentColor",
5110
+ strokeWidth,
5111
+ strokeLinecap: "round",
5112
+ strokeLinejoin: "round",
5113
+ "aria-hidden": "true",
5114
+ ...rest,
5115
+ children: [
5116
+ /* @__PURE__ */ jsx133("path", { d: "M3 6h18" }),
5117
+ /* @__PURE__ */ jsx133("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
5118
+ /* @__PURE__ */ jsx133("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
5119
+ ]
5120
+ }
5121
+ );
5122
+ }
5123
+
5124
+ // src/components/icons/undo/index.tsx
5125
+ import { jsx as jsx134, jsxs as jsxs103 } from "react/jsx-runtime";
5126
+ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5127
+ return /* @__PURE__ */ jsxs103(
5128
+ "svg",
5129
+ {
5130
+ xmlns: "http://www.w3.org/2000/svg",
5131
+ width: size3,
5132
+ height: size3,
5133
+ viewBox: "0 0 24 24",
5134
+ fill: "none",
5135
+ stroke: "currentColor",
5136
+ strokeWidth,
5137
+ strokeLinecap: "round",
5138
+ strokeLinejoin: "round",
5139
+ "aria-hidden": "true",
5140
+ ...rest,
5141
+ children: [
5142
+ /* @__PURE__ */ jsx134("path", { d: "M3 7v6h6" }),
5143
+ /* @__PURE__ */ jsx134("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
5144
+ ]
5145
+ }
5146
+ );
5147
+ }
5148
+
5149
+ // src/components/icons/unlock/index.tsx
5150
+ import { jsx as jsx135, jsxs as jsxs104 } from "react/jsx-runtime";
5151
+ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5152
+ return /* @__PURE__ */ jsxs104(
5153
+ "svg",
5154
+ {
5155
+ xmlns: "http://www.w3.org/2000/svg",
5156
+ width: size3,
5157
+ height: size3,
5158
+ viewBox: "0 0 24 24",
5159
+ fill: "none",
5160
+ stroke: "currentColor",
5161
+ strokeWidth,
5162
+ strokeLinecap: "round",
5163
+ strokeLinejoin: "round",
5164
+ "aria-hidden": "true",
5165
+ ...rest,
5166
+ children: [
5167
+ /* @__PURE__ */ jsx135("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
5168
+ /* @__PURE__ */ jsx135("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
5169
+ ]
5170
+ }
5171
+ );
5172
+ }
5173
+
5174
+ // src/components/icons/upload/index.tsx
5175
+ import { jsx as jsx136, jsxs as jsxs105 } from "react/jsx-runtime";
5176
+ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5177
+ return /* @__PURE__ */ jsxs105(
5178
+ "svg",
5179
+ {
5180
+ xmlns: "http://www.w3.org/2000/svg",
5181
+ width: size3,
5182
+ height: size3,
5183
+ viewBox: "0 0 24 24",
5184
+ fill: "none",
5185
+ stroke: "currentColor",
5186
+ strokeWidth,
5187
+ strokeLinecap: "round",
5188
+ strokeLinejoin: "round",
5189
+ "aria-hidden": "true",
5190
+ ...rest,
5191
+ children: [
5192
+ /* @__PURE__ */ jsx136("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
5193
+ /* @__PURE__ */ jsx136("polyline", { points: "17 8 12 3 7 8" }),
5194
+ /* @__PURE__ */ jsx136("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
5195
+ ]
5196
+ }
5197
+ );
5198
+ }
5199
+
5200
+ // src/components/icons/user/index.tsx
5201
+ import { jsx as jsx137, jsxs as jsxs106 } from "react/jsx-runtime";
5202
+ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5203
+ return /* @__PURE__ */ jsxs106(
5204
+ "svg",
5205
+ {
5206
+ xmlns: "http://www.w3.org/2000/svg",
5207
+ width: size3,
5208
+ height: size3,
5209
+ viewBox: "0 0 24 24",
5210
+ fill: "none",
5211
+ stroke: "currentColor",
5212
+ strokeWidth,
5213
+ strokeLinecap: "round",
5214
+ strokeLinejoin: "round",
5215
+ "aria-hidden": "true",
5216
+ ...rest,
5217
+ children: [
5218
+ /* @__PURE__ */ jsx137("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
5219
+ /* @__PURE__ */ jsx137("circle", { cx: "12", cy: "7", r: "4" })
5220
+ ]
5221
+ }
5222
+ );
5223
+ }
5224
+
5225
+ // src/components/icons/user-check/index.tsx
5226
+ import { jsx as jsx138, jsxs as jsxs107 } from "react/jsx-runtime";
5227
+ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5228
+ return /* @__PURE__ */ jsxs107(
5229
+ "svg",
5230
+ {
5231
+ xmlns: "http://www.w3.org/2000/svg",
5232
+ width: size3,
5233
+ height: size3,
5234
+ viewBox: "0 0 24 24",
5235
+ fill: "none",
5236
+ stroke: "currentColor",
5237
+ strokeWidth,
5238
+ strokeLinecap: "round",
5239
+ strokeLinejoin: "round",
5240
+ "aria-hidden": "true",
5241
+ ...rest,
5242
+ children: [
5243
+ /* @__PURE__ */ jsx138("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5244
+ /* @__PURE__ */ jsx138("circle", { cx: "9", cy: "7", r: "4" }),
5245
+ /* @__PURE__ */ jsx138("polyline", { points: "16 11 18 13 22 9" })
5246
+ ]
5247
+ }
5248
+ );
5249
+ }
5250
+
5251
+ // src/components/icons/user-plus/index.tsx
5252
+ import { jsx as jsx139, jsxs as jsxs108 } from "react/jsx-runtime";
5253
+ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5254
+ return /* @__PURE__ */ jsxs108(
5255
+ "svg",
5256
+ {
5257
+ xmlns: "http://www.w3.org/2000/svg",
5258
+ width: size3,
5259
+ height: size3,
5260
+ viewBox: "0 0 24 24",
5261
+ fill: "none",
5262
+ stroke: "currentColor",
5263
+ strokeWidth,
5264
+ strokeLinecap: "round",
5265
+ strokeLinejoin: "round",
5266
+ "aria-hidden": "true",
5267
+ ...rest,
5268
+ children: [
5269
+ /* @__PURE__ */ jsx139("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5270
+ /* @__PURE__ */ jsx139("circle", { cx: "9", cy: "7", r: "4" }),
5271
+ /* @__PURE__ */ jsx139("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
5272
+ /* @__PURE__ */ jsx139("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
5273
+ ]
5274
+ }
5275
+ );
5276
+ }
5277
+
5278
+ // src/components/icons/users/index.tsx
5279
+ import { jsx as jsx140, jsxs as jsxs109 } from "react/jsx-runtime";
5280
+ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5281
+ return /* @__PURE__ */ jsxs109(
5282
+ "svg",
5283
+ {
5284
+ xmlns: "http://www.w3.org/2000/svg",
5285
+ width: size3,
5286
+ height: size3,
5287
+ viewBox: "0 0 24 24",
5288
+ fill: "none",
5289
+ stroke: "currentColor",
5290
+ strokeWidth,
5291
+ strokeLinecap: "round",
5292
+ strokeLinejoin: "round",
5293
+ "aria-hidden": "true",
5294
+ ...rest,
5295
+ children: [
5296
+ /* @__PURE__ */ jsx140("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
5297
+ /* @__PURE__ */ jsx140("circle", { cx: "9", cy: "7", r: "4" }),
5298
+ /* @__PURE__ */ jsx140("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
5299
+ /* @__PURE__ */ jsx140("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
5300
+ ]
5301
+ }
5302
+ );
5303
+ }
5304
+
5305
+ // src/components/icons/volume-2/index.tsx
5306
+ import { jsx as jsx141, jsxs as jsxs110 } from "react/jsx-runtime";
5307
+ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5308
+ return /* @__PURE__ */ jsxs110(
5309
+ "svg",
5310
+ {
5311
+ xmlns: "http://www.w3.org/2000/svg",
5312
+ width: size3,
5313
+ height: size3,
5314
+ viewBox: "0 0 24 24",
5315
+ fill: "none",
5316
+ stroke: "currentColor",
5317
+ strokeWidth,
5318
+ strokeLinecap: "round",
5319
+ strokeLinejoin: "round",
5320
+ "aria-hidden": "true",
5321
+ ...rest,
5322
+ children: [
5323
+ /* @__PURE__ */ jsx141("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5324
+ /* @__PURE__ */ jsx141("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
5325
+ /* @__PURE__ */ jsx141("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
5326
+ ]
5327
+ }
5328
+ );
5329
+ }
5330
+
5331
+ // src/components/icons/volume-x/index.tsx
5332
+ import { jsx as jsx142, jsxs as jsxs111 } from "react/jsx-runtime";
5333
+ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5334
+ return /* @__PURE__ */ jsxs111(
5335
+ "svg",
5336
+ {
5337
+ xmlns: "http://www.w3.org/2000/svg",
5338
+ width: size3,
5339
+ height: size3,
5340
+ viewBox: "0 0 24 24",
5341
+ fill: "none",
5342
+ stroke: "currentColor",
5343
+ strokeWidth,
5344
+ strokeLinecap: "round",
5345
+ strokeLinejoin: "round",
5346
+ "aria-hidden": "true",
5347
+ ...rest,
5348
+ children: [
5349
+ /* @__PURE__ */ jsx142("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
5350
+ /* @__PURE__ */ jsx142("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
5351
+ /* @__PURE__ */ jsx142("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
5352
+ ]
5353
+ }
5354
+ );
5355
+ }
5356
+
5357
+ // src/components/icons/wifi/index.tsx
5358
+ import { jsx as jsx143, jsxs as jsxs112 } from "react/jsx-runtime";
5359
+ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5360
+ return /* @__PURE__ */ jsxs112(
5361
+ "svg",
5362
+ {
5363
+ xmlns: "http://www.w3.org/2000/svg",
5364
+ width: size3,
5365
+ height: size3,
5366
+ viewBox: "0 0 24 24",
5367
+ fill: "none",
5368
+ stroke: "currentColor",
5369
+ strokeWidth,
5370
+ strokeLinecap: "round",
5371
+ strokeLinejoin: "round",
5372
+ "aria-hidden": "true",
5373
+ ...rest,
5374
+ children: [
5375
+ /* @__PURE__ */ jsx143("path", { d: "M12 20h.01" }),
5376
+ /* @__PURE__ */ jsx143("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
5377
+ /* @__PURE__ */ jsx143("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
5378
+ /* @__PURE__ */ jsx143("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
5379
+ ]
5380
+ }
5381
+ );
5382
+ }
5383
+
5384
+ // src/components/icons/zap/index.tsx
5385
+ import { jsx as jsx144 } from "react/jsx-runtime";
5386
+ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, ...rest }) {
5387
+ return /* @__PURE__ */ jsx144(
5388
+ "svg",
5389
+ {
5390
+ xmlns: "http://www.w3.org/2000/svg",
5391
+ width: size3,
5392
+ height: size3,
5393
+ viewBox: "0 0 24 24",
5394
+ fill: "none",
5395
+ stroke: "currentColor",
5396
+ strokeWidth,
5397
+ strokeLinecap: "round",
5398
+ strokeLinejoin: "round",
5399
+ "aria-hidden": "true",
5400
+ ...rest,
5401
+ children: /* @__PURE__ */ jsx144("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
5402
+ }
5403
+ );
5404
+ }
5405
+
5406
+ // src/components/icons/index.ts
5407
+ var iconCatalog = [
5408
+ { name: "AlertCircleIcon", Icon: AlertCircleIcon },
5409
+ { name: "ArchiveIcon", Icon: ArchiveIcon },
5410
+ { name: "ArrowDownIcon", Icon: ArrowDownIcon },
5411
+ { name: "ArrowLeftIcon", Icon: ArrowLeftIcon },
5412
+ { name: "ArrowRightIcon", Icon: ArrowRightIcon },
5413
+ { name: "ArrowUpIcon", Icon: ArrowUpIcon },
5414
+ { name: "AtSignIcon", Icon: AtSignIcon },
5415
+ { name: "BellIcon", Icon: BellIcon },
5416
+ { name: "BellOffIcon", Icon: BellOffIcon },
5417
+ { name: "BookmarkIcon", Icon: BookmarkIcon },
5418
+ { name: "CalendarIcon", Icon: CalendarIcon },
5419
+ { name: "CameraIcon", Icon: CameraIcon },
5420
+ { name: "CheckIcon", Icon: CheckIcon },
5421
+ { name: "ChevronDownIcon", Icon: ChevronDownIcon },
5422
+ { name: "ChevronLeftIcon", Icon: ChevronLeftIcon },
5423
+ { name: "ChevronRightIcon", Icon: ChevronRightIcon },
5424
+ { name: "ChevronsLeftIcon", Icon: ChevronsLeftIcon },
5425
+ { name: "ChevronsRightIcon", Icon: ChevronsRightIcon },
5426
+ { name: "ChevronUpIcon", Icon: ChevronUpIcon },
5427
+ { name: "CircleCheckIcon", Icon: CircleCheckIcon },
5428
+ { name: "CircleXIcon", Icon: CircleXIcon },
5429
+ { name: "ClipboardIcon", Icon: ClipboardIcon },
5430
+ { name: "ClockIcon", Icon: ClockIcon },
5431
+ { name: "CloudIcon", Icon: CloudIcon },
5432
+ { name: "CopyIcon", Icon: CopyIcon },
5433
+ { name: "CornerDownRightIcon", Icon: CornerDownRightIcon },
5434
+ { name: "CreditCardIcon", Icon: CreditCardIcon },
5435
+ { name: "DollarSignIcon", Icon: DollarSignIcon },
5436
+ { name: "DownloadIcon", Icon: DownloadIcon },
5437
+ { name: "ExternalLinkIcon", Icon: ExternalLinkIcon },
5438
+ { name: "EyeIcon", Icon: EyeIcon },
5439
+ { name: "EyeOffIcon", Icon: EyeOffIcon },
5440
+ { name: "FileIcon", Icon: FileIcon },
5441
+ { name: "FileTextIcon", Icon: FileTextIcon },
5442
+ { name: "FilterIcon", Icon: FilterIcon },
5443
+ { name: "FingerprintIcon", Icon: FingerprintIcon },
5444
+ { name: "FolderIcon", Icon: FolderIcon },
5445
+ { name: "FolderOpenIcon", Icon: FolderOpenIcon },
5446
+ { name: "GiftIcon", Icon: GiftIcon },
5447
+ { name: "GlobeIcon", Icon: GlobeIcon },
5448
+ { name: "GridIcon", Icon: GridIcon },
5449
+ { name: "HeartIcon", Icon: HeartIcon },
5450
+ { name: "HelpCircleIcon", Icon: HelpCircleIcon },
5451
+ { name: "HomeIcon", Icon: HomeIcon },
5452
+ { name: "ImageIcon", Icon: ImageIcon },
5453
+ { name: "InboxIcon", Icon: InboxIcon },
5454
+ { name: "InfoIcon", Icon: InfoIcon },
5455
+ { name: "KeyIcon", Icon: KeyIcon },
5456
+ { name: "LayoutIcon", Icon: LayoutIcon },
5457
+ { name: "LinkIcon", Icon: LinkIcon },
5458
+ { name: "ListIcon", Icon: ListIcon },
5459
+ { name: "LoaderIcon", Icon: LoaderIcon },
5460
+ { name: "LockIcon", Icon: LockIcon },
5461
+ { name: "LogInIcon", Icon: LogInIcon },
5462
+ { name: "LogOutIcon", Icon: LogOutIcon },
5463
+ { name: "MailIcon", Icon: MailIcon },
5464
+ { name: "MapPinIcon", Icon: MapPinIcon },
5465
+ { name: "MaximizeIcon", Icon: MaximizeIcon },
5466
+ { name: "MenuIcon", Icon: MenuIcon },
5467
+ { name: "MessageCircleIcon", Icon: MessageCircleIcon },
5468
+ { name: "MessageSquareIcon", Icon: MessageSquareIcon },
5469
+ { name: "MicIcon", Icon: MicIcon },
5470
+ { name: "MinimizeIcon", Icon: MinimizeIcon },
5471
+ { name: "MinusIcon", Icon: MinusIcon },
5472
+ { name: "MoonIcon", Icon: MoonIcon },
5473
+ { name: "MoreHorizontalIcon", Icon: MoreHorizontalIcon },
5474
+ { name: "MoreVerticalIcon", Icon: MoreVerticalIcon },
5475
+ { name: "PackageIcon", Icon: PackageIcon },
5476
+ { name: "PaperclipIcon", Icon: PaperclipIcon },
5477
+ { name: "PauseIcon", Icon: PauseIcon },
5478
+ { name: "PencilIcon", Icon: PencilIcon },
5479
+ { name: "PhoneIcon", Icon: PhoneIcon },
5480
+ { name: "PlayIcon", Icon: PlayIcon },
5481
+ { name: "PlusIcon", Icon: PlusIcon },
5482
+ { name: "PrinterIcon", Icon: PrinterIcon },
5483
+ { name: "RedoIcon", Icon: RedoIcon },
5484
+ { name: "RefreshCwIcon", Icon: RefreshCwIcon },
5485
+ { name: "SaveIcon", Icon: SaveIcon },
5486
+ { name: "SearchIcon", Icon: SearchIcon },
5487
+ { name: "SendIcon", Icon: SendIcon },
5488
+ { name: "SettingsIcon", Icon: SettingsIcon },
5489
+ { name: "ShareIcon", Icon: ShareIcon },
5490
+ { name: "ShieldCheckIcon", Icon: ShieldCheckIcon },
5491
+ { name: "ShieldIcon", Icon: ShieldIcon },
5492
+ { name: "ShoppingBagIcon", Icon: ShoppingBagIcon },
5493
+ { name: "ShoppingCartIcon", Icon: ShoppingCartIcon },
5494
+ { name: "SidebarIcon", Icon: SidebarIcon },
5495
+ { name: "SkipBackIcon", Icon: SkipBackIcon },
5496
+ { name: "SkipForwardIcon", Icon: SkipForwardIcon },
5497
+ { name: "SlidersIcon", Icon: SlidersIcon },
5498
+ { name: "SmileIcon", Icon: SmileIcon },
5499
+ { name: "StarIcon", Icon: StarIcon },
5500
+ { name: "SunIcon", Icon: SunIcon },
5501
+ { name: "TagIcon", Icon: TagIcon },
5502
+ { name: "ThumbsDownIcon", Icon: ThumbsDownIcon },
5503
+ { name: "ThumbsUpIcon", Icon: ThumbsUpIcon },
5504
+ { name: "TrashIcon", Icon: TrashIcon },
5505
+ { name: "TriangleAlertIcon", Icon: TriangleAlertIcon },
5506
+ { name: "UndoIcon", Icon: UndoIcon },
5507
+ { name: "UnlockIcon", Icon: UnlockIcon },
5508
+ { name: "UploadIcon", Icon: UploadIcon },
5509
+ { name: "UserCheckIcon", Icon: UserCheckIcon },
5510
+ { name: "UserIcon", Icon: UserIcon },
5511
+ { name: "UserPlusIcon", Icon: UserPlusIcon },
5512
+ { name: "UsersIcon", Icon: UsersIcon },
5513
+ { name: "Volume2Icon", Icon: Volume2Icon },
5514
+ { name: "VolumeXIcon", Icon: VolumeXIcon },
5515
+ { name: "WifiIcon", Icon: WifiIcon },
5516
+ { name: "XIcon", Icon: XIcon },
5517
+ { name: "ZapIcon", Icon: ZapIcon }
5518
+ ];
3017
5519
  export {
3018
5520
  Accordion,
3019
5521
  Alert,
5522
+ AlertCircleIcon,
3020
5523
  AppBar,
5524
+ ArchiveIcon,
5525
+ ArrowDownIcon,
5526
+ ArrowLeftIcon,
5527
+ ArrowRightIcon,
5528
+ ArrowUpIcon,
5529
+ AtSignIcon,
3021
5530
  Avatar,
3022
5531
  Badge,
5532
+ BellIcon,
5533
+ BellOffIcon,
5534
+ BookmarkIcon,
3023
5535
  Breadcrumbs,
3024
5536
  Button,
5537
+ CalendarIcon,
5538
+ CameraIcon,
3025
5539
  Card2 as Card,
3026
5540
  CheckIcon,
3027
5541
  Checkbox,
@@ -3029,42 +5543,125 @@ export {
3029
5543
  ChevronLeftIcon,
3030
5544
  ChevronRightIcon,
3031
5545
  ChevronUpIcon,
5546
+ ChevronsLeftIcon,
5547
+ ChevronsRightIcon,
3032
5548
  Chip,
3033
5549
  CircleCheckIcon,
3034
5550
  CircleXIcon,
5551
+ ClipboardIcon,
5552
+ ClockIcon,
5553
+ CloudIcon,
3035
5554
  Container,
5555
+ CopyIcon,
5556
+ CornerDownRightIcon,
5557
+ CreditCardIcon,
3036
5558
  Dialog,
3037
5559
  Divider,
5560
+ DollarSignIcon,
5561
+ DownloadIcon,
5562
+ ExternalLinkIcon,
3038
5563
  EyeIcon,
3039
5564
  EyeOffIcon,
5565
+ FileIcon,
5566
+ FileTextIcon,
5567
+ FilterIcon,
5568
+ FingerprintIcon,
5569
+ FolderIcon,
5570
+ FolderOpenIcon,
5571
+ GiftIcon,
5572
+ GlobeIcon,
5573
+ GridIcon,
5574
+ HeartIcon,
5575
+ HelpCircleIcon,
5576
+ HomeIcon,
3040
5577
  IconButton,
5578
+ ImageIcon,
5579
+ InboxIcon,
3041
5580
  InfoIcon,
5581
+ KeyIcon,
5582
+ LayoutIcon,
5583
+ LinkIcon,
5584
+ ListIcon,
3042
5585
  ListItem,
5586
+ LoaderIcon,
5587
+ LockIcon,
5588
+ LogInIcon,
5589
+ LogOutIcon,
5590
+ MailIcon,
5591
+ MapPinIcon,
5592
+ MaximizeIcon,
3043
5593
  Menu,
5594
+ MenuIcon,
5595
+ MessageCircleIcon,
5596
+ MessageSquareIcon,
5597
+ MicIcon,
5598
+ MinimizeIcon,
3044
5599
  MinusIcon,
3045
5600
  MoneyField,
5601
+ MoonIcon,
3046
5602
  MoreHorizontalIcon,
5603
+ MoreVerticalIcon,
5604
+ PackageIcon,
3047
5605
  Pagination,
5606
+ PaperclipIcon,
3048
5607
  PasswordField,
5608
+ PauseIcon,
5609
+ PencilIcon,
5610
+ PhoneIcon,
5611
+ PlayIcon,
3049
5612
  PlusIcon,
5613
+ PrinterIcon,
3050
5614
  Progress,
3051
5615
  Radio,
5616
+ RedoIcon,
5617
+ RefreshCwIcon,
5618
+ SaveIcon,
3052
5619
  SearchIcon,
3053
5620
  Select,
5621
+ SendIcon,
5622
+ SettingsIcon,
5623
+ ShareIcon,
5624
+ ShieldCheckIcon,
5625
+ ShieldIcon,
5626
+ ShoppingBagIcon,
5627
+ ShoppingCartIcon,
5628
+ SidebarIcon,
5629
+ SkipBackIcon,
5630
+ SkipForwardIcon,
3054
5631
  Slider,
5632
+ SlidersIcon,
5633
+ SmileIcon,
3055
5634
  Snackbar,
5635
+ StarIcon,
3056
5636
  Stepper,
5637
+ SunIcon,
3057
5638
  Switch,
3058
5639
  Table,
3059
5640
  Tabs,
5641
+ TagIcon,
3060
5642
  TestIdProvider,
3061
5643
  TextField,
3062
5644
  ThemeProvider,
5645
+ ThumbsDownIcon,
5646
+ ThumbsUpIcon,
3063
5647
  Tooltip,
5648
+ TrashIcon,
3064
5649
  TriangleAlertIcon,
3065
5650
  Typography,
5651
+ UndoIcon,
5652
+ UnlockIcon,
5653
+ UploadIcon,
5654
+ UserCheckIcon,
5655
+ UserIcon,
5656
+ UserPlusIcon,
5657
+ UsersIcon,
5658
+ Volume2Icon,
5659
+ VolumeXIcon,
5660
+ WifiIcon,
3066
5661
  XIcon,
5662
+ ZapIcon,
3067
5663
  colorVars,
5664
+ iconCatalog,
3068
5665
  modeNames,
3069
5666
  schemaNames,
3070
5667
  text,