@generation/icons 1.0.2 → 1.1.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/assets/map.svg +4 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/packages/demo/package-lock.json +9 -0
- package/packages/demo/package.json +1 -0
- package/packages/demo/src/components/Gallery/Gallery.jsx +2314 -1471
- package/packages/demo/src/components/Gallery/styles.css +1 -2
- package/src/Icons/Map.jsx +15 -0
- package/src/Icons/index.js +1 -1
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
gap: 0.25rem;
|
|
14
14
|
justify-content: center;
|
|
15
15
|
align-items: center;
|
|
16
|
-
color: green;
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
.gallery-item > span {
|
|
@@ -35,5 +34,5 @@
|
|
|
35
34
|
box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
|
|
36
35
|
border: 2px solid transparent;
|
|
37
36
|
width: 100%;
|
|
38
|
-
font-size:
|
|
37
|
+
font-size: 2rem;
|
|
39
38
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Map = (props) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path fill="none" d="M0 0h24v24H0z" />
|
|
12
|
+
<path d="m20.5 3-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5M15 19l-6-2.11V5l6 2.11z" />
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
export default Map;
|
package/src/Icons/index.js
CHANGED
|
@@ -219,6 +219,7 @@ export { default as LogoGoogle } from './LogoGoogle';
|
|
|
219
219
|
export { default as Low } from './Low';
|
|
220
220
|
export { default as MailFill } from './MailFill';
|
|
221
221
|
export { default as MailFillOut } from './MailFillOut';
|
|
222
|
+
export { default as Map } from './Map';
|
|
222
223
|
export { default as Medium } from './Medium';
|
|
223
224
|
export { default as Menu } from './Menu';
|
|
224
225
|
export { default as MessageLeftFill } from './MessageLeftFill';
|
|
@@ -361,4 +362,3 @@ export { default as Waffle } from './Waffle';
|
|
|
361
362
|
export { default as Warning } from './Warning';
|
|
362
363
|
export { default as Work } from './Work';
|
|
363
364
|
export { default as Xa } from './Xa';
|
|
364
|
-
//TEST
|