@moises.ai/design-system 3.6.27 → 3.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moises.ai/design-system",
3
- "version": "3.6.27",
3
+ "version": "3.7.0",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -0,0 +1,28 @@
1
+ export const EmailIcon = ({ width = 20, height = 20, className, ...props }) => (
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width={width}
5
+ height={height}
6
+ viewBox="0 0 20 20"
7
+ fill="none"
8
+ className={className}
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M3.33 3.33h13.34c.92 0 1.66.75 1.66 1.67v10c0 .92-.74 1.67-1.66 1.67H3.33c-.92 0-1.66-.75-1.66-1.67V5c0-.92.74-1.67 1.66-1.67z"
13
+ stroke="currentColor"
14
+ strokeWidth="1.5"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <path
19
+ d="M18.33 5l-8.33 5.83L1.67 5"
20
+ stroke="currentColor"
21
+ strokeWidth="1.5"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </svg>
26
+ )
27
+
28
+ EmailIcon.displayName = 'EmailIcon'
@@ -0,0 +1,30 @@
1
+ export const EyeIcon = ({ width = 16, height = 16, className, ...props }) => (
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width={width}
5
+ height={height}
6
+ viewBox="0 0 16 16"
7
+ fill="none"
8
+ className={className}
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M0.667 8s2.666-5.333 7.333-5.333C12.667 2.667 15.333 8 15.333 8s-2.666 5.333-7.333 5.333C3.333 13.333.667 8 .667 8z"
13
+ stroke="currentColor"
14
+ strokeWidth="1.2"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <circle
19
+ cx="8"
20
+ cy="8"
21
+ r="2"
22
+ stroke="currentColor"
23
+ strokeWidth="1.2"
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ </svg>
28
+ )
29
+
30
+ EyeIcon.displayName = 'EyeIcon'
@@ -0,0 +1,28 @@
1
+ export const EyeOffIcon = ({ width = 16, height = 16, className, ...props }) => (
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width={width}
5
+ height={height}
6
+ viewBox="0 0 16 16"
7
+ fill="none"
8
+ className={className}
9
+ {...props}
10
+ >
11
+ <path
12
+ d="M9.41 9.41a2 2 0 11-2.83-2.83M6.59 2.89A6.5 6.5 0 018 2.67c4.67 0 7.33 5.33 7.33 5.33a12.1 12.1 0 01-1.44 2.18m-3.18 1.64A6.5 6.5 0 018 13.33C3.33 13.33.67 8 .67 8a12.1 12.1 0 013.15-3.81"
13
+ stroke="currentColor"
14
+ strokeWidth="1.2"
15
+ strokeLinecap="round"
16
+ strokeLinejoin="round"
17
+ />
18
+ <path
19
+ d="M.667.667l14.666 14.666"
20
+ stroke="currentColor"
21
+ strokeWidth="1.2"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ </svg>
26
+ )
27
+
28
+ EyeOffIcon.displayName = 'EyeOffIcon'
package/src/icons.jsx CHANGED
@@ -343,3 +343,6 @@ export { GlobeIcon } from './icons/GlobeIcon'
343
343
  export { DotsVertical2Icon } from './icons/DotsVertical2Icon'
344
344
  export { EditIcon } from './icons/EditIcon'
345
345
  export { UnlockIcon } from './icons/UnlockIcon'
346
+ export { EmailIcon } from './icons/EmailIcon'
347
+ export { EyeIcon } from './icons/EyeIcon'
348
+ export { EyeOffIcon } from './icons/EyeOffIcon'