@webstudio-is/icons 0.24.0 → 0.25.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/lib/__generated__/auto-scroll.js +3 -3
- package/lib/__generated__/chevron-big-down.js +3 -3
- package/lib/__generated__/chevron-big-left.js +3 -3
- package/lib/__generated__/chevron-big-right.js +3 -3
- package/lib/__generated__/chevron-big-up.js +3 -3
- package/lib/__generated__/chevron-filled-down.js +3 -3
- package/lib/__generated__/chevron-filled-left.js +3 -3
- package/lib/__generated__/chevron-filled-right.js +3 -3
- package/lib/__generated__/chevron-filled-up.js +3 -3
- package/lib/__generated__/dot.js +3 -3
- package/lib/__generated__/eyecon-closed.js +3 -3
- package/lib/__generated__/eyecon-open.js +3 -3
- package/lib/__generated__/hamburger-menu.js +24 -0
- package/lib/__generated__/index.js +3 -0
- package/lib/__generated__/info.js +3 -3
- package/lib/__generated__/linked.js +3 -3
- package/lib/__generated__/offline.js +23 -0
- package/lib/__generated__/play.js +22 -0
- package/lib/__generated__/scroll.js +3 -3
- package/lib/__generated__/subscript.js +3 -3
- package/lib/__generated__/superscript.js +3 -3
- package/lib/__generated__/unlinked.js +3 -3
- package/lib/__generated__/webstudio.js +3 -3
- package/lib/cjs/__generated__/auto-scroll.cjs +3 -3
- package/lib/cjs/__generated__/chevron-big-down.cjs +3 -3
- package/lib/cjs/__generated__/chevron-big-left.cjs +3 -3
- package/lib/cjs/__generated__/chevron-big-right.cjs +3 -3
- package/lib/cjs/__generated__/chevron-big-up.cjs +3 -3
- package/lib/cjs/__generated__/chevron-filled-down.cjs +3 -3
- package/lib/cjs/__generated__/chevron-filled-left.cjs +3 -3
- package/lib/cjs/__generated__/chevron-filled-right.cjs +3 -3
- package/lib/cjs/__generated__/chevron-filled-up.cjs +3 -3
- package/lib/cjs/__generated__/dot.cjs +3 -3
- package/lib/cjs/__generated__/eyecon-closed.cjs +3 -3
- package/lib/cjs/__generated__/eyecon-open.cjs +3 -3
- package/lib/cjs/{tablet.cjs → __generated__/hamburger-menu.cjs} +15 -20
- package/lib/cjs/__generated__/index.cjs +3 -0
- package/lib/cjs/__generated__/info.cjs +3 -3
- package/lib/cjs/__generated__/linked.cjs +3 -3
- package/lib/cjs/__generated__/offline.cjs +43 -0
- package/lib/cjs/__generated__/play.cjs +42 -0
- package/lib/cjs/__generated__/scroll.cjs +3 -3
- package/lib/cjs/__generated__/subscript.cjs +3 -3
- package/lib/cjs/__generated__/superscript.cjs +3 -3
- package/lib/cjs/__generated__/unlinked.cjs +3 -3
- package/lib/cjs/__generated__/webstudio.cjs +3 -3
- package/lib/cjs/index.cjs +0 -1
- package/lib/cjs/legacy.cjs +0 -5
- package/lib/index.js +0 -1
- package/lib/legacy.js +0 -10
- package/package.json +2 -2
- package/src/__generated__/auto-scroll.tsx +3 -3
- package/src/__generated__/chevron-big-down.tsx +3 -3
- package/src/__generated__/chevron-big-left.tsx +3 -3
- package/src/__generated__/chevron-big-right.tsx +3 -3
- package/src/__generated__/chevron-big-up.tsx +3 -3
- package/src/__generated__/chevron-filled-down.tsx +3 -3
- package/src/__generated__/chevron-filled-left.tsx +3 -3
- package/src/__generated__/chevron-filled-right.tsx +3 -3
- package/src/__generated__/chevron-filled-up.tsx +3 -3
- package/src/__generated__/dot.tsx +3 -3
- package/src/__generated__/eyecon-closed.tsx +3 -3
- package/src/__generated__/eyecon-open.tsx +3 -3
- package/src/__generated__/hamburger-menu.tsx +15 -0
- package/src/__generated__/index.ts +3 -0
- package/src/__generated__/info.tsx +3 -3
- package/src/__generated__/linked.tsx +3 -3
- package/src/__generated__/offline.tsx +15 -0
- package/src/__generated__/play.tsx +15 -0
- package/src/__generated__/scroll.tsx +3 -3
- package/src/__generated__/subscript.tsx +3 -3
- package/src/__generated__/superscript.tsx +3 -3
- package/src/__generated__/unlinked.tsx +3 -3
- package/src/__generated__/webstudio.tsx +3 -3
- package/src/index.ts +0 -1
- package/src/legacy.ts +0 -5
- package/src/types.ts +1 -0
- package/lib/tablet.js +0 -23
- package/src/tablet.tsx +0 -25
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const AutoScrollIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronBigDownIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronBigLeftIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronBigRightIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronBigUpIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronFilledDownIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronFilledLeftIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronFilledRightIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ChevronFilledUpIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
package/lib/__generated__/dot.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const DotIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const EyeconClosedIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const EyeconOpenIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const HamburgerMenuIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 22 22",
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
|
+
fill: color,
|
|
11
|
+
...props,
|
|
12
|
+
ref: forwardedRef,
|
|
13
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
d: "M2 5.998a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Zm0 5.5a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Zm0 5.5a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z",
|
|
16
|
+
clipRule: "evenodd"
|
|
17
|
+
})
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
HamburgerMenuIcon.displayName = "HamburgerMenuIcon";
|
|
22
|
+
export {
|
|
23
|
+
HamburgerMenuIcon
|
|
24
|
+
};
|
|
@@ -10,8 +10,11 @@ export * from "./chevron-filled-up";
|
|
|
10
10
|
export * from "./dot";
|
|
11
11
|
export * from "./eyecon-closed";
|
|
12
12
|
export * from "./eyecon-open";
|
|
13
|
+
export * from "./hamburger-menu";
|
|
13
14
|
export * from "./info";
|
|
14
15
|
export * from "./linked";
|
|
16
|
+
export * from "./offline";
|
|
17
|
+
export * from "./play";
|
|
15
18
|
export * from "./scroll";
|
|
16
19
|
export * from "./subscript";
|
|
17
20
|
export * from "./superscript";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const InfoIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const LinkedIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const OfflineIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 22 22",
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
|
+
fill: color,
|
|
11
|
+
...props,
|
|
12
|
+
ref: forwardedRef,
|
|
13
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
14
|
+
d: "M3.301 3.14a.75.75 0 0 1 1.061 0l14.67 14.67a.75.75 0 1 1-1.061 1.06l-1.53-1.53a4.521 4.521 0 0 1-.857.082H6.416a4.5 4.5 0 0 1-.975-8.895 5.723 5.723 0 0 1 .656-1.53L3.301 4.2a.75.75 0 0 1 0-1.06ZM7.2 8.098a4.216 4.216 0 0 0-.394 1.21.75.75 0 0 1-.67.626 3.001 3.001 0 0 0 .28 5.988h8.609L7.199 8.098Zm2.555-3.71a5.753 5.753 0 0 1 6.805 4.138 4.502 4.502 0 0 1 3.226 6.014.75.75 0 1 1-1.4-.54 3.001 3.001 0 0 0-2.52-4.067.75.75 0 0 1-.67-.624 4.252 4.252 0 0 0-5.117-3.455.75.75 0 0 1-.324-1.465Z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
OfflineIcon.displayName = "OfflineIcon";
|
|
21
|
+
export {
|
|
22
|
+
OfflineIcon
|
|
23
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const PlayIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 22 22",
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
|
+
fill: color,
|
|
11
|
+
...props,
|
|
12
|
+
ref: forwardedRef,
|
|
13
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
14
|
+
d: "M4.766 5.765c0-.725 0-1.088.178-1.288a.93.93 0 0 1 .648-.294c.294-.015.65.186 1.359.588l9.234 5.235c.586.332.88.498.982.708.09.183.09.389 0 .572-.102.21-.396.376-.982.708l-9.234 5.235c-.71.402-1.065.603-1.359.588a.93.93 0 0 1-.648-.294c-.178-.2-.178-.563-.178-1.288V5.765Z"
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
PlayIcon.displayName = "PlayIcon";
|
|
20
|
+
export {
|
|
21
|
+
PlayIcon
|
|
22
|
+
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ScrollIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const SubscriptIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 48 48",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const SuperscriptIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 48 48",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const UnlinkedIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 16 16",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const WebstudioIcon = forwardRef(
|
|
4
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsxs("svg", {
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
7
|
viewBox: "0 0 280 210",
|
|
8
|
-
width:
|
|
9
|
-
height:
|
|
8
|
+
width: size,
|
|
9
|
+
height: size,
|
|
10
10
|
fill: color,
|
|
11
11
|
...props,
|
|
12
12
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(auto_scroll_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const AutoScrollIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_big_down_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronBigDownIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_big_left_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronBigLeftIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_big_right_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronBigRightIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_big_up_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronBigUpIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_filled_down_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronFilledDownIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_filled_left_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronFilledLeftIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_filled_right_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronFilledRightIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(chevron_filled_up_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ChevronFilledUpIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(dot_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const DotIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(eyecon_closed_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const EyeconClosedIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|
|
@@ -24,12 +24,12 @@ module.exports = __toCommonJS(eyecon_open_exports);
|
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const EyeconOpenIcon = (0, import_react.forwardRef)(
|
|
27
|
-
({ color = "currentColor", ...props }, forwardedRef) => {
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
30
|
viewBox: "0 0 16 16",
|
|
31
|
-
width:
|
|
32
|
-
height:
|
|
31
|
+
width: size,
|
|
32
|
+
height: size,
|
|
33
33
|
fill: color,
|
|
34
34
|
...props,
|
|
35
35
|
ref: forwardedRef,
|