@mtes-mct/monitor-ui 1.11.0 → 1.12.1
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/CHANGELOG.md +20 -0
- package/icons/Anchor.d.ts +2 -0
- package/icons/Drapeau.d.ts +2 -0
- package/icons/EditBis.d.ts +2 -0
- package/icons/MapLayers.d.ts +2 -0
- package/icons/Note.d.ts +2 -0
- package/icons/Plane.d.ts +2 -0
- package/icons/SelectCircle.d.ts +2 -0
- package/icons/Unlock.d.ts +2 -0
- package/icons/index.d.ts +9 -1
- package/index.js +41 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [1.12.0](https://github.com/MTES-MCT/monitor-ui/compare/v1.11.0...v1.12.0) (2022-12-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **icons:** update ([#117](https://github.com/MTES-MCT/monitor-ui/issues/117)) ([a242cc9](https://github.com/MTES-MCT/monitor-ui/commit/a242cc9a80b2eb5335cc1c466a28398df85ebed7))
|
|
7
|
+
|
|
8
|
+
# [1.11.0](https://github.com/MTES-MCT/monitor-ui/compare/v1.10.2...v1.11.0) (2022-12-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **elements:** make tertiary IconButton background transparent ([#107](https://github.com/MTES-MCT/monitor-ui/issues/107)) ([1986423](https://github.com/MTES-MCT/monitor-ui/commit/19864235d5a3ba17c466210df8ab654e70e30344))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **elements:** add color prop to IconButton ([#108](https://github.com/MTES-MCT/monitor-ui/issues/108)) ([2b1eede](https://github.com/MTES-MCT/monitor-ui/commit/2b1eedee72eaa23a7ce93ae73e172a225557c2fe))
|
|
19
|
+
* **fields:** add isLight prop in MultiSelect, Select, Textarea, TextInput ([#106](https://github.com/MTES-MCT/monitor-ui/issues/106)) ([9484cb6](https://github.com/MTES-MCT/monitor-ui/commit/9484cb6581ae6c1a297e030a7ac0e9c142470f98))
|
|
20
|
+
|
|
1
21
|
## [1.10.2](https://github.com/MTES-MCT/monitor-ui/compare/v1.10.1...v1.10.2) (2022-12-06)
|
|
2
22
|
|
|
3
23
|
|
package/icons/Note.d.ts
ADDED
package/icons/Plane.d.ts
ADDED
package/icons/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ActivityFeed } from './ActivityFeed';
|
|
2
2
|
import { Alert } from './Alert';
|
|
3
|
+
import { Anchor } from './Anchor';
|
|
3
4
|
import { Archive } from './Archive';
|
|
4
5
|
import { Attention } from './Attention';
|
|
5
6
|
import { Calendar } from './Calendar';
|
|
@@ -13,8 +14,10 @@ import { Delete } from './Delete';
|
|
|
13
14
|
import { Display } from './Display';
|
|
14
15
|
import { DoubleChevron } from './DoubleChevron';
|
|
15
16
|
import { Download } from './Download';
|
|
17
|
+
import { Drapeau } from './Drapeau';
|
|
16
18
|
import { Duplicate } from './Duplicate';
|
|
17
19
|
import { Edit } from './Edit';
|
|
20
|
+
import { EditBis } from './EditBis';
|
|
18
21
|
import { Favorite } from './Favorite';
|
|
19
22
|
import { FilledArrow } from './FilledArrow';
|
|
20
23
|
import { Filter } from './Filter';
|
|
@@ -29,20 +32,24 @@ import { Info } from './Info';
|
|
|
29
32
|
import { Infringement } from './Infringement';
|
|
30
33
|
import { Landmark } from './Landmark';
|
|
31
34
|
import { List } from './List';
|
|
35
|
+
import { MapLayers } from './MapLayers';
|
|
32
36
|
import { MeasureAngle } from './MeasureAngle';
|
|
33
37
|
import { MeasureBrokenLine } from './MeasureBrokenLine';
|
|
34
38
|
import { MeasureCircle } from './MeasureCircle';
|
|
35
39
|
import { MeasureLine } from './MeasureLine';
|
|
36
40
|
import { Minus } from './Minus';
|
|
37
41
|
import { More } from './More';
|
|
42
|
+
import { Note } from './Note';
|
|
38
43
|
import { Observation } from './Observation';
|
|
39
44
|
import { Pin } from './Pin';
|
|
40
45
|
import { Pinpoint } from './Pinpoint';
|
|
41
46
|
import { PinpointHide } from './PinpointHide';
|
|
47
|
+
import { Plane } from './Plane';
|
|
42
48
|
import { Plus } from './Plus';
|
|
43
49
|
import { Reject } from './Reject';
|
|
44
50
|
import { Save } from './Save';
|
|
45
51
|
import { Search } from './Search';
|
|
52
|
+
import { SelectCircle } from './SelectCircle';
|
|
46
53
|
import { SelectPolygon } from './SelectPolygon';
|
|
47
54
|
import { SelectRectangle } from './SelectRectangle';
|
|
48
55
|
import { SelectZone } from './SelectZone';
|
|
@@ -51,6 +58,7 @@ import { ShowXml } from './ShowXml';
|
|
|
51
58
|
import { SortingArrows } from './SortingArrows';
|
|
52
59
|
import { Summary } from './Summary';
|
|
53
60
|
import { Tag } from './Tag';
|
|
61
|
+
import { Unlock } from './Unlock';
|
|
54
62
|
import { Vessel } from './Vessel';
|
|
55
63
|
import { ViewOnMap } from './ViewOnMap';
|
|
56
|
-
export { ActivityFeed, Alert, Archive, Attention, Calendar, Check, Chevron, Clock, Close, Confirm, Control, Delete, Display, DoubleChevron, Download, Duplicate, Edit, Favorite, FilledArrow, Filter, Fishery, FishingEngine, FleetSegment, Focus, FocusVessel, FocusZones, Hide, Info, Infringement, Landmark, List, MeasureAngle, MeasureBrokenLine, MeasureCircle, MeasureLine, Minus, More, Observation, Pin, Pinpoint, PinpointHide, Plus, Reject, Save, Search, SelectPolygon, SelectRectangle, SelectZone, ShowErsMessages, ShowXml, SortingArrows, Summary, Tag, Vessel, ViewOnMap };
|
|
64
|
+
export { ActivityFeed, Alert, Anchor, Archive, Attention, Calendar, Check, Chevron, Clock, Close, Confirm, Control, Delete, Display, DoubleChevron, Download, Drapeau, Duplicate, Edit, EditBis, Favorite, FilledArrow, Filter, Fishery, FishingEngine, FleetSegment, Focus, FocusVessel, FocusZones, Hide, Info, Infringement, Landmark, List, MapLayers, MeasureAngle, MeasureBrokenLine, MeasureCircle, MeasureLine, Minus, More, Note, Observation, Pin, Pinpoint, PinpointHide, Plane, Plus, Reject, Save, Search, SelectCircle, SelectPolygon, SelectRectangle, SelectZone, ShowErsMessages, ShowXml, SortingArrows, Summary, Tag, Unlock, Vessel, ViewOnMap };
|
package/index.js
CHANGED
|
@@ -3813,6 +3813,10 @@ function Alert({ color, size, ...nativeProps }) {
|
|
|
3813
3813
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Alert", transform: "translate(-220 -208)", children: [jsx("path", { d: "M295,13V8a5,5,0,0,0-4-4.9V1h-2V3.1A5,5,0,0,0,285,8v5l-2,2v2h4.5a2.5,2.5,0,0,0,5,0H297V15Zm-5,5a1,1,0,0,1-1-1h2A1,1,0,0,1,290,18Zm1.486-3H285l2-2V8a3,3,0,0,1,6,0v5l2,2Z", "data-name": "Trac\u00E9 1348", fill: "currentColor", id: "Trac\u00E9_1348", transform: "translate(-60 208)" }), jsx("rect", { "data-name": "Rectangle 6090", fill: "none", height: "20", id: "Rectangle_6090", transform: "translate(220 208)", width: "20" })] }) }) }));
|
|
3814
3814
|
}
|
|
3815
3815
|
|
|
3816
|
+
function Anchor({ color, size, ...nativeProps }) {
|
|
3817
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Anchor", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("rect", { "data-name": "Rectangle 6300", fill: "none", height: "20", id: "Rectangle_6300", width: "20" }), jsx("path", { d: "M14.6,12.7l1.395,1.4A7.258,7.258,0,0,1,11,17.128V10h3V8H11V6.816a3,3,0,1,0-2,0V8H6v2H9v7.087A7.2,7.2,0,0,1,4.2,14.1L5.6,12.7,2,10v2.7C2,16.192,6.428,19,10.1,19s8.1-2.808,8.1-6.3V10ZM10,3A1,1,0,1,1,9,4,1,1,0,0,1,10,3Z", "data-name": "Trac\u00E9 1464", fill: "currentColor", id: "Trac\u00E9_1464" })] }) }));
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3816
3820
|
function Archive({ color, size, ...nativeProps }) {
|
|
3817
3821
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Archive", transform: "translate(-120)", children: [jsx("path", { d: "M138,2H122V8h1V18h14V8h1ZM124,4h12V6H124Zm11,12H125V8h10Z", "data-name": "Trac\u00E9 1343", fill: "currentColor", id: "Trac\u00E9_1343" }), jsxs("g", { "data-name": "Rectangle 6082", fill: "none", id: "Rectangle_6082", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(128 10)", children: [jsx("rect", { height: "2", stroke: "none", width: "4" }), jsx("rect", { fill: "none", width: "2", x: "1", y: "1" })] }), jsx("rect", { "data-name": "Rectangle 6083", fill: "none", height: "20", id: "Rectangle_6083", transform: "translate(120)", width: "20" })] }) }) }));
|
|
3818
3822
|
}
|
|
@@ -3865,6 +3869,10 @@ function Download({ color, size, ...nativeProps }) {
|
|
|
3865
3869
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Download", transform: "translate(-80)", children: [jsxs("g", { "data-name": "Groupe 4130", id: "Groupe_4130", children: [jsx("rect", { "data-name": "Rectangle 6096", fill: "currentColor", height: "2", id: "Rectangle_6096", transform: "translate(84 16)", width: "12" }), jsx("path", { d: "M93,9V2H87V9H84l6,6,6-6Z", "data-name": "Trac\u00E9 1356", fill: "currentColor", id: "Trac\u00E9_1356" })] }), jsx("rect", { "data-name": "Rectangle 6097", fill: "none", height: "20", id: "Rectangle_6097", transform: "translate(80)", width: "20" })] }) }) }));
|
|
3866
3870
|
}
|
|
3867
3871
|
|
|
3872
|
+
function Drapeau({ color, size, ...nativeProps }) {
|
|
3873
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Drapeau", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("rect", { "data-name": "Rectangle 6296", fill: "#000091", height: "12", id: "Rectangle_6296", transform: "translate(1 4)", width: "6" }), jsx("rect", { "data-name": "Rectangle 6297", fill: "#e1000f", height: "12", id: "Rectangle_6297", transform: "translate(13 4)", width: "6" }), jsx("rect", { "data-name": "Rectangle 6298", fill: "#fff", height: "12", id: "Rectangle_6298", transform: "translate(7 4)", width: "6" }), jsx("rect", { "data-name": "Rectangle 6299", fill: "none", height: "20", id: "Rectangle_6299", width: "20" }), jsx("path", { d: "M19,4V16H1V4H19m1-1H0V17H20V3Z", "data-name": "Trac\u00E9 1463", fill: "#e5e5eb", id: "Trac\u00E9_1463" })] }) }));
|
|
3874
|
+
}
|
|
3875
|
+
|
|
3868
3876
|
function Duplicate({ color, size, ...nativeProps }) {
|
|
3869
3877
|
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Duplicate", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M6,2V5H3V18H14V15h3V2Zm6,14H5V7h7Zm3-3H14V5H8V4h7Z", "data-name": "Trac\u00E9 1373", fill: "currentColor", id: "Trac\u00E9_1373" }), jsx("rect", { "data-name": "Rectangle 6119", fill: "none", height: "20", id: "Rectangle_6119", width: "20" })] }) }));
|
|
3870
3878
|
}
|
|
@@ -3873,6 +3881,10 @@ function Edit({ color, size, ...nativeProps }) {
|
|
|
3873
3881
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Edit", transform: "translate(-80)", children: [jsx("path", { d: "M86,11.5V14h2.5l7.372-7.372-2.5-2.5ZM97.805,4.7a.664.664,0,0,0,0-.94l-1.56-1.56a.664.664,0,0,0-.94,0l-1.219,1.22,2.5,2.5Z", "data-name": "Trac\u00E9 1341", fill: "currentColor", id: "Trac\u00E9_1341" }), jsx("path", { d: "M95,9v7H84V5h7V3H82V18H97V9Z", "data-name": "Trac\u00E9 1342", fill: "currentColor", id: "Trac\u00E9_1342" }), jsx("rect", { "data-name": "Rectangle 6081", fill: "none", height: "20", id: "Rectangle_6081", transform: "translate(80)", width: "20" })] }) }) }));
|
|
3874
3882
|
}
|
|
3875
3883
|
|
|
3884
|
+
function EditBis({ color, size, ...nativeProps }) {
|
|
3885
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Edit", transform: "translate(-80)", children: [jsx("path", { d: "M86,11.5V14h2.5l7.372-7.372-2.5-2.5ZM97.805,4.7a.664.664,0,0,0,0-.94l-1.56-1.56a.664.664,0,0,0-.94,0l-1.219,1.22,2.5,2.5Z", "data-name": "Trac\u00E9 1341", fill: "currentColor", id: "Trac\u00E9_1341" }), jsx("path", { d: "M95,9v7H84V5h7V3H82V18H97V9Z", "data-name": "Trac\u00E9 1342", fill: "currentColor", id: "Trac\u00E9_1342" }), jsx("rect", { "data-name": "Rectangle 6081", fill: "none", height: "20", id: "Rectangle_6081", transform: "translate(80)", width: "20" })] }) }) }));
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3876
3888
|
function Favorite({ color, size, ...nativeProps }) {
|
|
3877
3889
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Favorite", transform: "translate(-300 -208)", children: [jsx("path", { d: "M370,5.015l1.763,3.568,3.936.571-2.848,2.773.673,3.919L370,13.995l-3.524,1.851.673-3.919L364.3,9.154l3.936-.571L370,5.015M370,.5l-3.09,6.254-6.91,1,5,4.869L363.82,19.5,370,16.254l6.18,3.246L375,12.626l5-4.869-6.91-1L370,.5Z", "data-name": "Trac\u00E9 1347", fill: "currentColor", id: "Trac\u00E9_1347", transform: "translate(-60 208)" }), jsx("rect", { "data-name": "Rectangle 6092", fill: "none", height: "20", id: "Rectangle_6092", transform: "translate(300 208)", width: "20" })] }) }) }));
|
|
3878
3890
|
}
|
|
@@ -3929,6 +3941,10 @@ function List({ color, size, ...nativeProps }) {
|
|
|
3929
3941
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "List", transform: "translate(160 -41)", children: [jsxs("g", { "data-name": "Groupe 4142", id: "Groupe_4142", children: [jsxs("g", { "data-name": "Rectangle 6107", fill: "none", id: "Rectangle_6107", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-142 45) rotate(90)", children: [jsx("rect", { height: "12", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "10", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6108", fill: "none", id: "Rectangle_6108", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-142 50) rotate(90)", children: [jsx("rect", { height: "12", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "10", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6109", fill: "none", id: "Rectangle_6109", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-142 55) rotate(90)", children: [jsx("rect", { height: "12", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "10", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Ellipse 754", fill: "none", id: "Ellipse_754", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-158 44.5)", children: [jsx("circle", { cx: "1.5", cy: "1.5", r: "1.5", stroke: "none" }), jsx("circle", { cx: "1.5", cy: "1.5", fill: "none", r: "0.5" })] }), jsxs("g", { "data-name": "Ellipse 755", fill: "none", id: "Ellipse_755", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-158 49.5)", children: [jsx("circle", { cx: "1.5", cy: "1.5", r: "1.5", stroke: "none" }), jsx("circle", { cx: "1.5", cy: "1.5", fill: "none", r: "0.5" })] }), jsxs("g", { "data-name": "Ellipse 756", fill: "none", id: "Ellipse_756", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-158 54.5)", children: [jsx("circle", { cx: "1.5", cy: "1.5", r: "1.5", stroke: "none" }), jsx("circle", { cx: "1.5", cy: "1.5", fill: "none", r: "0.5" })] })] }), jsx("rect", { "data-name": "Rectangle 6110", fill: "none", height: "20", id: "Rectangle_6110", transform: "translate(-160 41)", width: "20" })] }) }) }));
|
|
3930
3942
|
}
|
|
3931
3943
|
|
|
3944
|
+
function MapLayers({ color, size, ...nativeProps }) {
|
|
3945
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { "data-name": "Map layers", height: "20", id: "Map_layers", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("rect", { "data-name": "Rectangle 6180", fill: "none", height: "20", id: "Rectangle_6180", width: "20" }), jsxs("g", { "data-name": "Groupe 4214", id: "Groupe_4214", children: [jsx("path", { d: "M10,2.332,16.113,6,10,9.668,3.887,6,10,2.332M10,0,0,6l10,6L20,6,10,0Z", "data-name": "Trac\u00E9 1445", fill: "currentColor", id: "Trac\u00E9_1445" }), jsx("path", { d: "M1.913,8.815,0,10l10,6,10-6L18.056,8.834,10,13.668Z", "data-name": "Trac\u00E9 1446", fill: "currentColor", id: "Trac\u00E9_1446" }), jsx("path", { d: "M1.913,12.815,0,14l10,6,10-6-1.944-1.166L10,17.668Z", "data-name": "Trac\u00E9 1447", fill: "currentColor", id: "Trac\u00E9_1447" })] })] }) }));
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3932
3948
|
function MeasureAngle({ color, size, ...nativeProps }) {
|
|
3933
3949
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Measure_angle", transform: "translate(200 -82)", children: [jsxs("g", { "data-name": "Groupe 4191", id: "Groupe_4191", children: [jsx("path", { d: "M-183.361,98a14.79,14.79,0,0,0-.559-2.434l-1.9.618A12.726,12.726,0,0,1-185.394,98H-196V87.514a12.554,12.554,0,0,1,2.139.507l.649-1.893A14.771,14.771,0,0,0-196,85.471V84h-2v16h16V98Z", "data-name": "Trac\u00E9 1418", fill: "currentColor", id: "Trac\u00E9_1418" }), jsx("path", { d: "M-186.509,94.491l1.795-.883a14.792,14.792,0,0,0-2.029-3.081l-1.52,1.3A12.726,12.726,0,0,1-186.509,94.491Z", "data-name": "Trac\u00E9 1419", fill: "currentColor", id: "Trac\u00E9_1419" }), jsx("path", { d: "M-188.223,89.024a14.915,14.915,0,0,0-3.048-2.073l-.911,1.781a12.857,12.857,0,0,1,2.638,1.794Z", "data-name": "Trac\u00E9 1420", fill: "currentColor", id: "Trac\u00E9_1420" })] }), jsx("rect", { "data-name": "Rectangle 6165", fill: "none", height: "20", id: "Rectangle_6165", transform: "translate(-200 82)", width: "20" })] }) }) }));
|
|
3934
3950
|
}
|
|
@@ -3946,13 +3962,17 @@ function MeasureLine({ color, size, ...nativeProps }) {
|
|
|
3946
3962
|
}
|
|
3947
3963
|
|
|
3948
3964
|
function Minus({ color, size, ...nativeProps }) {
|
|
3949
|
-
return (jsx(IconBox, { "$size": size, color: color, children:
|
|
3965
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Minus", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("rect", { "data-name": "Rectangle 6131", fill: "currentColor", height: "14", id: "Rectangle_6131", transform: "translate(3 11) rotate(-90)", width: "2" }), jsx("rect", { "data-name": "Rectangle 6132", fill: "none", height: "20", id: "Rectangle_6132", width: "20" })] }) }));
|
|
3950
3966
|
}
|
|
3951
3967
|
|
|
3952
3968
|
function More({ color, size, ...nativeProps }) {
|
|
3953
3969
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "More", transform: "translate(240 -41)", children: [jsxs("g", { "data-name": "Groupe 4169", id: "Groupe_4169", children: [jsx("circle", { cx: "2", cy: "2", "data-name": "Ellipse 215", fill: "currentColor", id: "Ellipse_215", r: "2", transform: "translate(-232 49)" }), jsx("circle", { cx: "2", cy: "2", "data-name": "Ellipse 743", fill: "currentColor", id: "Ellipse_743", r: "2", transform: "translate(-239 49)" }), jsx("circle", { cx: "2", cy: "2", "data-name": "Ellipse 744", fill: "currentColor", id: "Ellipse_744", r: "2", transform: "translate(-225 49)" })] }), jsx("rect", { "data-name": "Rectangle 6139", fill: "none", height: "20", id: "Rectangle_6139", transform: "translate(-240 41)", width: "20" })] }) }) }));
|
|
3954
3970
|
}
|
|
3955
3971
|
|
|
3972
|
+
function Note({ color, size, ...nativeProps }) {
|
|
3973
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Note", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M2,2V18H12l6-6V2ZM4,16V4H16v6H10v6Zm8-.828V12h3.172Z", "data-name": "Trac\u00E9 1466", fill: "currentColor", id: "Trac\u00E9_1466" }), jsx("rect", { "data-name": "Rectangle 6312", fill: "none", height: "20", id: "Rectangle_6312", width: "20" })] }) }));
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3956
3976
|
function Observation({ color, size, ...nativeProps }) {
|
|
3957
3977
|
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Observation", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("rect", { "data-name": "Rectangle 6173", fill: "none", height: "20", id: "Rectangle_6173", width: "20" }), jsxs("g", { "data-name": "Trac\u00E9 1427", fill: "currentColor", id: "Trac\u00E9_1427", strokeMiterlimit: "10", children: [jsx("path", { d: "M 15.5 17 C 13.57009029388428 17 12 15.42990970611572 12 13.5 L 12 12.11200046539307 L 12 11.31332969665527 L 11.22109985351563 11.13675022125244 C 10.82866764068604 11.0477819442749 10.42606067657471 11.0018138885498 10.02403163909912 11.0000524520874 C 10.30024242401123 11.00124073028564 10.57746124267578 11.0228853225708 10.8484001159668 11.06443977355957 L 12 11.24106979370117 L 12 10.07600021362305 L 12 9.093000411987305 L 12 8.244170188903809 L 11.16244983673096 8.106280326843262 C 10.85622978210449 8.055870056152344 10.44736003875732 7.998000144958496 10 7.998000144958496 C 9.552639961242676 7.998000144958496 9.143770217895508 8.055870056152344 8.837550163269043 8.106280326843262 L 8 8.244170188903809 L 8 9.093000411987305 L 8 10.07699966430664 L 8 11.2455997467041 L 9.154560089111328 11.06497955322266 C 9.42243480682373 11.02307319641113 9.698649406433105 11.00124740600586 9.975924491882324 11.0000524520874 C 9.573919296264648 11.0018196105957 9.171308517456055 11.0477876663208 8.778900146484375 11.13675022125244 L 8 11.31332969665527 L 8 12.11200046539307 L 8 13.5 C 8 15.42990970611572 6.429910182952881 17 4.5 17 C 2.570090055465698 17 1 15.42990970611572 1 13.5 C 1 13.03215980529785 1.091449975967407 12.57750988006592 1.27180004119873 12.1486701965332 L 1.28702437877655 12.11246967315674 L 5.101890087127686 3.952510118484497 L 5.178922653198242 3.78773832321167 C 5.439716339111328 3.304912328720093 5.943906784057617 3 6.5 3 C 7.327099800109863 3 8 3.672899961471558 8 4.5 L 8 5.061999797821045 L 8 6.183760166168213 L 9.114399909973145 6.055439949035645 C 9.454680442810059 6.016250133514404 9.736089706420898 5.998000144958496 10 5.998000144958496 C 10.26076984405518 5.998000144958496 10.54312038421631 6.016039848327637 10.88858032226563 6.054769992828369 L 12 6.179389953613281 L 12 5.060999870300293 L 12 4.5 C 12 3.672899961471558 12.67290019989014 3 13.5 3 C 14.06018733978271 3 14.56766128540039 3.309339284896851 14.82675552368164 3.798352241516113 L 14.89809036254883 3.952470064163208 L 18.64599990844727 11.97018814086914 L 18.64599990844727 11.98406982421875 L 18.72974967956543 12.15236186981201 C 18.90907287597656 12.58011913299561 19 13.03350162506104 19 13.5 C 19 15.42990970611572 17.42991065979004 17 15.5 17 Z M 15.5 10.25 C 13.70794010162354 10.25 12.25 11.70794010162354 12.25 13.5 C 12.25 15.29205989837646 13.70794010162354 16.75 15.5 16.75 C 17.29206085205078 16.75 18.75 15.29205989837646 18.75 13.5 C 18.75 11.70794010162354 17.29206085205078 10.25 15.5 10.25 Z M 4.5 10.25 C 2.707940101623535 10.25 1.25 11.70794010162354 1.25 13.5 C 1.25 15.29205989837646 2.707940101623535 16.75 4.5 16.75 C 6.292059898376465 16.75 7.75 15.29205989837646 7.75 13.5 C 7.75 11.70794010162354 6.292059898376465 10.25 4.5 10.25 Z", stroke: "none" }), jsx("path", { d: "M 13 10.06495571136475 C 13.70204067230225 9.552577972412109 14.56627750396729 9.25 15.5 9.25 C 15.77562522888184 9.25 16.04530715942383 9.276392936706543 16.30645370483398 9.326748847961426 L 13.9340877532959 4.251050472259521 C 13.86002540588379 4.125204086303711 13.71336269378662 4 13.5 4 C 13.22430038452148 4 13 4.224299907684326 13 4.5 L 13 7.297770023345947 L 11.10828113555908 7.085675716400146 C 11.18476295471191 7.096925735473633 11.25709533691406 7.108408451080322 11.32489013671875 7.119569778442383 L 13 7.395349979400635 L 13 10.06495571136475 M 7 10.06495571136475 L 7 7.395349979400635 L 8.67510986328125 7.119569778442383 C 8.725531578063965 7.111268520355225 8.778477668762207 7.102787971496582 8.833767890930176 7.094357490539551 L 7 7.305520057678223 L 7 4.5 C 7 4.224299907684326 6.775700092315674 4 6.5 4 C 6.287984848022461 4 6.141829490661621 4.123627662658691 6.067324161529541 4.248665809631348 L 3.69323992729187 9.326807975769043 C 3.954513072967529 9.276401519775391 4.224231719970703 9.25 4.5 9.25 C 5.433722496032715 9.25 6.297959804534912 9.552577972412109 7 10.06495571136475 M 15.5 18 C 13.01500034332275 18 11 15.98499965667725 11 13.5 L 11 12.11200046539307 C 10.67800045013428 12.03899955749512 10.3430004119873 12 10 12 C 9.656000137329102 12 9.321999549865723 12.03899955749512 9 12.11200046539307 L 9 13.5 C 9 15.98499965667725 6.985000133514404 18 4.5 18 C 2.015000104904175 18 0 15.98499965667725 0 13.5 C 0 12.88300037384033 0.125 12.29599952697754 0.3499999940395355 11.76099967956543 L 0.3479999899864197 11.76099967956543 L 0.3540000021457672 11.74699974060059 L 4.196000099182129 3.526999950408936 C 4.576000213623047 2.630000114440918 5.464000225067139 2 6.5 2 C 7.88100004196167 2 9 3.11899995803833 9 4.5 L 9 5.061999797821045 C 9.329999923706055 5.02400016784668 9.661999702453613 4.998000144958496 10 4.998000144958496 C 10.33800029754639 4.998000144958496 10.67000007629395 5.02400016784668 11 5.060999870300293 L 11 4.5 C 11 3.11899995803833 12.11900043487549 2 13.5 2 C 14.53600025177002 2 15.42399978637695 2.630000114440918 15.80399990081787 3.526999950408936 L 15.80399990081787 3.529000043869019 L 19.65200042724609 11.76099967956543 L 19.64999961853027 11.76099967956543 C 19.875 12.29599952697754 20 12.88300037384033 20 13.5 C 20 15.98499965667725 17.98500061035156 18 15.5 18 Z M 15.5 11.25 C 14.25899982452393 11.25 13.25 12.25899982452393 13.25 13.5 C 13.25 14.74100017547607 14.25899982452393 15.75 15.5 15.75 C 16.74099922180176 15.75 17.75 14.74100017547607 17.75 13.5 C 17.75 12.25899982452393 16.74099922180176 11.25 15.5 11.25 Z M 4.5 11.25 C 3.259000062942505 11.25 2.25 12.25899982452393 2.25 13.5 C 2.25 14.74100017547607 3.259000062942505 15.75 4.5 15.75 C 5.741000175476074 15.75 6.75 14.74100017547607 6.75 13.5 C 6.75 12.25899982452393 5.741000175476074 11.25 4.5 11.25 Z M 10 8.998000144958496 C 9.659999847412109 8.998000144958496 9.328000068664551 9.038999557495117 9 9.093000411987305 L 9 10.07699966430664 C 9.326000213623047 10.02600002288818 9.659999847412109 10 10 10 C 10.34000015258789 10 10.67399978637695 10.02600002288818 11 10.07600021362305 L 11 9.093000411987305 C 10.67199993133545 9.038999557495117 10.34000015258789 8.998000144958496 10 8.998000144958496 Z", fill: "currentColor", stroke: "none" })] })] }) }));
|
|
3958
3978
|
}
|
|
@@ -3969,6 +3989,10 @@ function PinpointHide({ color, size, ...nativeProps }) {
|
|
|
3969
3989
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Pinpoint_hide", transform: "translate(-8.128 -10.447)", children: [jsx("rect", { "data-name": "Rectangle 6100", fill: "none", height: "20", id: "Rectangle_6100", transform: "translate(8.128 10.447)", width: "20" }), jsx("path", { d: "M24.88,13.109l-1.415-1.414L21.6,13.56a5.976,5.976,0,0,0-9.416,5.663c.016.136.038.27.061.405l.012.056a9.7,9.7,0,0,0,.811,2.408l-2.139,2.14,1.414,1.414L14.1,23.893a23.842,23.842,0,0,0,4.032,4.554S23.163,24.239,24,19.684l.011-.056c.024-.135.046-.269.062-.405a5.87,5.87,0,0,0-1.057-4.249Zm-9.752,5.338a2.982,2.982,0,0,1,4.286-2.7l-3.986,3.986A2.969,2.969,0,0,1,15.128,18.447Zm6,0a3,3,0,0,1-3,3,2.965,2.965,0,0,1-1.286-.3l3.986-3.986A2.983,2.983,0,0,1,21.128,18.447Z", "data-name": "Trac\u00E9 1360", fill: "currentColor", id: "Trac\u00E9_1360" })] }) }) }));
|
|
3970
3990
|
}
|
|
3971
3991
|
|
|
3992
|
+
function Plane({ color, size, ...nativeProps }) {
|
|
3993
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Plane", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M18.5,13.6V11.8L11.342,7.3V2.35a1.342,1.342,0,1,0-2.684,0V7.3L1.5,11.8v1.8l7.158-2.25V16.3l-1.79,1.35V19L10,18.1l3.132.9V17.65l-1.79-1.35V11.35Z", "data-name": "Trac\u00E9 1465", fill: "currentColor", id: "Trac\u00E9_1465" }), jsx("rect", { "data-name": "Rectangle 6301", fill: "none", height: "20", id: "Rectangle_6301", width: "20" })] }) }));
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3972
3996
|
function Plus({ color, size, ...nativeProps }) {
|
|
3973
3997
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Plus", transform: "translate(120 -82)", children: [jsx("path", { d: "M-102,91h-7V84h-2v7h-7v2h7v7h2V93h7Z", "data-name": "Trac\u00E9 1378", fill: "currentColor", id: "Trac\u00E9_1378" }), jsx("rect", { "data-name": "Rectangle 6130", fill: "none", height: "20", id: "Rectangle_6130", transform: "translate(-120 82)", width: "20" })] }) }) }));
|
|
3974
3998
|
}
|
|
@@ -3985,6 +4009,10 @@ function Search({ color, size, ...nativeProps }) {
|
|
|
3985
4009
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Search", transform: "translate(200 -41)", children: [jsxs("g", { "data-name": "Trac\u00E9 1368", fill: "none", id: "Trac\u00E9_1368", strokeMiterlimit: "10", children: [jsx("path", { d: "M-181.262,58.262l-5.111-5.111A6.958,6.958,0,0,0-185,49a7,7,0,0,0-7-7,7,7,0,0,0-7,7,7,7,0,0,0,7,7,6.958,6.958,0,0,0,4.151-1.373l5.111,5.111ZM-197,49a5.006,5.006,0,0,1,5-5,5.006,5.006,0,0,1,5,5,5.006,5.006,0,0,1-5,5A5.006,5.006,0,0,1-197,49Z", stroke: "none" }), jsx("path", { d: "M -182.7380065917969 59.73799896240234 L -187.8489990234375 54.62699890136719 C -189.0110015869141 55.48600006103516 -190.4440002441406 56 -192 56 C -195.8659973144531 56 -199 52.86600112915039 -199 49 C -199 45.13399887084961 -195.8659973144531 42 -192 42 C -188.1340026855469 42 -185 45.13399887084961 -185 49 C -185 50.55599975585938 -185.5140075683594 51.98899841308594 -186.3730010986328 53.1510009765625 L -181.2619934082031 58.26200103759766 L -182.7380065917969 59.73799896240234 Z M -192 44 C -194.7570037841797 44 -197 46.24300003051758 -197 49 C -197 51.75699996948242 -194.7570037841797 54 -192 54 C -189.2429962158203 54 -187 51.75699996948242 -187 49 C -187 46.24300003051758 -189.2429962158203 44 -192 44 Z", fill: "currentColor", stroke: "none" })] }), jsx("rect", { "data-name": "Rectangle 6106", fill: "none", height: "20", id: "Rectangle_6106", transform: "translate(-200 41)", width: "20" })] }) }) }));
|
|
3986
4010
|
}
|
|
3987
4011
|
|
|
4012
|
+
function SelectCircle({ color, size, ...nativeProps }) {
|
|
4013
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Select_circle", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M0,0H20V20H0Z", "data-name": "Trac\u00E9 1475", fill: "none", id: "Trac\u00E9_1475" }), jsx("path", { d: "M10,0H8.35l-.007,0h-.08l-.012,0H8.142l-.007,0h0l-.012,0H8.094l-.013,0h0l-.008,0H8.065l-.008,0h0l-.014,0h0l-.013,0H8.017L8,.2H8L7.989.2h0L7.98.2h0l-.013,0h0l-.014,0h0l-.008,0H7.936l-.009,0h0l-.014,0h0L7.9.22H7.9l-.008,0h0l-.013,0h0L7.86.23h0l-.024,0h0l-.014,0h0L7.8.243h0l-.014,0h0L7.707.264h0l-.014,0h0A9.947,9.947,0,0,0,5.2,1.222l.961,1.755A8,8,0,0,1,10,2V0ZM3.558,2.351c-.2.172-.4.353-.592.541h0l-.021.021h0l0,0h0l-.015.015h0l-.005,0h0l-.02.02h0l-.005.005h0l-.016.016h0l0,0h0L2.856,3h0l-.005,0v0l0,0h0L2.83,3.03h0l0,0v0l-.014.014h0l0,0h0l0,0h0l-.009.01h0l0,0,0,0,0,0h0L2.762,3.1v0l0,0,0,0-.013.014,0,0,0,0,0,0,0,0,0,0-.007.008h0l0,0,0,0,0,0h0L2.7,3.17l0,0,0,0,0,0,0,0,0,0-.006.006,0,0,0,0,0,0,0,0,0,0-.007.008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,.005,0,0,0,0,0,0,0,0,0,0,0,0-.006.006,0,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.005,0,0,0,0,0,0,0,0,0,0-.006.006,0,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0L2.484,3.4v0l-.006.006,0,0,0,0,0,0,0,0v0l-.006.006,0,0,0,.005,0,0,0,0,0,0-.006.007h0l0,.007h0l0,.005,0,0,0,.006h0l-.006.007h0l0,.006v0l0,.005h0l-.006.007h0l-.006.006v0l-.005,0v0l-.012.014h0l-.005.006h0l-.006.007h0l-.006.007h0l0,.006v0l0,.006h0l-.012.014h0l0,.006h0l-.012.014h0l0,.006v0l-.018.021h0l0,.007h0l-.012.015h0l-.006.006h0l-.011.015h0l0,.007h0L2.232,3.7h0l-.012.015h0l-.006.007h0L2.2,3.74h0l0,.007h0l-.018.023h0l-.018.023h0L2.153,3.8h0l-.018.022h0l-.018.023h0l-.024.031h0L2.075,3.9h0l-.018.023h0l-.023.031h0A9.981,9.981,0,0,0,.744,6.209h0l-.015.036h0l-.011.027h0L.707,6.3h0l-.014.036h0l-.011.028h0l0,.009h0L2.541,7.1A8.047,8.047,0,0,1,4.847,3.88L3.558,2.351ZM.144,8.3l-.016.1h0V8.4h0l0,.024v.065h0l0,.015h0v.007h0v.007h0l0,.031h0A9.867,9.867,0,0,0,0,9.677H0v.007H0v.031H0v.007H0v.007H0v.024H0v.007H0v.006H0V9.8H0v.023H0V9.87H0v.008H0v.03H0v.008H0V10H0v.072H0V10.1H0v.04H0v.041H0v.023H0v.008H0v.031H0v.039H0v.04H0V10.4h0v.031h0v.04h0v.031h0v.039h0v.039h0v.039h0v.022h0v.008h0v.022h0V10.7h0v.022h0v.008h0v.062h0V10.8h0v.022h0v.016h0v.015h0v.007h0v.007h0v.039h0v.022h0l0,.015v.024h0v.008h0v.022h0v.008h0v.024l0,.015h0v.014h0v.007h0l0,.015h0v.022h0v.008h0v.024l0,.015h0v.014h0l0,.015h0V11.2h0v.014h0v.015h0v.007h0v.007h0l0,.023v.008h0v.007h0l0,.016h0v.007h0v.007h0l0,.023h0v.006h0v.007h0l0,.015h0v.007h0v.007h0V11.4h0l0,.016h0v.006h0v.007h0l0,.015h0v.008h0v.007h0l0,.023h0v.007h0V11.5h0l0,.015h0v.015h0l0,.023h0v.007h0v.007h0l0,.023h0V11.6h0l0,.03h0l.012.069h0l.007.038h0l.005.031h0l.006.031h0l.007.038h0c.011.059.022.118.034.176h0a9.873,9.873,0,0,0,.331,1.217l1.893-.646A7.991,7.991,0,0,1,2,10a8.162,8.162,0,0,1,.115-1.364L.144,8.3Zm2.947,5.738L1.365,15.047h0l.015.025h0l.015.024h0l0,.008h0l.01.017h0l0,.008h0l.01.016h0l0,.007h0l0,.008h0l.005.008h0l0,.008v0l0,.006h0l.009.016v0l0,.006v0l0,.007h0l0,.007v0l0,.006v0l0,.006v0l0,.008h0l0,.006,0,0,0,.005v0l0,.008h0l0,.006v0l0,.005,0,0,0,.005v0l0,.007,0,0,0,0,0,0,0,0,0,0,0,.007,0,0,0,.005,0,0,0,0,0,0,0,.006,0,0,0,.005,0,0,0,0,0,0,0,0v0l0,.007,0,0,0,0,0,0,0,0,0,0,0,.007,0,0,0,0,0,0,0,0,0,0,0,0,0,.008,0,0,0,0,0,0,0,0,0,0,0,.008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.008,0,0,0,.005,0,0,0,0v0l.006.009v0l0,.005,0,0,0,.005v0l.011.016,0,0,0,0v0l.011.016v0l0,0,0,0,0,0h0l.007.011h0l0,.005v0l0,.005h0l.011.017v0l0,.005h0l.011.017h0l0,.005v0l.012.018h0l0,.005h0l.016.024h0l0,.005h0l.013.018h0l0,.006h0l.016.023h0l0,.006h0l.013.018h0l0,.006h0l.017.024h0l.017.024h0l.017.024h0l.022.03h0l.018.024h0L2,15.995H2c.045.06.09.12.137.179h0q.081.1.165.2h0l.019.023h0l.043.052h0l.019.023h0L2.4,16.5h0l.025.028h0l.019.023h0l.044.051h0l.019.022h0l.019.022h0l0,0h0l.014.016h0l0,.005h0l.019.021h0l.005.005h0l.014.016h0l0,0,0,0,.014.015h0l.005.005v0l.019.02v0l0,0h0l.014.015v0l0,0h0l.014.015h0l.005,0h0l.014.015h0l0,.005h0l.005,0h0l.013.014,0,0,0,0v0l.014.014h0l0,.005,0,0,0,0h0l.008.009h0l0,0v0l0,0v0l.013.014,0,0,0,0,0,0,.013.013,0,0,0,0,0,0,0,0,0,0,.008.007,0,0,0,0,0,0,0,0,0,0L2.854,17v0l0,0,0,0,0,0,0,0,.013.013,0,0,0,0,0,0,0,0,0,0,.006.006,0,0,0,0,0,0,0,0,0,0,.005.005,0,0,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.005,0,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.006.006,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,.005,0,0,0,0,0,0,0,0,0,0,0,0,.005h0l.006.006,0,0,0,0,0,0,0,0,0,0,.006.005,0,0,0,0,0,0,0,0,0,0,.006.006h0l.005,0,0,0,0,0,0,0,.005,0h0l.006.006,0,0,0,0,0,0,0,0,0,0,.007.006h0l.005.005,0,0,0,0,0,0,.007.006h0l.006.006,0,0,.005,0,0,0,.006,0h0l.007.006h0l0,.005,0,0,0,0v0l.007.006h0l.005.005,0,0,0,0,0,0,.007,0h0l.006,0,0,0,0,0,0,0,.006.005h0l.006.006,0,0,0,0,0,0,0,.005h0l.007.006h0l.006,0h0l0,0h0l.007.006h0l.006.006,0,0,.005,0,0,0,.007,0h0l.007.006h0l.006,0h0l.006,0h0l.007.006h0l.007.005h0l.006,0h0l.014.012h0l.006.005v0L3.5,17.6h0L3.5,17.6h0l.006,0h0l.014.012h0l.006.005h0l.015.012h0l.007.006h0l.014.012h0l.006.006h0l.007.005h0l.015.013h0l.006.006h0l.014.012h0l.007.006h0l.022.018h0l.022.018h0l.007.006h0l.015.012h0l.007,0h0l.022.018h0l.023.018h0l.007,0h0l.015.012h0l.007.005h0l.022.018h0l.023.018h0l.03.024h0l.023.018h0l.024.018h0l.031.024h0a9.867,9.867,0,0,0,.9.616l1.033-1.713a8.066,8.066,0,0,1-2.784-2.82Zm4.226,3.5-.671,1.885a9.967,9.967,0,0,0,2.273.518h0l.046.005h0l.04,0H9.02l.026,0h.02l.027,0h.021l.019,0h.022l.025,0h.029l.018,0H9.25l.018,0h1.194a10.415,10.415,0,0,0,1.112-.113L11.262,17.9a8.055,8.055,0,0,1-3.945-.362Zm8.736-2.308A8.04,8.04,0,0,1,12.8,17.5l.7,1.874c.1-.04.209-.081.313-.124h0l.036-.015h0l.027-.011h0l.026-.012h0l.008,0h0l.018-.007h0l.008,0h0l.007,0h0l.009,0h0l.008,0h0l.007,0h0L14,19.169h0l.007,0h0l.007,0h0l.008,0h0l.007,0h0l.006,0h0l.008,0h0l.007,0h0l.005,0h0l.005,0h0l.007,0,0,0,.006,0h0l0,0h0l.008,0h0l.006,0,0,0,.005,0h0l.006,0,0,0,.006,0,0,0,.005,0,0,0,0,0,0,0,.008,0,0,0,.005,0h0l0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,0,0,.007,0,0,0,0,0h0l0,0,0,0,.016-.008h0l0,0,0,0,0,0h0l.009,0h0l0,0,0,0,0,0h0l.01-.005h0l0,0,0,0,0,0h0L14.361,19h0l.006,0h0l.005,0h0l.012-.006h0l.006,0h0l.005,0h0l.018-.009h0l.006,0h0l.019-.01h0l.006,0h0l.006,0h0l.019-.009h0l.007,0h0l.02-.01h0l.007,0h0l.026-.013h0l.006,0h0l.02-.01h0l.006,0h0l.026-.014h0l.026-.014h0a10.018,10.018,0,0,0,1.446-.923h0l.1-.078h0l.006,0h0l.076-.061h0l.023-.019h0l.022-.018h0l0,0h0l.017-.013h0l0,0h0l.022-.018h0l0,0h0l.016-.013h0l0,0h0l.017-.014h0l.005,0h0l.006,0h0l.016-.013h0l0,0v0l.016-.013h0l.005-.005h0l.016-.013h0l0,0h0l0,0h0l.015-.013,0,0,0,0h0l.015-.013h0l0,0,0,0,0,0,0,0,.009-.008h0l0,0,0,0,0,0h0l.015-.013v0l.005,0,0,0,0,0h0l.009-.009h0l0,0,0,0,0,0,0,0,.01-.009h0l0,0,0,0,0,0,0,0,.014-.012,0,0,0,0,0,0,0,0,0,0,.007-.007,0,0,0,0,0,0,0,0,0,0,.009-.008h0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-.005,0,0,0,0,0,0,0,0,0,0,0,0,.006,0,0,0,0,0,0,0,0,0,0,0,0,0,.005,0,0,0,0,0,0,0,0,0,0,0,0,0,0-.005,0,0,0,0,0,0,0,0,0,0,.006-.006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.006-.006h0l0-.005,0,0,0,0,0,0,.006-.006h0l.005-.005,0,0,0,0,0,0,.005,0v0l.006-.006h0l.005,0,0,0,.005,0v0l.007-.006h0l.005,0,0,0,.005,0v0l.013-.012h0L17,17.143v0l.006-.006h0l.006-.007h0l.006-.005v0l.006-.005h0l.006-.006h0l.006-.006h0l.005-.005h0l.013-.013h0l.005-.006h0l.013-.013h0l.006-.007h0l.006-.006h0l.014-.014h0l.006-.005h0l.013-.014h0L17.137,17h0L17.144,17h0l.013-.013h0l.006-.006h0l.014-.013h0l.006-.006h0l.02-.02h0l.02-.02h0l.007-.006h0l.02-.021h0q.16-.168.313-.345l-1.512-1.309ZM18,10.1a8.007,8.007,0,0,1-1.026,3.821l1.742.983a10.02,10.02,0,0,0,.523-1.072h0l.023-.056h0l.006-.014h0l0-.014h0l0-.007h0l.006-.014h0l0-.007h0l0-.006h0l0-.006h0l0-.006h0l0-.006v0l0-.006h0l0-.006v0l0-.006h0l0-.005v0l0-.006h0l0-.006h0l0-.006h0l0-.006v0l0-.005h0l0-.006v-.007h0l0-.006v0l0-.006h0l0-.005v0l0-.006v0l0,0v0l0-.006v-.006l0,0v-.007l0-.005v0l0,0v0l0-.006v0l0,0v0l0-.005v-.007l0,0v-.006l0-.005V13.5l0,0v-.01l0-.005v0l0,0v0l0,0v0l0,0v0l0,0v0l0-.006v0l0,0h0l0-.006v0l0-.011v0l0-.006V13.4l0-.006v-.007l0-.007v0l0-.006v-.008l0-.006V13.35h0l0-.007v0l0-.007h0v-.006l0-.007h0l0,0v0l0-.006v0l0-.012v0l0-.007h0v-.006l0-.007h0l0-.013h0l0-.008h0v0h0l0-.007v0l0,0h0l0-.009h0l0-.013h0l0-.008h0V13.19h0l0-.008h0l.005-.013h0l0-.008h0v0h0l0-.009h0l0-.014h0l0-.013h0l.007-.023h0l.005-.013h0l0-.013h0l0-.009h0l0-.014h0c.014-.041.027-.083.039-.124h0c.026-.083.05-.167.073-.251h0l0-.014h0l0-.014h0l0-.01h0l.014-.051h0l.023-.09h0l.01-.037h0l.009-.037h0l0-.014h0l0-.023h0l0-.013h0l0-.014h0l0-.009h0l0-.013h0l0-.014h0l0-.009h0v0h0l0-.01h0l0-.014h0l.009-.038h0l0-.014h0l.006-.023h0l0-.013h0l0-.014h0l0-.009h0l0-.014h0l0-.014h0v-.008h0l0-.013v0l0-.013h0l0-.009h0v-.005h0l0-.009h0l0-.013v-.01h0v-.013h0l0-.014h0l0-.014h0v-.009h0v0h0v-.01l0-.013h0l0-.008h0v-.006l0-.007v0l0-.013v-.336h0v-.038h0v-.015h0v-.022h0v-.015h0v-.006h0v-.015h0v-.015h0v-.007h0v-.007h0V11.43h0v-.008h0l0-.014h0V11.4h0v-.007h0v-.008h0l0-.014h0l0-.015h0v-.008h0v-.008h0v-.008h0l0-.015h0l0-.024h0l0-.015h0l0-.039h0A10.3,10.3,0,0,0,20,10.13L18,10.1Zm-.267-6.446L16.186,4.927A7.989,7.989,0,0,1,17.862,8.51l1.965-.37a9.834,9.834,0,0,0-.545-1.867h0l-.011-.027h0l-.014-.036h0l-.015-.036h0l-.054-.126h0l-.011-.026h0l-.027-.062h0l-.015-.035h0L19.122,5.9h0l-.016-.036h0l-.012-.026h0l0-.008h0L19.077,5.8h0l-.012-.026h0l0-.008h0l-.008-.018h0l0-.008h0l-.012-.026h0l0-.009h0l-.012-.026h0L19,5.64h0l-.013-.026h0l0-.008h0l-.009-.018h0l0-.008h0l-.013-.026h0l-.013-.026h0l0-.008h0l-.013-.026h0l0-.008h0l-.009-.017h0l0-.008h0L18.9,5.431h0L18.88,5.4h0l-.014-.025h0l-.018-.035h0l-.013-.025h0l-.019-.034h0l-.032-.059h0l-.014-.026h0l-.019-.033h0l-.019-.033h0L18.718,5.1h0L18.7,5.064h0l-.014-.025h0c-.023-.039-.046-.078-.068-.117h0L18.6,4.889h0a10,10,0,0,0-.865-1.231ZM11.829.167l-.363,1.967A7.982,7.982,0,0,1,15.053,3.8l1.265-1.55a10,10,0,0,0-3.042-1.7h0l-.027-.01h0L13.22.53h0l-.009,0h0L13.183.517h0l-.009,0h0L13.155.508h0l-.008,0h0l-.009,0h0L13.118.5h0l-.008,0h0L13.089.486h0l-.007,0h0l-.008,0h0l-.009,0h0l-.008,0h0l-.007,0h0L13.024.465h0l-.007,0h0l-.007,0h0l-.009,0h0l-.008,0h0l-.007,0h0l-.009,0h0l-.009,0h0l-.007,0h0l-.007,0h0l-.009,0h0l-.007,0h-.012l-.006,0h0l-.008,0h0l-.005,0h0l-.005,0h0l-.009,0h0l-.006,0h-.012l-.006,0h0l-.008,0h0l-.006,0h-.012L12.8.4h0l-.005,0h0l-.005,0h-.013l-.007,0-.005,0h-.017l-.005,0-.006,0h-.013l-.005,0H12.7l-.012,0h0l-.005,0h-.012l-.01,0h-.019l-.005,0h0l-.012,0H12.61l-.006,0h0l-.012,0h-.018l-.019,0h-.018l-.02,0h-.01l-.02-.005h0l-.007,0h0l-.007,0h0L12.447.3h-.008L12.41.292h0l-.03-.007h0q-.273-.068-.55-.118Z", "data-name": "Trac\u00E9 1476", fill: "currentColor", id: "Trac\u00E9_1476" })] }) }));
|
|
4014
|
+
}
|
|
4015
|
+
|
|
3988
4016
|
function SelectPolygon({ color, size, ...nativeProps }) {
|
|
3989
4017
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Select_polygon", transform: "translate(120 -41)", children: [jsxs("g", { "data-name": "Groupe 4176", id: "Groupe_4176", children: [jsx("path", { d: "M-114.675,45.646l-1.875-.7,1.113-2.994h3.2v2h-1.8Z", "data-name": "Trac\u00E9 1395", fill: "currentColor", id: "Trac\u00E9_1395" }), jsx("rect", { "data-name": "Rectangle 6148", fill: "currentColor", height: "2", id: "Rectangle_6148", transform: "translate(-117.788 48.28) rotate(-69.601)", width: "2.539" }), jsx("path", { d: "M-116.974,54.383l-2.266-2.192,1.1-2.956,1.875.7-.643,1.731,1.326,1.284Z", "data-name": "Trac\u00E9 1396", fill: "currentColor", id: "Trac\u00E9_1396" }), jsx("rect", { "data-name": "Rectangle 6149", fill: "currentColor", height: "2.664", id: "Rectangle_6149", transform: "matrix(0.695, -0.719, 0.719, 0.695, -116.207, 55.124)", width: "2" }), jsx("path", { d: "M-111.067,60.1l-2.459-2.379,1.391-1.437,1.135,1.1,1.185-1.041,1.32,1.5Z", "data-name": "Trac\u00E9 1397", fill: "currentColor", id: "Trac\u00E9_1397" }), jsx("path", { d: "M-107.521,56.983l-1.318-1.5,1.4-1.174,1.559-.7.822,1.822-1.423.643Z", "data-name": "Trac\u00E9 1398", fill: "currentColor", id: "Trac\u00E9_1398" }), jsx("path", { d: "M-103.869,54.893l-.82-1.824,1.57-.707-.3-1.7,1.971-.346.565,3.229Z", "data-name": "Trac\u00E9 1399", fill: "currentColor", id: "Trac\u00E9_1399" }), jsx("rect", { "data-name": "Rectangle 6150", fill: "currentColor", height: "2.862", id: "Rectangle_6150", transform: "translate(-104.11 46.717) rotate(-9.96)", width: "2.001" }), jsx("path", { d: "M-104.308,45.589l-.287-1.635h-1.66v-2h3.34l.578,3.289Z", "data-name": "Trac\u00E9 1400", fill: "currentColor", id: "Trac\u00E9_1400" }), jsx("rect", { "data-name": "Rectangle 6151", fill: "currentColor", height: "2", id: "Rectangle_6151", transform: "translate(-110.911 41.954)", width: "3.326" })] }), jsx("rect", { "data-name": "Rectangle 6152", fill: "none", height: "20", id: "Rectangle_6152", transform: "translate(-120 41)", width: "20" })] }) }) }));
|
|
3990
4018
|
}
|
|
@@ -4017,6 +4045,10 @@ function Tag({ color, size, ...nativeProps }) {
|
|
|
4017
4045
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Tag", transform: "translate(-160)", children: [jsx("path", { d: "M173.063,6l3.334,4-3.334,4H164V6h9.063M174,4H162V16h12l5-6-5-6Z", "data-name": "Trac\u00E9 1344", fill: "currentColor", id: "Trac\u00E9_1344" }), jsxs("g", { "data-name": "Ellipse 751", fill: "none", id: "Ellipse_751", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(170.5 8.5)", children: [jsx("circle", { cx: "1.5", cy: "1.5", r: "1.5", stroke: "none" }), jsx("circle", { cx: "1.5", cy: "1.5", fill: "none", r: "0.5" })] }), jsx("rect", { "data-name": "Rectangle 6084", fill: "none", height: "20", id: "Rectangle_6084", transform: "translate(160)", width: "20" })] }) }) }));
|
|
4018
4046
|
}
|
|
4019
4047
|
|
|
4048
|
+
function Unlock({ color, size, ...nativeProps }) {
|
|
4049
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Unlock", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M0,0H20V20H0Z", "data-name": "Trac\u00E9 1470", fill: "none", id: "Trac\u00E9_1470" }), jsxs("g", { "data-name": "Groupe 4311", id: "Groupe_4311", children: [jsx("path", { d: "M0,0H20V20H0Z", "data-name": "Trac\u00E9 1473", fill: "none", id: "Trac\u00E9_1473" }), jsxs("g", { "data-name": "Groupe 4311", id: "Groupe_4311-2", children: [jsx("circle", { cx: "1.5", cy: "1.5", "data-name": "Ellipse 774", fill: "currentColor", id: "Ellipse_774", r: "1.5", transform: "translate(8.5 11.5)" }), jsx("path", { d: "M14.471,7V5.456a4.471,4.471,0,0,0-8.942,0H7.765a2.235,2.235,0,1,1,4.47,0V7H3V19H17V7ZM15,17H5V9H15Z", "data-name": "Trac\u00E9 1474", fill: "currentColor", id: "Trac\u00E9_1474" })] })] })] }) }));
|
|
4050
|
+
}
|
|
4051
|
+
|
|
4020
4052
|
function Vessel({ color, size, ...nativeProps }) {
|
|
4021
4053
|
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Vessel", transform: "translate(-260 -208)", children: [jsx("path", { d: "M327.865,17.99a.226.226,0,0,1-.15-.184l-.64-4.879-4.88-.64a.225.225,0,0,1-.129-.382l6.81-6.811a.222.222,0,0,1,.085-.053L337.7,2.013a.224.224,0,0,1,.285.285l-3.028,8.741a.222.222,0,0,1-.053.085l-6.811,6.81a.225.225,0,0,1-.159.066A.244.244,0,0,1,327.865,17.99Z", "data-name": "Union 12", fill: "currentColor", id: "Union_12", transform: "translate(-60 208)" }), jsx("rect", { "data-name": "Rectangle 6091", fill: "none", height: "20", id: "Rectangle_6091", transform: "translate(260 208)", width: "20" })] }) }) }));
|
|
4022
4054
|
}
|
|
@@ -4029,6 +4061,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4029
4061
|
__proto__: null,
|
|
4030
4062
|
ActivityFeed: ActivityFeed,
|
|
4031
4063
|
Alert: Alert,
|
|
4064
|
+
Anchor: Anchor,
|
|
4032
4065
|
Archive: Archive,
|
|
4033
4066
|
Attention: Attention,
|
|
4034
4067
|
Calendar: Calendar,
|
|
@@ -4042,8 +4075,10 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4042
4075
|
Display: Display,
|
|
4043
4076
|
DoubleChevron: DoubleChevron,
|
|
4044
4077
|
Download: Download,
|
|
4078
|
+
Drapeau: Drapeau,
|
|
4045
4079
|
Duplicate: Duplicate,
|
|
4046
4080
|
Edit: Edit,
|
|
4081
|
+
EditBis: EditBis,
|
|
4047
4082
|
Favorite: Favorite,
|
|
4048
4083
|
FilledArrow: FilledArrow,
|
|
4049
4084
|
Filter: Filter,
|
|
@@ -4058,20 +4093,24 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4058
4093
|
Infringement: Infringement,
|
|
4059
4094
|
Landmark: Landmark,
|
|
4060
4095
|
List: List,
|
|
4096
|
+
MapLayers: MapLayers,
|
|
4061
4097
|
MeasureAngle: MeasureAngle,
|
|
4062
4098
|
MeasureBrokenLine: MeasureBrokenLine,
|
|
4063
4099
|
MeasureCircle: MeasureCircle,
|
|
4064
4100
|
MeasureLine: MeasureLine,
|
|
4065
4101
|
Minus: Minus,
|
|
4066
4102
|
More: More,
|
|
4103
|
+
Note: Note,
|
|
4067
4104
|
Observation: Observation,
|
|
4068
4105
|
Pin: Pin,
|
|
4069
4106
|
Pinpoint: Pinpoint,
|
|
4070
4107
|
PinpointHide: PinpointHide,
|
|
4108
|
+
Plane: Plane,
|
|
4071
4109
|
Plus: Plus,
|
|
4072
4110
|
Reject: Reject,
|
|
4073
4111
|
Save: Save,
|
|
4074
4112
|
Search: Search,
|
|
4113
|
+
SelectCircle: SelectCircle,
|
|
4075
4114
|
SelectPolygon: SelectPolygon,
|
|
4076
4115
|
SelectRectangle: SelectRectangle,
|
|
4077
4116
|
SelectZone: SelectZone,
|
|
@@ -4080,6 +4119,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
4080
4119
|
SortingArrows: SortingArrows,
|
|
4081
4120
|
Summary: Summary,
|
|
4082
4121
|
Tag: Tag,
|
|
4122
|
+
Unlock: Unlock,
|
|
4083
4123
|
Vessel: Vessel,
|
|
4084
4124
|
ViewOnMap: ViewOnMap
|
|
4085
4125
|
});
|