metal-icons 0.8.0 → 0.10.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/16/outline/CircleIcon.d.ts +3 -0
- package/16/outline/CircleIcon.js +23 -0
- package/16/outline/PauseIcon.d.ts +3 -0
- package/16/outline/PauseIcon.js +22 -0
- package/16/outline/esm/CircleIcon.d.ts +3 -0
- package/16/outline/esm/CircleIcon.js +23 -0
- package/16/outline/esm/PauseIcon.d.ts +3 -0
- package/16/outline/esm/PauseIcon.js +22 -0
- package/16/outline/esm/index.d.ts +2 -0
- package/16/outline/esm/index.js +2 -0
- package/16/outline/index.d.ts +2 -0
- package/16/outline/index.js +2 -0
- package/16/solid/CircleIcon.d.ts +3 -0
- package/16/solid/CircleIcon.js +23 -0
- package/16/solid/PauseIcon.d.ts +3 -0
- package/16/solid/PauseIcon.js +22 -0
- package/16/solid/esm/CircleIcon.d.ts +3 -0
- package/16/solid/esm/CircleIcon.js +23 -0
- package/16/solid/esm/PauseIcon.d.ts +3 -0
- package/16/solid/esm/PauseIcon.js +22 -0
- package/16/solid/esm/index.d.ts +2 -0
- package/16/solid/esm/index.js +2 -0
- package/16/solid/index.d.ts +2 -0
- package/16/solid/index.js +2 -0
- package/24/outline/CircleIcon.d.ts +3 -0
- package/24/outline/CircleIcon.js +23 -0
- package/24/outline/PauseIcon.d.ts +3 -0
- package/24/outline/PauseIcon.js +22 -0
- package/24/outline/esm/CircleIcon.d.ts +3 -0
- package/24/outline/esm/CircleIcon.js +23 -0
- package/24/outline/esm/PauseIcon.d.ts +3 -0
- package/24/outline/esm/PauseIcon.js +22 -0
- package/24/outline/esm/index.d.ts +2 -0
- package/24/outline/esm/index.js +2 -0
- package/24/outline/index.d.ts +2 -0
- package/24/outline/index.js +2 -0
- package/24/solid/CircleIcon.d.ts +3 -0
- package/24/solid/CircleIcon.js +23 -0
- package/24/solid/PauseIcon.d.ts +3 -0
- package/24/solid/PauseIcon.js +22 -0
- package/24/solid/esm/CircleIcon.d.ts +3 -0
- package/24/solid/esm/CircleIcon.js +23 -0
- package/24/solid/esm/PauseIcon.d.ts +3 -0
- package/24/solid/esm/PauseIcon.js +22 -0
- package/24/solid/esm/index.d.ts +2 -0
- package/24/solid/esm/index.js +2 -0
- package/24/solid/index.d.ts +2 -0
- package/24/solid/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M3.404 3.404a6.5 6.5 0 1 0 9.192 9.192 6.5 6.5 0 0 0-9.192-9.192M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M6 3.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 1 0 1.5 0zm5.5 0a.75.75 0 1 0-1.5 0v8.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M3.404 3.404a6.5 6.5 0 1 0 9.192 9.192 6.5 6.5 0 0 0-9.192-9.192M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M6 3.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 1 0 1.5 0zm5.5 0a.75.75 0 1 0-1.5 0v8.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
export default ForwardRef;
|
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/16/outline/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon.js'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon.js'
|
|
123
124
|
export { default as PageIcon } from './PageIcon.js'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon.js'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon.js'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon.js'
|
|
126
128
|
export { default as PenIcon } from './PenIcon.js'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon.js'
|
package/16/outline/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/16/outline/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -122,6 +123,7 @@ module.exports.MoreAltIcon = require("./MoreAltIcon.js")
|
|
|
122
123
|
module.exports.MoreIcon = require("./MoreIcon.js")
|
|
123
124
|
module.exports.PageIcon = require("./PageIcon.js")
|
|
124
125
|
module.exports.PaperclipIcon = require("./PaperclipIcon.js")
|
|
126
|
+
module.exports.PauseIcon = require("./PauseIcon.js")
|
|
125
127
|
module.exports.PenLineIcon = require("./PenLineIcon.js")
|
|
126
128
|
module.exports.PenIcon = require("./PenIcon.js")
|
|
127
129
|
module.exports.PencilLineIcon = require("./PencilLineIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M6 3.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 1 0 1.5 0zm5.5 0a.75.75 0 1 0-1.5 0v8.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M6 3.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 1 0 1.5 0zm5.5 0a.75.75 0 1 0-1.5 0v8.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
export default ForwardRef;
|
package/16/solid/esm/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/16/solid/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon.js'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon.js'
|
|
123
124
|
export { default as PageIcon } from './PageIcon.js'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon.js'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon.js'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon.js'
|
|
126
128
|
export { default as PenIcon } from './PenIcon.js'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon.js'
|
package/16/solid/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/16/solid/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -122,6 +123,7 @@ module.exports.MoreAltIcon = require("./MoreAltIcon.js")
|
|
|
122
123
|
module.exports.MoreIcon = require("./MoreIcon.js")
|
|
123
124
|
module.exports.PageIcon = require("./PageIcon.js")
|
|
124
125
|
module.exports.PaperclipIcon = require("./PaperclipIcon.js")
|
|
126
|
+
module.exports.PauseIcon = require("./PauseIcon.js")
|
|
125
127
|
module.exports.PenLineIcon = require("./PenLineIcon.js")
|
|
126
128
|
module.exports.PenIcon = require("./PenIcon.js")
|
|
127
129
|
module.exports.PencilLineIcon = require("./PencilLineIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M9 5.25a.75.75 0 0 0-1.5 0v13.5a.75.75 0 1 0 1.5 0zm7.5 0a.75.75 0 1 0-1.5 0v13.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M9 5.25a.75.75 0 0 0-1.5 0v13.5a.75.75 0 1 0 1.5 0zm7.5 0a.75.75 0 1 0-1.5 0v13.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
export default ForwardRef;
|
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/24/outline/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon.js'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon.js'
|
|
123
124
|
export { default as PageIcon } from './PageIcon.js'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon.js'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon.js'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon.js'
|
|
126
128
|
export { default as PenIcon } from './PenIcon.js'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon.js'
|
package/24/outline/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/24/outline/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -122,6 +123,7 @@ module.exports.MoreAltIcon = require("./MoreAltIcon.js")
|
|
|
122
123
|
module.exports.MoreIcon = require("./MoreIcon.js")
|
|
123
124
|
module.exports.PageIcon = require("./PageIcon.js")
|
|
124
125
|
module.exports.PaperclipIcon = require("./PaperclipIcon.js")
|
|
126
|
+
module.exports.PauseIcon = require("./PauseIcon.js")
|
|
125
127
|
module.exports.PenLineIcon = require("./PenLineIcon.js")
|
|
126
128
|
module.exports.PenIcon = require("./PenIcon.js")
|
|
127
129
|
module.exports.PencilLineIcon = require("./PencilLineIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M9 5.25a.75.75 0 0 0-1.5 0v13.5a.75.75 0 1 0 1.5 0zm7.5 0a.75.75 0 1 0-1.5 0v13.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function PauseIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M9 5.25a.75.75 0 0 0-1.5 0v13.5a.75.75 0 1 0 1.5 0zm7.5 0a.75.75 0 1 0-1.5 0v13.5a.75.75 0 1 0 1.5 0z"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
const ForwardRef = React.forwardRef(PauseIcon);
|
|
22
|
+
export default ForwardRef;
|
package/24/solid/esm/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/24/solid/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon.js'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon.js'
|
|
123
124
|
export { default as PageIcon } from './PageIcon.js'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon.js'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon.js'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon.js'
|
|
126
128
|
export { default as PenIcon } from './PenIcon.js'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon.js'
|
package/24/solid/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
|
@@ -122,6 +123,7 @@ export { default as MoreAltIcon } from './MoreAltIcon'
|
|
|
122
123
|
export { default as MoreIcon } from './MoreIcon'
|
|
123
124
|
export { default as PageIcon } from './PageIcon'
|
|
124
125
|
export { default as PaperclipIcon } from './PaperclipIcon'
|
|
126
|
+
export { default as PauseIcon } from './PauseIcon'
|
|
125
127
|
export { default as PenLineIcon } from './PenLineIcon'
|
|
126
128
|
export { default as PenIcon } from './PenIcon'
|
|
127
129
|
export { default as PencilLineIcon } from './PencilLineIcon'
|
package/24/solid/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -122,6 +123,7 @@ module.exports.MoreAltIcon = require("./MoreAltIcon.js")
|
|
|
122
123
|
module.exports.MoreIcon = require("./MoreIcon.js")
|
|
123
124
|
module.exports.PageIcon = require("./PageIcon.js")
|
|
124
125
|
module.exports.PaperclipIcon = require("./PaperclipIcon.js")
|
|
126
|
+
module.exports.PauseIcon = require("./PauseIcon.js")
|
|
125
127
|
module.exports.PenLineIcon = require("./PenLineIcon.js")
|
|
126
128
|
module.exports.PenIcon = require("./PenIcon.js")
|
|
127
129
|
module.exports.PencilLineIcon = require("./PencilLineIcon.js")
|