@loja-integrada/admin-components 0.18.23 → 0.18.24
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/dist/Icons/icons-path/EyeSlash.d.ts +2 -0
- package/dist/Icons/icons-path/index.d.ts +1 -0
- package/dist/admin-components.cjs.development.js +101 -5
- package/dist/admin-components.cjs.development.js.map +1 -1
- package/dist/admin-components.cjs.production.min.js +1 -1
- package/dist/admin-components.cjs.production.min.js.map +1 -1
- package/dist/admin-components.esm.js +101 -5
- package/dist/admin-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Icons/icons-path/EyeSlash.tsx +9 -0
- package/src/Icons/icons-path/index.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export const EyeSlash = () => (
|
|
4
|
+
<path
|
|
5
|
+
d="M11.5 6.5c0-1-.5-1.5-1.5-1.5-.226 0-.418.034-.593.085L7.3 2.653C7.84 2.562 8.4 2.5 9 2.5c6 0 9 5 9 6.5 0 .717-.693 2.231-2.063 3.619l-.99-1.141c1.01-1.056 1.512-2.121 1.552-2.478-.069-.617-1.509-3.34-4.595-4.484C12.629 5.198 13 6.164 13 7.25c0 .641-.09 1.197-.266 1.674l-1.425-1.645c.113-.224.191-.476.191-.779ZM1.502 9C1.59 9.786 3.89 14 9 14a8.132 8.132 0 0 0 2.956-.55l-2.214-2.49c-.235.025-.48.04-.742.04-2.667 0-4.001-1.666-4-3.75 0-.486.084-.942.232-1.364l-.571-.642C2.572 6.55 1.56 8.49 1.502 9Zm12.864 4.912-.545-.613-2.476-2.788-5.29-5.951L2.001 0h-2l3.641 4.096C1.223 5.694 0 8.048 0 9c0 1.5 3 6.5 9 6.5a9.662 9.662 0 0 0 4.021-.852L16 18h2l-3.634-4.088Z"
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
/>
|
|
9
|
+
)
|
|
@@ -70,6 +70,7 @@ import { ShoppingCart } from './ShoppingCart'
|
|
|
70
70
|
import { WhatsApp } from './WhatsApp'
|
|
71
71
|
import { IconSolidLI } from './IconSolidLI'
|
|
72
72
|
import { ThinAngleRight } from './ThinAngleRight'
|
|
73
|
+
import { EyeSlash } from './EyeSlash'
|
|
73
74
|
|
|
74
75
|
export const icons = {
|
|
75
76
|
adjust: Adjust,
|
|
@@ -145,4 +146,5 @@ export const icons = {
|
|
|
145
146
|
whatsapp: WhatsApp,
|
|
146
147
|
iconSolidLI: IconSolidLI,
|
|
147
148
|
thinAngleRight: ThinAngleRight,
|
|
149
|
+
eyeSlash: EyeSlash,
|
|
148
150
|
}
|