@campxdev/react-blueprint 0.1.25 → 0.1.26

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": "@campxdev/react-blueprint",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "main": "./export.ts",
5
5
  "private": false,
6
6
  "dependencies": {
@@ -0,0 +1,72 @@
1
+ import { useTheme } from "@mui/material";
2
+
3
+ export const ProductFeaturesIcon = () => {
4
+ const theme = useTheme();
5
+ const color = theme.palette.text.primary;
6
+ return (
7
+ <svg
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ width="16"
10
+ height="16"
11
+ viewBox="0 0 16 16"
12
+ style={{
13
+ stroke: color,
14
+ }}
15
+ >
16
+ <g
17
+ id="vuesax_linear_element-4"
18
+ data-name="vuesax/linear/element-4"
19
+ transform="translate(-684 -252)"
20
+ >
21
+ <g id="element-4" transform="translate(684 252)">
22
+ <path
23
+ id="Vector"
24
+ d="M5.667,5.933V1.4C5.667.4,5.24,0,4.18,0H1.487C.427,0,0,.4,0,1.4V5.933c0,1,.427,1.4,1.487,1.4H4.18C5.24,7.333,5.667,6.933,5.667,5.933Z"
25
+ transform="translate(9 1.333)"
26
+ fill="none"
27
+ stroke-linecap="round"
28
+ stroke-linejoin="round"
29
+ stroke-width="1.2"
30
+ />
31
+ <path
32
+ id="Vector-2"
33
+ data-name="Vector"
34
+ d="M5.667,2.6V1.4C5.667.4,5.24,0,4.18,0H1.487C.427,0,0,.4,0,1.4V2.6C0,3.6.427,4,1.487,4H4.18C5.24,4,5.667,3.6,5.667,2.6Z"
35
+ transform="translate(9 10.667)"
36
+ fill="none"
37
+ stroke-linecap="round"
38
+ stroke-linejoin="round"
39
+ stroke-width="1.2"
40
+ />
41
+ <path
42
+ id="Vector-3"
43
+ data-name="Vector"
44
+ d="M5.667,1.4V5.933c0,1-.427,1.4-1.487,1.4H1.487C.427,7.333,0,6.933,0,5.933V1.4C0,.4.427,0,1.487,0H4.18C5.24,0,5.667.4,5.667,1.4Z"
45
+ transform="translate(1.333 7.333)"
46
+ fill="none"
47
+ stroke-linecap="round"
48
+ stroke-linejoin="round"
49
+ stroke-width="1.2"
50
+ />
51
+ <path
52
+ id="Vector-4"
53
+ data-name="Vector"
54
+ d="M5.667,1.4V2.6c0,1-.427,1.4-1.487,1.4H1.487C.427,4,0,3.6,0,2.6V1.4C0,.4.427,0,1.487,0H4.18C5.24,0,5.667.4,5.667,1.4Z"
55
+ transform="translate(1.333 1.333)"
56
+ fill="none"
57
+ stroke-linecap="round"
58
+ stroke-linejoin="round"
59
+ stroke-width="1.2"
60
+ />
61
+ <path
62
+ id="Vector-5"
63
+ data-name="Vector"
64
+ d="M0,0H16V16H0Z"
65
+ fill="none"
66
+ opacity="0"
67
+ />
68
+ </g>
69
+ </g>
70
+ </svg>
71
+ );
72
+ };
@@ -21,6 +21,7 @@ import { LocationIcon } from "./IconComponents/LocationIcon";
21
21
  import { LogoutIcon } from "./IconComponents/LogoutIcon";
22
22
  import { NavigationIcon } from "./IconComponents/NavigationIcon";
23
23
  import { NotificationIcon } from "./IconComponents/NotificationIcon";
24
+ import { ProductFeaturesIcon } from "./IconComponents/ProductFeaturesIcon";
24
25
  import { ProfileIcon } from "./IconComponents/ProfileIcon";
25
26
  import { RightIcon } from "./IconComponents/RightIcon";
26
27
  import { TicketsIcon } from "./IconComponents/TicketsIcon";
@@ -54,4 +55,5 @@ export const Icons = {
54
55
  LocationIcon,
55
56
  DeviceIcon,
56
57
  CrossIcon,
58
+ ProductFeaturesIcon,
57
59
  };