@loja-integrada/admin-components 0.19.5 → 0.19.7
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/Instagram.d.ts +2 -0
- package/dist/Icons/icons-path/Table.d.ts +2 -0
- package/dist/Icons/icons-path/index.d.ts +2 -0
- package/dist/admin-components.cjs.development.js +199 -7
- 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 +199 -7
- package/dist/admin-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Icons/icons-path/Instagram.tsx +9 -0
- package/src/Icons/icons-path/Table.tsx +9 -0
- package/src/Icons/icons-path/index.ts +4 -0
package/package.json
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export const Instagram = () => (
|
|
4
|
+
<path
|
|
5
|
+
fillRule="evenodd"
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
d="M8.00153 3.8984C5.73131 3.8984 3.90019 5.7304 3.90019 7.99974C3.90019 10.27 5.73131 12.102 8.00153 12.102C10.2718 12.102 12.1029 10.27 12.1029 7.99974C12.1029 5.7304 10.2718 3.8984 8.00153 3.8984ZM8.00153 10.6664C6.53486 10.6664 5.33486 9.47085 5.33486 7.99974C5.33486 6.52951 6.53131 5.33307 8.00153 5.33307C9.47175 5.33307 10.6682 6.52951 10.6682 7.99974C10.6682 9.47085 9.46819 10.6664 8.00153 10.6664ZM13.2273 3.73129C13.2273 4.26285 12.7989 4.68774 12.2709 4.68774C11.7384 4.68774 11.3144 4.25929 11.3144 3.73129C11.3144 3.20329 11.742 2.77396 12.2709 2.77396C12.7989 2.77396 13.2273 3.20329 13.2273 3.73129ZM15.9438 4.70217C15.8824 3.4204 15.59 2.28618 14.6513 1.35018C13.7162 0.415064 12.5811 0.12262 11.3002 0.0586198C9.97933 -0.0169358 6.02022 -0.0169358 4.70022 0.0586198C3.422 0.119064 2.28689 0.411509 1.34822 1.34662C0.409555 2.28262 0.120667 3.41684 0.0566667 4.69773C-0.0188889 6.01951 -0.0188889 9.97773 0.0566667 11.2986C0.116222 12.5804 0.409555 13.7146 1.34822 14.6506C2.28689 15.5848 3.41844 15.8782 4.70022 15.9422C6.02022 16.0177 9.97933 16.0177 11.3002 15.9422C12.5811 15.8808 13.7162 15.5884 14.6513 14.6506C15.5864 13.7146 15.8789 12.5804 15.9438 11.2986C16.0193 9.97773 16.0193 6.02306 15.9438 4.70217ZM14.238 12.7153C13.9589 13.4148 13.4202 13.9544 12.7171 14.2362C11.6637 14.654 9.16597 14.5571 8.00153 14.5571C6.83797 14.5571 4.33575 14.6504 3.28597 14.2362C2.58642 13.9571 2.04775 13.4184 1.76597 12.7153C1.34819 11.662 1.44508 9.16418 1.44508 7.99974C1.44508 6.83707 1.35175 4.33396 1.76597 3.28507C2.04419 2.58463 2.58286 2.04596 3.28597 1.76418C4.33931 1.3464 6.83797 1.4424 8.00153 1.4424C9.16597 1.4424 11.6673 1.34996 12.7171 1.76418C13.4166 2.0424 13.9553 2.58196 14.238 3.28507C14.6549 4.33751 14.5589 6.83707 14.5589 7.99974C14.5589 9.16418 14.6549 11.6655 14.238 12.7153Z"
|
|
8
|
+
/>
|
|
9
|
+
)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export const Table = () => (
|
|
4
|
+
<path
|
|
5
|
+
fillRule="evenodd"
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
d="M16 15.5H9.75V9.75h6.75V15c0 .275-.225.5-.5.5Zm-14 0a.501.501 0 0 1-.5-.5V9.75h6.75v5.75H2Zm0-13h6.25v5.75H1.5V3c0-.275.225-.5.5-.5Zm14 0c.275 0 .5.225.5.5v5.25H9.75V2.5H16ZM16 1H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2Z"
|
|
8
|
+
/>
|
|
9
|
+
)
|
|
@@ -67,6 +67,7 @@ import { Search } from './Search'
|
|
|
67
67
|
import { ShoppingCart } from './ShoppingCart'
|
|
68
68
|
import { SortDown } from './SortDown'
|
|
69
69
|
import { Sync } from './Sync'
|
|
70
|
+
import { Table } from './Table'
|
|
70
71
|
import { ThinAngleRight } from './ThinAngleRight'
|
|
71
72
|
import { TimesCircle } from './TimesCircle'
|
|
72
73
|
import { Trash } from './Trash'
|
|
@@ -89,6 +90,7 @@ import { DashedCircle } from './DashedCircle'
|
|
|
89
90
|
import { MinusCircle } from './MinusCircle'
|
|
90
91
|
import { MinusCircleSolid } from './MinusCircleSolid'
|
|
91
92
|
import { DotsThree } from './DotsThree'
|
|
93
|
+
import { Instagram } from './Instagram'
|
|
92
94
|
|
|
93
95
|
export const icons = {
|
|
94
96
|
adjust: Adjust,
|
|
@@ -160,6 +162,7 @@ export const icons = {
|
|
|
160
162
|
shoppingCart: ShoppingCart,
|
|
161
163
|
sortDown: SortDown,
|
|
162
164
|
sync: Sync,
|
|
165
|
+
table: Table,
|
|
163
166
|
thinAngleRight: ThinAngleRight,
|
|
164
167
|
times: Close,
|
|
165
168
|
timesCircle: TimesCircle,
|
|
@@ -183,4 +186,5 @@ export const icons = {
|
|
|
183
186
|
minusCircle: MinusCircle,
|
|
184
187
|
minusCircleSolid: MinusCircleSolid,
|
|
185
188
|
dotsThree: DotsThree,
|
|
189
|
+
instagram: Instagram,
|
|
186
190
|
}
|