@postal-music/icons 0.1.6 → 0.1.8
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/README.md +77 -0
- package/dist/index.js +248 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +241 -5
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +135 -3
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +128 -4
- package/dist/index.native.mjs.map +1 -1
- package/dist/types/icons/arrows/ArrowUpIcon.d.ts +1 -2
- package/dist/types/icons/arrows/ChevronUpIcon.d.ts +5 -0
- package/dist/types/icons/arrows/index.d.ts +1 -0
- package/dist/types/icons/general/Recording02.d.ts +7 -0
- package/dist/types/icons/general/Target05Icon.d.ts +7 -0
- package/dist/types/icons/general/index.d.ts +2 -0
- package/dist/types/icons/navigation/AlignLeft01Icon.d.ts +6 -0
- package/dist/types/icons/navigation/FlexAlignBottomIcon.d.ts +6 -0
- package/dist/types/icons/navigation/FlexAlignLeftIcon.d.ts +6 -0
- package/dist/types/icons/navigation/FlexAlignRightIcon.d.ts +6 -0
- package/dist/types/icons/navigation/FlexAlignTopIcon.d.ts +6 -0
- package/dist/types/icons/navigation/index.d.ts +5 -0
- package/package.json +1 -1
- package/src/icons/arrows/ArrowUpIcon.native.tsx +4 -3
- package/src/icons/arrows/ArrowUpIcon.web.tsx +5 -5
- package/src/icons/arrows/ChevronUpIcon.native.tsx +32 -0
- package/src/icons/arrows/ChevronUpIcon.web.tsx +29 -0
- package/src/icons/arrows/index.ts +1 -0
- package/src/icons/general/Recording02.native.tsx +28 -0
- package/src/icons/general/Recording02.web.tsx +39 -0
- package/src/icons/general/Target05Icon.native.tsx +28 -0
- package/src/icons/general/Target05Icon.web.tsx +39 -0
- package/src/icons/general/index.ts +2 -0
- package/src/icons/navigation/AlignLeft01Icon.native.tsx +21 -0
- package/src/icons/navigation/AlignLeft01Icon.web.tsx +31 -0
- package/src/icons/navigation/FlexAlignBottomIcon.native.tsx +21 -0
- package/src/icons/navigation/FlexAlignBottomIcon.web.tsx +31 -0
- package/src/icons/navigation/FlexAlignLeftIcon.native.tsx +21 -0
- package/src/icons/navigation/FlexAlignLeftIcon.web.tsx +31 -0
- package/src/icons/navigation/FlexAlignRightIcon.native.tsx +21 -0
- package/src/icons/navigation/FlexAlignRightIcon.web.tsx +31 -0
- package/src/icons/navigation/FlexAlignTopIcon.native.tsx +21 -0
- package/src/icons/navigation/FlexAlignTopIcon.web.tsx +31 -0
- package/src/icons/navigation/index.ts +5 -0
package/README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# @postal-music/icons
|
|
2
|
+
|
|
3
|
+
Shared icon library for Postal — React (web) and React Native, from one source.
|
|
4
|
+
|
|
5
|
+
Each icon lives as a pair: `FooIcon.web.tsx` and `FooIcon.native.tsx`. At build time `tsup` resolves the platform extension and emits two bundles (`dist/index.*` for web, `dist/index.native.*` for native). Consumers import from a single specifier; bundlers/Metro pick the right entry via the `exports` map in `package.json`.
|
|
6
|
+
|
|
7
|
+
## Publishing
|
|
8
|
+
|
|
9
|
+
Published to npm as a public scoped package under the `@postal-music` org.
|
|
10
|
+
|
|
11
|
+
### Prerequisites
|
|
12
|
+
|
|
13
|
+
- npm login with publish rights on the `@postal-music` org:
|
|
14
|
+
```sh
|
|
15
|
+
npm whoami # should print your npm username
|
|
16
|
+
npm access list packages @postal-music # should list @postal-music/icons
|
|
17
|
+
```
|
|
18
|
+
If not logged in: `npm login`.
|
|
19
|
+
- Clean working tree in this package (`packages/postal-icons`). `package.json` has `"files": ["dist", "src"]`, so only those are shipped — but a dirty `src/` will still go out.
|
|
20
|
+
|
|
21
|
+
### Release workflow
|
|
22
|
+
|
|
23
|
+
Run all commands from `packages/postal-icons`.
|
|
24
|
+
|
|
25
|
+
1. **Make sure the build is current.**
|
|
26
|
+
```sh
|
|
27
|
+
npm run build
|
|
28
|
+
```
|
|
29
|
+
This runs `tsup` (web + native bundles), `tsc -p tsconfig.build.json` (types into `dist/types`), then `scripts/strip-web-suffix.mjs` (renames `*.web.d.ts` → `*.d.ts` so the declarations match the exports map).
|
|
30
|
+
|
|
31
|
+
2. **Bump the version.** Pick one:
|
|
32
|
+
```sh
|
|
33
|
+
npm version patch # 0.1.7 → 0.1.8 (icon added, bug fix)
|
|
34
|
+
npm version minor # 0.1.7 → 0.2.0 (new category, API addition)
|
|
35
|
+
npm version major # 0.1.7 → 1.0.0 (breaking rename/removal)
|
|
36
|
+
```
|
|
37
|
+
This rewrites `package.json` and creates a git commit + tag in this sub-repo (`postal-icons` is its own git repo — see the monorepo `CLAUDE.md`).
|
|
38
|
+
|
|
39
|
+
3. **Publish.**
|
|
40
|
+
```sh
|
|
41
|
+
npm publish
|
|
42
|
+
```
|
|
43
|
+
`publishConfig.access` is already `public`, so no `--access public` flag needed.
|
|
44
|
+
|
|
45
|
+
4. **Push the version commit and tag.**
|
|
46
|
+
```sh
|
|
47
|
+
git push && git push --tags
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
5. **Verify.**
|
|
51
|
+
```sh
|
|
52
|
+
npm view @postal-music/icons version
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Dry run
|
|
56
|
+
|
|
57
|
+
Before publishing, inspect exactly what will be shipped:
|
|
58
|
+
|
|
59
|
+
```sh
|
|
60
|
+
npm pack --dry-run
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
This lists every file that would land in the tarball without touching the registry. Make sure `dist/` looks complete and nothing sensitive snuck in.
|
|
64
|
+
|
|
65
|
+
### Bumping consumers
|
|
66
|
+
|
|
67
|
+
After publish, update the `@postal-music/icons` dependency in any consuming package (`postal-ac-frontend`, `postal-admin`, `postal-mobile`, `postal-desktop`, …) and run their respective install.
|
|
68
|
+
|
|
69
|
+
## Adding an icon
|
|
70
|
+
|
|
71
|
+
1. Drop the SVG into the right category under `src/icons/<category>/`:
|
|
72
|
+
- `FooIcon.web.tsx` — uses `<svg>` / `<path>`, stroke `currentColor`.
|
|
73
|
+
- `FooIcon.native.tsx` — uses `react-native-svg`'s `<Svg>` / `<Path>`, same path data.
|
|
74
|
+
2. Export it from that category's `index.ts` in alphabetical position.
|
|
75
|
+
3. Run `npm run build` to confirm both bundles compile.
|
|
76
|
+
|
|
77
|
+
Use `currentColor` for strokes/fills so consumers can theme via CSS / `color` prop. Keep the source `viewBox` (usually `0 0 18 18` or `0 0 24 24`); don't rescale paths.
|
package/dist/index.js
CHANGED
|
@@ -960,7 +960,6 @@ ArrowUpIcon01.displayName = "ArrowUpIcon01";
|
|
|
960
960
|
function ArrowUpIcon({
|
|
961
961
|
className,
|
|
962
962
|
size = 16,
|
|
963
|
-
stroke = "#8F8F8F",
|
|
964
963
|
color = "currentColor",
|
|
965
964
|
fill = "none",
|
|
966
965
|
...props
|
|
@@ -970,7 +969,7 @@ function ArrowUpIcon({
|
|
|
970
969
|
{
|
|
971
970
|
width: size,
|
|
972
971
|
height: size,
|
|
973
|
-
viewBox: "0 0
|
|
972
|
+
viewBox: "0 0 24 24",
|
|
974
973
|
fill,
|
|
975
974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
976
975
|
className,
|
|
@@ -978,9 +977,10 @@ function ArrowUpIcon({
|
|
|
978
977
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
979
978
|
"path",
|
|
980
979
|
{
|
|
981
|
-
d: "M12
|
|
980
|
+
d: "M12 19V5M19 12L12 5L5 12",
|
|
982
981
|
stroke: color,
|
|
983
|
-
strokeWidth:
|
|
982
|
+
strokeWidth: "2",
|
|
983
|
+
strokeLinecap: "round",
|
|
984
984
|
strokeLinejoin: "round"
|
|
985
985
|
}
|
|
986
986
|
)
|
|
@@ -1036,6 +1036,36 @@ var ChevronSelectorIcon = ({
|
|
|
1036
1036
|
}
|
|
1037
1037
|
);
|
|
1038
1038
|
var ChevronSelectorIcon_web_default = ChevronSelectorIcon;
|
|
1039
|
+
function ChevronUpIcon({
|
|
1040
|
+
className,
|
|
1041
|
+
size = 16,
|
|
1042
|
+
stroke = "#8F8F8F",
|
|
1043
|
+
color = "currentColor",
|
|
1044
|
+
fill = "none",
|
|
1045
|
+
...props
|
|
1046
|
+
}) {
|
|
1047
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1048
|
+
"svg",
|
|
1049
|
+
{
|
|
1050
|
+
width: size,
|
|
1051
|
+
height: size,
|
|
1052
|
+
viewBox: "0 0 16 16",
|
|
1053
|
+
fill,
|
|
1054
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1055
|
+
className,
|
|
1056
|
+
...props,
|
|
1057
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1058
|
+
"path",
|
|
1059
|
+
{
|
|
1060
|
+
d: "M12 10L8 6L4 10",
|
|
1061
|
+
stroke: color,
|
|
1062
|
+
strokeWidth: 1.5,
|
|
1063
|
+
strokeLinejoin: "round"
|
|
1064
|
+
}
|
|
1065
|
+
)
|
|
1066
|
+
}
|
|
1067
|
+
);
|
|
1068
|
+
}
|
|
1039
1069
|
function NarrowUpRightIcon({ title, ...props }) {
|
|
1040
1070
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1041
1071
|
"svg",
|
|
@@ -3103,6 +3133,39 @@ var Recording01Icon = ({
|
|
|
3103
3133
|
);
|
|
3104
3134
|
};
|
|
3105
3135
|
var Recordering01_web_default = Recording01Icon;
|
|
3136
|
+
var Recording02Icon = ({
|
|
3137
|
+
title = "Recording",
|
|
3138
|
+
className,
|
|
3139
|
+
size = 18,
|
|
3140
|
+
...props
|
|
3141
|
+
}) => {
|
|
3142
|
+
const ariaLabel = props["aria-label"] ?? title;
|
|
3143
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3144
|
+
"svg",
|
|
3145
|
+
{
|
|
3146
|
+
width: size,
|
|
3147
|
+
height: size,
|
|
3148
|
+
viewBox: "0 0 18 18",
|
|
3149
|
+
fill: "none",
|
|
3150
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3151
|
+
role: "img",
|
|
3152
|
+
"aria-label": ariaLabel,
|
|
3153
|
+
className,
|
|
3154
|
+
...props,
|
|
3155
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3156
|
+
"path",
|
|
3157
|
+
{
|
|
3158
|
+
d: "M2.25 7.5L2.25 10.5M5.625 8.25V9.75M9 4.5V13.5M12.375 2.25V15.75M15.75 7.5V10.5",
|
|
3159
|
+
stroke: "currentColor",
|
|
3160
|
+
strokeWidth: "1.6",
|
|
3161
|
+
strokeLinecap: "round",
|
|
3162
|
+
strokeLinejoin: "round"
|
|
3163
|
+
}
|
|
3164
|
+
)
|
|
3165
|
+
}
|
|
3166
|
+
);
|
|
3167
|
+
};
|
|
3168
|
+
var Recording02_web_default = Recording02Icon;
|
|
3106
3169
|
var Share01Icon = ({
|
|
3107
3170
|
size = 18,
|
|
3108
3171
|
color = "currentColor",
|
|
@@ -3372,6 +3435,39 @@ var TagsIcon = ({ size = 18, className, ...props }) => /* @__PURE__ */ jsxRuntim
|
|
|
3372
3435
|
}
|
|
3373
3436
|
);
|
|
3374
3437
|
var TagsIcon_web_default = TagsIcon;
|
|
3438
|
+
var Target05Icon = ({
|
|
3439
|
+
title = "Target",
|
|
3440
|
+
className,
|
|
3441
|
+
size = 18,
|
|
3442
|
+
...props
|
|
3443
|
+
}) => {
|
|
3444
|
+
const ariaLabel = props["aria-label"] ?? title;
|
|
3445
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3446
|
+
"svg",
|
|
3447
|
+
{
|
|
3448
|
+
width: size,
|
|
3449
|
+
height: size,
|
|
3450
|
+
viewBox: "0 0 18 18",
|
|
3451
|
+
fill: "none",
|
|
3452
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3453
|
+
role: "img",
|
|
3454
|
+
"aria-label": ariaLabel,
|
|
3455
|
+
className,
|
|
3456
|
+
...props,
|
|
3457
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3458
|
+
"path",
|
|
3459
|
+
{
|
|
3460
|
+
d: "M11.25 4.25522C13.0237 5.09782 14.25 6.9057 14.25 9M6.29431 13.5C4.76969 12.5813 3.75 10.9097 3.75 8.99996M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9ZM11.25 9C11.25 10.2426 10.2426 11.25 9 11.25C7.75736 11.25 6.75 10.2426 6.75 9C6.75 7.75736 7.75736 6.75 9 6.75C10.2426 6.75 11.25 7.75736 11.25 9Z",
|
|
3461
|
+
stroke: "currentColor",
|
|
3462
|
+
strokeWidth: "1.6",
|
|
3463
|
+
strokeLinecap: "round",
|
|
3464
|
+
strokeLinejoin: "round"
|
|
3465
|
+
}
|
|
3466
|
+
)
|
|
3467
|
+
}
|
|
3468
|
+
);
|
|
3469
|
+
};
|
|
3470
|
+
var Target05Icon_web_default = Target05Icon;
|
|
3375
3471
|
var ThumbsDownIcon = ({
|
|
3376
3472
|
size = 18,
|
|
3377
3473
|
className,
|
|
@@ -4002,6 +4098,34 @@ var VolumeMaxIcon = React6__namespace.forwardRef(({ size = 20, label, className,
|
|
|
4002
4098
|
}
|
|
4003
4099
|
);
|
|
4004
4100
|
});
|
|
4101
|
+
function AlignLeft01Icon({
|
|
4102
|
+
size = 16,
|
|
4103
|
+
className,
|
|
4104
|
+
...props
|
|
4105
|
+
}) {
|
|
4106
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4107
|
+
"svg",
|
|
4108
|
+
{
|
|
4109
|
+
width: size,
|
|
4110
|
+
height: size,
|
|
4111
|
+
viewBox: "0 0 24 24",
|
|
4112
|
+
fill: "none",
|
|
4113
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4114
|
+
className,
|
|
4115
|
+
...props,
|
|
4116
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4117
|
+
"path",
|
|
4118
|
+
{
|
|
4119
|
+
d: "M3 3V21M21 12H7M14 5L7 12L14 19",
|
|
4120
|
+
stroke: "currentColor",
|
|
4121
|
+
strokeWidth: "2",
|
|
4122
|
+
strokeLinecap: "round",
|
|
4123
|
+
strokeLinejoin: "round"
|
|
4124
|
+
}
|
|
4125
|
+
)
|
|
4126
|
+
}
|
|
4127
|
+
);
|
|
4128
|
+
}
|
|
4005
4129
|
function AlignLeftIcon({
|
|
4006
4130
|
size = 16,
|
|
4007
4131
|
className,
|
|
@@ -4095,6 +4219,118 @@ var FilterIcon = ({ size = 18, color = "currentColor" }) => /* @__PURE__ */ jsxR
|
|
|
4095
4219
|
}
|
|
4096
4220
|
);
|
|
4097
4221
|
var FilterIcon_web_default = FilterIcon;
|
|
4222
|
+
function FlexAlignBottomIcon({
|
|
4223
|
+
size = 16,
|
|
4224
|
+
className,
|
|
4225
|
+
...props
|
|
4226
|
+
}) {
|
|
4227
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4228
|
+
"svg",
|
|
4229
|
+
{
|
|
4230
|
+
width: size,
|
|
4231
|
+
height: size,
|
|
4232
|
+
viewBox: "0 0 24 24",
|
|
4233
|
+
fill: "none",
|
|
4234
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4235
|
+
className,
|
|
4236
|
+
...props,
|
|
4237
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4238
|
+
"path",
|
|
4239
|
+
{
|
|
4240
|
+
d: "M17.5 17.6L6.5 17.6M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
|
|
4241
|
+
stroke: "currentColor",
|
|
4242
|
+
strokeWidth: "2",
|
|
4243
|
+
strokeLinecap: "round",
|
|
4244
|
+
strokeLinejoin: "round"
|
|
4245
|
+
}
|
|
4246
|
+
)
|
|
4247
|
+
}
|
|
4248
|
+
);
|
|
4249
|
+
}
|
|
4250
|
+
function FlexAlignLeftIcon({
|
|
4251
|
+
size = 16,
|
|
4252
|
+
className,
|
|
4253
|
+
...props
|
|
4254
|
+
}) {
|
|
4255
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4256
|
+
"svg",
|
|
4257
|
+
{
|
|
4258
|
+
width: size,
|
|
4259
|
+
height: size,
|
|
4260
|
+
viewBox: "0 0 24 24",
|
|
4261
|
+
fill: "none",
|
|
4262
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4263
|
+
className,
|
|
4264
|
+
...props,
|
|
4265
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4266
|
+
"path",
|
|
4267
|
+
{
|
|
4268
|
+
d: "M6.5 17.5L6.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
|
|
4269
|
+
stroke: "currentColor",
|
|
4270
|
+
strokeWidth: "2",
|
|
4271
|
+
strokeLinecap: "round",
|
|
4272
|
+
strokeLinejoin: "round"
|
|
4273
|
+
}
|
|
4274
|
+
)
|
|
4275
|
+
}
|
|
4276
|
+
);
|
|
4277
|
+
}
|
|
4278
|
+
function FlexAlignRightIcon({
|
|
4279
|
+
size = 16,
|
|
4280
|
+
className,
|
|
4281
|
+
...props
|
|
4282
|
+
}) {
|
|
4283
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4284
|
+
"svg",
|
|
4285
|
+
{
|
|
4286
|
+
width: size,
|
|
4287
|
+
height: size,
|
|
4288
|
+
viewBox: "0 0 24 24",
|
|
4289
|
+
fill: "none",
|
|
4290
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4291
|
+
className,
|
|
4292
|
+
...props,
|
|
4293
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4294
|
+
"path",
|
|
4295
|
+
{
|
|
4296
|
+
d: "M17.5 17.5L17.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
|
|
4297
|
+
stroke: "currentColor",
|
|
4298
|
+
strokeWidth: "2",
|
|
4299
|
+
strokeLinecap: "round",
|
|
4300
|
+
strokeLinejoin: "round"
|
|
4301
|
+
}
|
|
4302
|
+
)
|
|
4303
|
+
}
|
|
4304
|
+
);
|
|
4305
|
+
}
|
|
4306
|
+
function FlexAlignTopIcon({
|
|
4307
|
+
size = 16,
|
|
4308
|
+
className,
|
|
4309
|
+
...props
|
|
4310
|
+
}) {
|
|
4311
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
4312
|
+
"svg",
|
|
4313
|
+
{
|
|
4314
|
+
width: size,
|
|
4315
|
+
height: size,
|
|
4316
|
+
viewBox: "0 0 24 24",
|
|
4317
|
+
fill: "none",
|
|
4318
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4319
|
+
className,
|
|
4320
|
+
...props,
|
|
4321
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4322
|
+
"path",
|
|
4323
|
+
{
|
|
4324
|
+
d: "M17.5 6.5L6.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
|
|
4325
|
+
stroke: "currentColor",
|
|
4326
|
+
strokeWidth: "2",
|
|
4327
|
+
strokeLinecap: "round",
|
|
4328
|
+
strokeLinejoin: "round"
|
|
4329
|
+
}
|
|
4330
|
+
)
|
|
4331
|
+
}
|
|
4332
|
+
);
|
|
4333
|
+
}
|
|
4098
4334
|
function Grid01Icon({
|
|
4099
4335
|
size = 15,
|
|
4100
4336
|
className,
|
|
@@ -5413,6 +5649,7 @@ var radius = {
|
|
|
5413
5649
|
exports.AccountIcon = AccountIcon;
|
|
5414
5650
|
exports.ActivityIcon = ActivityIcon_web_default;
|
|
5415
5651
|
exports.AlertTriangleIcon = AlertTriangleIcon_web_default;
|
|
5652
|
+
exports.AlignLeft01Icon = AlignLeft01Icon;
|
|
5416
5653
|
exports.AlignLeftIcon = AlignLeftIcon;
|
|
5417
5654
|
exports.AnnotationInfoIcon = AnnotationInfoIcon_web_default;
|
|
5418
5655
|
exports.AppleMusicIcon = AppleMusicIcon;
|
|
@@ -5436,6 +5673,7 @@ exports.CheckCircleIcon = CheckCircleIcon_web_default;
|
|
|
5436
5673
|
exports.CheckIcon = CheckIcon_web_default;
|
|
5437
5674
|
exports.ChevronLeftIcon = ChevronLeftIcon_web_default;
|
|
5438
5675
|
exports.ChevronSelectorIcon = ChevronSelectorIcon_web_default;
|
|
5676
|
+
exports.ChevronUpIcon = ChevronUpIcon;
|
|
5439
5677
|
exports.ClockIcon = ClockIcon;
|
|
5440
5678
|
exports.CoinsStacked03Icon = CoinsStacked03Icon_web_default;
|
|
5441
5679
|
exports.CollaborativeIcon = CollaborativeIcon_web_default;
|
|
@@ -5461,6 +5699,10 @@ exports.File02Icon = File02Icon_web_default;
|
|
|
5461
5699
|
exports.FileDownload02Icon = FileDownload02Icon_web_default;
|
|
5462
5700
|
exports.FilterIcon = FilterIcon_web_default;
|
|
5463
5701
|
exports.Flag01Icon = Flag01Icon_web_default;
|
|
5702
|
+
exports.FlexAlignBottomIcon = FlexAlignBottomIcon;
|
|
5703
|
+
exports.FlexAlignLeftIcon = FlexAlignLeftIcon;
|
|
5704
|
+
exports.FlexAlignRightIcon = FlexAlignRightIcon;
|
|
5705
|
+
exports.FlexAlignTopIcon = FlexAlignTopIcon;
|
|
5464
5706
|
exports.FolderGradientIcon = FolderGradientIcon_web_default;
|
|
5465
5707
|
exports.FolderIcon = FolderIcon_web_default;
|
|
5466
5708
|
exports.FolderPlusIcon = FolderPlusIcon;
|
|
@@ -5524,6 +5766,7 @@ exports.PostalIcon = PostalIcon_web_default;
|
|
|
5524
5766
|
exports.PreviousTrackIcon = PreviousTrackIcon_web_default;
|
|
5525
5767
|
exports.QuestionCircleIcon = QuestionCircleIcon_web_default;
|
|
5526
5768
|
exports.Recording01Icon = Recordering01_web_default;
|
|
5769
|
+
exports.Recording02Icon = Recording02_web_default;
|
|
5527
5770
|
exports.RefreshIcon = RefreshIcon;
|
|
5528
5771
|
exports.Repeat01Icon = Repeat01Icon;
|
|
5529
5772
|
exports.Repeat02Icon = Repeat02Icon_web_default;
|
|
@@ -5552,6 +5795,7 @@ exports.Stars04Icon = Stars04Icon_web_default;
|
|
|
5552
5795
|
exports.Stars06Icon = Stars06Icon_web_default;
|
|
5553
5796
|
exports.SwitchHorizontal02Icon = SwitchHorizontal02Icon_web_default;
|
|
5554
5797
|
exports.TagsIcon = TagsIcon_web_default;
|
|
5798
|
+
exports.Target05Icon = Target05Icon_web_default;
|
|
5555
5799
|
exports.TenSecondsBackIcon = SecondsBackIcon_web_default;
|
|
5556
5800
|
exports.TenSecondsForwardIcon = TenSecondsForwardIcon_web_default;
|
|
5557
5801
|
exports.ThumbsDownIcon = ThumbsDownIcon;
|