@bubbles-ui/icons 1.0.8 → 1.0.10

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.
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare function DuplicateIcon(props: React.ComponentProps<'svg'>): JSX.Element;
3
+ export default DuplicateIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+
3
+ function DuplicateIcon(props) {
4
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
5
+ fill: "none",
6
+ viewBox: "0 0 18 18",
7
+ stroke: "currentColor",
8
+ "aria-hidden": "true",
9
+ width: "1em",
10
+ height: "1em"
11
+ }, props), /*#__PURE__*/React.createElement("path", {
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round",
14
+ strokeWidth: 2,
15
+ d: "M12.5 1.5h-10a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-10a1 1 0 0 0-1-1Z"
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round",
19
+ strokeWidth: 2,
20
+ d: "M15.5 4.5a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-10a1 1 0 0 1-1-1"
21
+ }));
22
+ }
23
+
24
+ module.exports = DuplicateIcon;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare function SwitchHorizontalIcon(props: React.ComponentProps<'svg'>): JSX.Element;
3
+ export default SwitchHorizontalIcon;
@@ -0,0 +1,19 @@
1
+ const React = require("react");
2
+
3
+ function SwitchHorizontalIcon(props) {
4
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
5
+ fill: "none",
6
+ viewBox: "0 0 24 24",
7
+ stroke: "currentColor",
8
+ "aria-hidden": "true",
9
+ width: "1em",
10
+ height: "1em"
11
+ }, props), /*#__PURE__*/React.createElement("path", {
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round",
14
+ strokeWidth: 2,
15
+ d: "M8 7h12m0 0-4-4m4 4-4 4m0 6H4m0 0 4 4m-4-4 4-4"
16
+ }));
17
+ }
18
+
19
+ module.exports = SwitchHorizontalIcon;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare function DuplicateIcon(props: React.ComponentProps<'svg'>): JSX.Element;
3
+ export default DuplicateIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+
3
+ function DuplicateIcon(props) {
4
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
5
+ fill: "none",
6
+ viewBox: "0 0 18 18",
7
+ stroke: "currentColor",
8
+ "aria-hidden": "true",
9
+ width: "1em",
10
+ height: "1em"
11
+ }, props), /*#__PURE__*/React.createElement("path", {
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round",
14
+ strokeWidth: 2,
15
+ d: "M12.5 1.5h-10a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-10a1 1 0 0 0-1-1Z"
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round",
19
+ strokeWidth: 2,
20
+ d: "M15.5 4.5a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-10a1 1 0 0 1-1-1"
21
+ }));
22
+ }
23
+
24
+ export default DuplicateIcon;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare function SwitchHorizontalIcon(props: React.ComponentProps<'svg'>): JSX.Element;
3
+ export default SwitchHorizontalIcon;
@@ -0,0 +1,19 @@
1
+ import * as React from "react";
2
+
3
+ function SwitchHorizontalIcon(props) {
4
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
5
+ fill: "none",
6
+ viewBox: "0 0 24 24",
7
+ stroke: "currentColor",
8
+ "aria-hidden": "true",
9
+ width: "1em",
10
+ height: "1em"
11
+ }, props), /*#__PURE__*/React.createElement("path", {
12
+ strokeLinecap: "round",
13
+ strokeLinejoin: "round",
14
+ strokeWidth: 2,
15
+ d: "M8 7h12m0 0-4-4m4 4-4 4m0 6H4m0 0 4 4m-4-4 4-4"
16
+ }));
17
+ }
18
+
19
+ export default SwitchHorizontalIcon;
@@ -42,6 +42,7 @@ export { default as DoneCircleIcon } from './DoneCircleIcon'
42
42
  export { default as DoneSquareIcon } from './DoneSquareIcon'
43
43
  export { default as DownloadDrawerIcon } from './DownloadDrawerIcon'
44
44
  export { default as DownloadIcon } from './DownloadIcon'
45
+ export { default as DuplicateIcon } from './DuplicateIcon'
45
46
  export { default as EditIcon } from './EditIcon'
46
47
  export { default as EmailActionReadIcon } from './EmailActionReadIcon'
47
48
  export { default as EmailActionReplyAllIcon } from './EmailActionReplyAllIcon'
@@ -162,6 +163,7 @@ export { default as StyleThreePinTableIcon } from './StyleThreePinTableIcon'
162
163
  export { default as SubtractCircleIcon } from './SubtractCircleIcon'
163
164
  export { default as SubtractSquareIcon } from './SubtractSquareIcon'
164
165
  export { default as SubtractIcon } from './SubtractIcon'
166
+ export { default as SwitchHorizontalIcon } from './SwitchHorizontalIcon'
165
167
  export { default as SynchronizeArrowClockIcon } from './SynchronizeArrowClockIcon'
166
168
  export { default as SynchronizeArrowUndoneIcon } from './SynchronizeArrowUndoneIcon'
167
169
  export { default as SynchronizeArrowIcon } from './SynchronizeArrowIcon'
@@ -42,6 +42,7 @@ export { default as DoneCircleIcon } from './DoneCircleIcon.js'
42
42
  export { default as DoneSquareIcon } from './DoneSquareIcon.js'
43
43
  export { default as DownloadDrawerIcon } from './DownloadDrawerIcon.js'
44
44
  export { default as DownloadIcon } from './DownloadIcon.js'
45
+ export { default as DuplicateIcon } from './DuplicateIcon.js'
45
46
  export { default as EditIcon } from './EditIcon.js'
46
47
  export { default as EmailActionReadIcon } from './EmailActionReadIcon.js'
47
48
  export { default as EmailActionReplyAllIcon } from './EmailActionReplyAllIcon.js'
@@ -162,6 +163,7 @@ export { default as StyleThreePinTableIcon } from './StyleThreePinTableIcon.js'
162
163
  export { default as SubtractCircleIcon } from './SubtractCircleIcon.js'
163
164
  export { default as SubtractSquareIcon } from './SubtractSquareIcon.js'
164
165
  export { default as SubtractIcon } from './SubtractIcon.js'
166
+ export { default as SwitchHorizontalIcon } from './SwitchHorizontalIcon.js'
165
167
  export { default as SynchronizeArrowClockIcon } from './SynchronizeArrowClockIcon.js'
166
168
  export { default as SynchronizeArrowUndoneIcon } from './SynchronizeArrowUndoneIcon.js'
167
169
  export { default as SynchronizeArrowIcon } from './SynchronizeArrowIcon.js'
@@ -42,6 +42,7 @@ export { default as DoneCircleIcon } from './DoneCircleIcon'
42
42
  export { default as DoneSquareIcon } from './DoneSquareIcon'
43
43
  export { default as DownloadDrawerIcon } from './DownloadDrawerIcon'
44
44
  export { default as DownloadIcon } from './DownloadIcon'
45
+ export { default as DuplicateIcon } from './DuplicateIcon'
45
46
  export { default as EditIcon } from './EditIcon'
46
47
  export { default as EmailActionReadIcon } from './EmailActionReadIcon'
47
48
  export { default as EmailActionReplyAllIcon } from './EmailActionReplyAllIcon'
@@ -162,6 +163,7 @@ export { default as StyleThreePinTableIcon } from './StyleThreePinTableIcon'
162
163
  export { default as SubtractCircleIcon } from './SubtractCircleIcon'
163
164
  export { default as SubtractSquareIcon } from './SubtractSquareIcon'
164
165
  export { default as SubtractIcon } from './SubtractIcon'
166
+ export { default as SwitchHorizontalIcon } from './SwitchHorizontalIcon'
165
167
  export { default as SynchronizeArrowClockIcon } from './SynchronizeArrowClockIcon'
166
168
  export { default as SynchronizeArrowUndoneIcon } from './SynchronizeArrowUndoneIcon'
167
169
  export { default as SynchronizeArrowIcon } from './SynchronizeArrowIcon'
package/outline/index.js CHANGED
@@ -42,6 +42,7 @@ module.exports.DoneCircleIcon = require("./DoneCircleIcon.js")
42
42
  module.exports.DoneSquareIcon = require("./DoneSquareIcon.js")
43
43
  module.exports.DownloadDrawerIcon = require("./DownloadDrawerIcon.js")
44
44
  module.exports.DownloadIcon = require("./DownloadIcon.js")
45
+ module.exports.DuplicateIcon = require("./DuplicateIcon.js")
45
46
  module.exports.EditIcon = require("./EditIcon.js")
46
47
  module.exports.EmailActionReadIcon = require("./EmailActionReadIcon.js")
47
48
  module.exports.EmailActionReplyAllIcon = require("./EmailActionReplyAllIcon.js")
@@ -162,6 +163,7 @@ module.exports.StyleThreePinTableIcon = require("./StyleThreePinTableIcon.js")
162
163
  module.exports.SubtractCircleIcon = require("./SubtractCircleIcon.js")
163
164
  module.exports.SubtractSquareIcon = require("./SubtractSquareIcon.js")
164
165
  module.exports.SubtractIcon = require("./SubtractIcon.js")
166
+ module.exports.SwitchHorizontalIcon = require("./SwitchHorizontalIcon.js")
165
167
  module.exports.SynchronizeArrowClockIcon = require("./SynchronizeArrowClockIcon.js")
166
168
  module.exports.SynchronizeArrowUndoneIcon = require("./SynchronizeArrowUndoneIcon.js")
167
169
  module.exports.SynchronizeArrowIcon = require("./SynchronizeArrowIcon.js")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bubbles-ui/icons",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "The Bubbles Design System icons library.",
5
5
  "license": "MIT",
6
6
  "repository": {