l-min-components 1.0.149 → 1.0.150

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.0.149",
3
+ "version": "1.0.150",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -1,15 +1,15 @@
1
1
  import React from "react";
2
- export const AddIcon = ({ width, height, fill }) => (
2
+ const AddIcon = ({ width, height, fill }) => (
3
3
  <svg
4
4
  width={width || "21"}
5
5
  height={height || "20"}
6
6
  viewBox="0 0 21 20"
7
7
  fill="none"
8
- xmlns="http://www.w3.org/2000/svg"
9
- >
8
+ xmlns="http://www.w3.org/2000/svg">
10
9
  <path
11
10
  d="M11.5 5H9.5V9H5.5V11H9.5V15H11.5V11H15.5V9H11.5V5ZM10.5 0C4.98 0 0.5 4.48 0.5 10C0.5 15.52 4.98 20 10.5 20C16.02 20 20.5 15.52 20.5 10C20.5 4.48 16.02 0 10.5 0ZM10.5 18C6.09 18 2.5 14.41 2.5 10C2.5 5.59 6.09 2 10.5 2C14.91 2 18.5 5.59 18.5 10C18.5 14.41 14.91 18 10.5 18Z"
12
11
  fill="#FEBF10"
13
12
  />
14
13
  </svg>
15
14
  );
15
+ export default { AddIcon };
@@ -1,16 +1,16 @@
1
1
  import React from "react";
2
- export const CloseIcon = ({ width, height, fill, onClick }) => (
2
+ const CloseIcon = ({ width, height, fill, onClick }) => (
3
3
  <svg
4
4
  onClick={onClick}
5
5
  width={width || "12"}
6
6
  height={height || "12"}
7
7
  viewBox="0 0 12 12"
8
8
  fill="none"
9
- xmlns="http://www.w3.org/2000/svg"
10
- >
9
+ xmlns="http://www.w3.org/2000/svg">
11
10
  <path
12
11
  d="M11.8307 1.3415L10.6557 0.166504L5.9974 4.82484L1.33906 0.166504L0.164062 1.3415L4.8224 5.99984L0.164062 10.6582L1.33906 11.8332L5.9974 7.17484L10.6557 11.8332L11.8307 10.6582L7.1724 5.99984L11.8307 1.3415Z"
13
12
  fill="#323232"
14
13
  />
15
14
  </svg>
16
15
  );
16
+ export default { CloseIcon };