@bubbles-ui/icons 1.0.3 → 1.0.4
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/outline/FileIcon.d.ts +3 -0
- package/outline/FileIcon.js +26 -0
- package/outline/esm/FileIcon.d.ts +3 -0
- package/outline/esm/FileIcon.js +26 -0
- package/outline/esm/index.d.ts +1 -0
- package/outline/esm/index.js +1 -0
- package/outline/index.d.ts +1 -0
- package/outline/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
function FileIcon(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: "M18.647 23.25H2.25a1.5 1.5 0 0 1-1.5-1.5V2.25a1.5 1.5 0 0 1 1.5-1.5h10.629a1.5 1.5 0 0 1 1.06.439l5.872 5.872a1.5 1.5 0 0 1 .439 1.06v13.343c0 .854-.514 1.786-1.603 1.786Z"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round",
|
|
19
|
+
strokeWidth: 2,
|
|
20
|
+
d: "M20.25 8.25h-6a1.5 1.5 0 0 1-1.5-1.5v-6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M0 0h24v24H0V0Z"
|
|
23
|
+
}));
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
module.exports = FileIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
function FileIcon(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: "M18.647 23.25H2.25a1.5 1.5 0 0 1-1.5-1.5V2.25a1.5 1.5 0 0 1 1.5-1.5h10.629a1.5 1.5 0 0 1 1.06.439l5.872 5.872a1.5 1.5 0 0 1 .439 1.06v13.343c0 .854-.514 1.786-1.603 1.786Z"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round",
|
|
19
|
+
strokeWidth: 2,
|
|
20
|
+
d: "M20.25 8.25h-6a1.5 1.5 0 0 1-1.5-1.5v-6"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M0 0h24v24H0V0Z"
|
|
23
|
+
}));
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default FileIcon;
|
package/outline/esm/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export { default as FileSvgIcon } from './FileSvgIcon'
|
|
|
67
67
|
export { default as FileTxtIcon } from './FileTxtIcon'
|
|
68
68
|
export { default as FileXmlIcon } from './FileXmlIcon'
|
|
69
69
|
export { default as FileZipIcon } from './FileZipIcon'
|
|
70
|
+
export { default as FileIcon } from './FileIcon'
|
|
70
71
|
export { default as FilterIcon } from './FilterIcon'
|
|
71
72
|
export { default as FormFileAttachIcon } from './FormFileAttachIcon'
|
|
72
73
|
export { default as FormImageAttachIcon } from './FormImageAttachIcon'
|
package/outline/esm/index.js
CHANGED
|
@@ -67,6 +67,7 @@ export { default as FileSvgIcon } from './FileSvgIcon.js'
|
|
|
67
67
|
export { default as FileTxtIcon } from './FileTxtIcon.js'
|
|
68
68
|
export { default as FileXmlIcon } from './FileXmlIcon.js'
|
|
69
69
|
export { default as FileZipIcon } from './FileZipIcon.js'
|
|
70
|
+
export { default as FileIcon } from './FileIcon.js'
|
|
70
71
|
export { default as FilterIcon } from './FilterIcon.js'
|
|
71
72
|
export { default as FormFileAttachIcon } from './FormFileAttachIcon.js'
|
|
72
73
|
export { default as FormImageAttachIcon } from './FormImageAttachIcon.js'
|
package/outline/index.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export { default as FileSvgIcon } from './FileSvgIcon'
|
|
|
67
67
|
export { default as FileTxtIcon } from './FileTxtIcon'
|
|
68
68
|
export { default as FileXmlIcon } from './FileXmlIcon'
|
|
69
69
|
export { default as FileZipIcon } from './FileZipIcon'
|
|
70
|
+
export { default as FileIcon } from './FileIcon'
|
|
70
71
|
export { default as FilterIcon } from './FilterIcon'
|
|
71
72
|
export { default as FormFileAttachIcon } from './FormFileAttachIcon'
|
|
72
73
|
export { default as FormImageAttachIcon } from './FormImageAttachIcon'
|
package/outline/index.js
CHANGED
|
@@ -67,6 +67,7 @@ module.exports.FileSvgIcon = require("./FileSvgIcon.js")
|
|
|
67
67
|
module.exports.FileTxtIcon = require("./FileTxtIcon.js")
|
|
68
68
|
module.exports.FileXmlIcon = require("./FileXmlIcon.js")
|
|
69
69
|
module.exports.FileZipIcon = require("./FileZipIcon.js")
|
|
70
|
+
module.exports.FileIcon = require("./FileIcon.js")
|
|
70
71
|
module.exports.FilterIcon = require("./FilterIcon.js")
|
|
71
72
|
module.exports.FormFileAttachIcon = require("./FormFileAttachIcon.js")
|
|
72
73
|
module.exports.FormImageAttachIcon = require("./FormImageAttachIcon.js")
|