@loja-integrada/admin-components 0.18.30 → 0.18.31

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": "@loja-integrada/admin-components",
3
- "version": "0.18.30",
3
+ "version": "0.18.31",
4
4
  "author": "Loja Integrada Front-End Team",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -0,0 +1,9 @@
1
+ import React from 'react'
2
+
3
+ export const DotsThree = () => (
4
+ <path
5
+ d="M3.6 9.325a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Zm5.4 0a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Zm5.4 0a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z"
6
+ fillRule="evenodd"
7
+ clipRule="evenodd"
8
+ />
9
+ )
@@ -88,6 +88,7 @@ import { Trophy } from './Trophy'
88
88
  import { DashedCircle } from './DashedCircle'
89
89
  import { MinusCircle } from './MinusCircle'
90
90
  import { MinusCircleSolid } from './MinusCircleSolid'
91
+ import { DotsThree } from './DotsThree'
91
92
 
92
93
  export const icons = {
93
94
  adjust: Adjust,
@@ -181,4 +182,5 @@ export const icons = {
181
182
  dashedCircle: DashedCircle,
182
183
  minusCircle: MinusCircle,
183
184
  minusCircleSolid: MinusCircleSolid,
185
+ dotsThree: DotsThree,
184
186
  }