@mtes-mct/monitor-ui 1.10.2 → 1.11.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/CHANGELOG.md +7 -0
- package/elements/Fieldset.d.ts +5 -2
- package/elements/IconBox.d.ts +2 -2
- package/elements/IconButton.d.ts +2 -1
- package/fields/DateRangePicker/NumberInput.d.ts +1 -1
- package/fields/MultiSelect.d.ts +2 -1
- package/fields/Select.d.ts +2 -1
- package/fields/TextInput.d.ts +4 -1
- package/fields/Textarea.d.ts +5 -2
- package/index.js +92 -79
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +5 -2
package/index.js
CHANGED
|
@@ -1401,13 +1401,15 @@ const Field$2 = styled.div `
|
|
|
1401
1401
|
flex-direction: column;
|
|
1402
1402
|
`;
|
|
1403
1403
|
|
|
1404
|
-
function Fieldset(nativeProps) {
|
|
1405
|
-
return jsx(StyledField, { as: "fieldset", ...nativeProps });
|
|
1404
|
+
function Fieldset({ isLight = false, isMulti = false, ...nativeProps }) {
|
|
1405
|
+
return jsx(StyledField, { as: "fieldset", isLight: isLight, isMulti: isMulti, ...nativeProps });
|
|
1406
1406
|
}
|
|
1407
1407
|
const StyledField = styled(Field$2) `
|
|
1408
|
+
background-color: ${p => (p.isLight ? 'white' : 'transparent')};
|
|
1409
|
+
|
|
1408
1410
|
border: 0;
|
|
1409
1411
|
margin: 0;
|
|
1410
|
-
padding: 0;
|
|
1412
|
+
padding: ${p => (p.isMulti ? '1rem' : 0)};
|
|
1411
1413
|
`;
|
|
1412
1414
|
|
|
1413
1415
|
const ICON_SIZE = {
|
|
@@ -1415,8 +1417,8 @@ const ICON_SIZE = {
|
|
|
1415
1417
|
[Size.NORMAL]: 1.25,
|
|
1416
1418
|
[Size.SMALL]: 0.875
|
|
1417
1419
|
};
|
|
1418
|
-
function IconButton({ accent = Accent.PRIMARY, Icon, size = Size.NORMAL, type = 'button', ...nativeProps }) {
|
|
1419
|
-
const children = useMemo(() => jsx(Icon, { size: ICON_SIZE[size] }), [Icon, size]);
|
|
1420
|
+
function IconButton({ accent = Accent.PRIMARY, color, Icon, size = Size.NORMAL, type = 'button', ...nativeProps }) {
|
|
1421
|
+
const children = useMemo(() => jsx(Icon, { color: color, size: ICON_SIZE[size] }), [color, Icon, size]);
|
|
1420
1422
|
const commonProps = useMemo(() => ({
|
|
1421
1423
|
children,
|
|
1422
1424
|
size,
|
|
@@ -1444,28 +1446,28 @@ const StyledButton = styled.button `
|
|
|
1444
1446
|
padding: ${p => PADDING[p.size]};
|
|
1445
1447
|
`;
|
|
1446
1448
|
const TertiaryButton = styled.button `
|
|
1447
|
-
background-color:
|
|
1448
|
-
border: 1px solid
|
|
1449
|
+
background-color: transparent;
|
|
1450
|
+
border: 1px solid transparent;
|
|
1449
1451
|
color: ${p => p.theme.color.charcoal};
|
|
1450
1452
|
|
|
1451
1453
|
:hover,
|
|
1452
1454
|
&._hover {
|
|
1453
|
-
background-color:
|
|
1454
|
-
border: 1px solid
|
|
1455
|
+
background-color: transparent;
|
|
1456
|
+
border: 1px solid transparent;
|
|
1455
1457
|
color: ${p => p.theme.color.blueYonder['100']};
|
|
1456
1458
|
}
|
|
1457
1459
|
|
|
1458
1460
|
:active,
|
|
1459
1461
|
&._active {
|
|
1460
|
-
background-color:
|
|
1461
|
-
border: 1px solid
|
|
1462
|
+
background-color: transparent;
|
|
1463
|
+
border: 1px solid transparent;
|
|
1462
1464
|
color: ${p => p.theme.color.blueGray['100']};
|
|
1463
1465
|
}
|
|
1464
1466
|
|
|
1465
1467
|
:disabled,
|
|
1466
1468
|
&._disabled {
|
|
1467
|
-
background-color:
|
|
1468
|
-
border: 1px solid
|
|
1469
|
+
background-color: transparent;
|
|
1470
|
+
border: 1px solid transparent;
|
|
1469
1471
|
color: ${p => p.theme.color.lightGray};
|
|
1470
1472
|
}
|
|
1471
1473
|
`;
|
|
@@ -3526,7 +3528,7 @@ const ChecboxesBox$1 = styled.div `
|
|
|
3526
3528
|
`}
|
|
3527
3529
|
`;
|
|
3528
3530
|
|
|
3529
|
-
function MultiSelect({ fixedWidth = 5, isLabelHidden = false, label, onChange, options,
|
|
3531
|
+
function MultiSelect({ fixedWidth = 5, isLabelHidden = false, isLight = false, label, onChange, options,
|
|
3530
3532
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
3531
3533
|
searchable = false, ...originalProps }) {
|
|
3532
3534
|
const key = useMemo(() => `${originalProps.name}-${JSON.stringify(originalProps.defaultValue)}`, [originalProps.defaultValue, originalProps.name]);
|
|
@@ -3537,15 +3539,17 @@ searchable = false, ...originalProps }) {
|
|
|
3537
3539
|
const normalizedNextValue = !nextValue || !nextValue.length ? undefined : nextValue;
|
|
3538
3540
|
onChange(normalizedNextValue);
|
|
3539
3541
|
}, [onChange]);
|
|
3540
|
-
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledTagPicker, { data: options, fixedWidth: fixedWidth, id: originalProps.name, onChange: handleChange, searchable: searchable, ...originalProps }, key)] }));
|
|
3542
|
+
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledTagPicker, { data: options, fixedWidth: fixedWidth, id: originalProps.name, isLight: isLight, onChange: handleChange, searchable: searchable, ...originalProps }, key)] }));
|
|
3541
3543
|
}
|
|
3542
3544
|
// TODO A width seems to be mandatory in rsuite which is a very dirty behavior.
|
|
3543
3545
|
// We should hack that.
|
|
3544
3546
|
const StyledTagPicker = styled(TagPicker) `
|
|
3547
|
+
border: 0;
|
|
3545
3548
|
cursor: pointer;
|
|
3546
3549
|
width: ${p => p.fixedWidth}rem;
|
|
3547
3550
|
|
|
3548
3551
|
> .rs-picker-toggle {
|
|
3552
|
+
background-color: ${p => (p.isLight ? p.theme.color.white : p.theme.color.gainsboro)} !important;
|
|
3549
3553
|
cursor: inherit;
|
|
3550
3554
|
}
|
|
3551
3555
|
`;
|
|
@@ -3604,7 +3608,7 @@ const ChecboxesBox = styled.div `
|
|
|
3604
3608
|
`}
|
|
3605
3609
|
`;
|
|
3606
3610
|
|
|
3607
|
-
function Select({ isLabelHidden = false, label, onChange, options,
|
|
3611
|
+
function Select({ isLabelHidden = false, isLight = false, label, onChange, options,
|
|
3608
3612
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
3609
3613
|
searchable = false, ...originalProps }) {
|
|
3610
3614
|
const key = useMemo(() => `${originalProps.name}-${JSON.stringify(originalProps.defaultValue)}`, [originalProps.defaultValue, originalProps.name]);
|
|
@@ -3615,14 +3619,19 @@ searchable = false, ...originalProps }) {
|
|
|
3615
3619
|
const normalizedNextValue = nextValue ?? undefined;
|
|
3616
3620
|
onChange(normalizedNextValue);
|
|
3617
3621
|
}, [onChange]);
|
|
3618
|
-
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledSelectPicker, { data: options, id: originalProps.name,
|
|
3622
|
+
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledSelectPicker, { data: options, id: originalProps.name, isLight: isLight,
|
|
3619
3623
|
// The `unknown` type from Rsuite library is wrong. It should be inferred from `data` prop type.
|
|
3620
3624
|
// `onChange: ((value: unknown, event: React.SyntheticEvent<Element, Event>) => void) | undefined`
|
|
3621
3625
|
onChange: handleChange, searchable: searchable, ...originalProps }, key)] }));
|
|
3622
3626
|
}
|
|
3623
|
-
const StyledSelectPicker = styled(SelectPicker)
|
|
3627
|
+
const StyledSelectPicker = styled(SelectPicker) `
|
|
3628
|
+
> .rs-picker-toggle {
|
|
3629
|
+
background-color: ${p => (p.isLight ? p.theme.color.white : p.theme.color.gainsboro)} !important;
|
|
3630
|
+
border: 0;
|
|
3631
|
+
}
|
|
3632
|
+
`;
|
|
3624
3633
|
|
|
3625
|
-
function Textarea({ isLabelHidden = false, label, onChange, rows = 3, ...originalProps }) {
|
|
3634
|
+
function Textarea({ isLabelHidden = false, isLight = false, label, onChange, rows = 3, ...originalProps }) {
|
|
3626
3635
|
const inputRef = useRef();
|
|
3627
3636
|
const key = useMemo(() => `${originalProps.name}-${JSON.stringify(originalProps.defaultValue)}`, [originalProps.defaultValue, originalProps.name]);
|
|
3628
3637
|
const handleChange = useCallback(() => {
|
|
@@ -3633,11 +3642,13 @@ function Textarea({ isLabelHidden = false, label, onChange, rows = 3, ...origina
|
|
|
3633
3642
|
const normalizedNextValue = nextValue.length ? nextValue : undefined;
|
|
3634
3643
|
onChange(normalizedNextValue);
|
|
3635
3644
|
}, [onChange]);
|
|
3636
|
-
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledInput$1, { ref: inputRef, as: "textarea", id: originalProps.name, onChange: handleChange, rows: rows, ...originalProps }, key)] }));
|
|
3645
|
+
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledInput$1, { ref: inputRef, as: "textarea", id: originalProps.name, isLight: isLight, onChange: handleChange, rows: rows, ...originalProps }, key)] }));
|
|
3637
3646
|
}
|
|
3638
3647
|
const StyledInput$1 = styled(Input) `
|
|
3639
|
-
background-color: ${p => p.theme.color.gainsboro};
|
|
3648
|
+
background-color: ${p => (p.isLight ? p.theme.color.white : p.theme.color.gainsboro)};
|
|
3640
3649
|
border: 0;
|
|
3650
|
+
font-size: 13px;
|
|
3651
|
+
padding: 7px 11px;
|
|
3641
3652
|
width: 100%;
|
|
3642
3653
|
`;
|
|
3643
3654
|
|
|
@@ -3653,7 +3664,9 @@ function TextInput({ isLabelHidden = false, label, onChange, ...originalProps })
|
|
|
3653
3664
|
return (jsxs(Field$2, { children: [jsx(Label, { htmlFor: originalProps.name, isHidden: isLabelHidden, children: label }), jsx(StyledInput, { id: originalProps.name, onChange: handleChange, ...originalProps }, key)] }));
|
|
3654
3665
|
}
|
|
3655
3666
|
const StyledInput = styled(Input) `
|
|
3656
|
-
background-color: ${p => p.theme.color.gainsboro};
|
|
3667
|
+
background-color: ${p => (p.isLight ? p.theme.color.white : p.theme.color.gainsboro)};
|
|
3668
|
+
border: 0;
|
|
3669
|
+
font-size: 13px;
|
|
3657
3670
|
width: 100%;
|
|
3658
3671
|
`;
|
|
3659
3672
|
|
|
@@ -3787,229 +3800,229 @@ const IconBox = styled.div `
|
|
|
3787
3800
|
|
|
3788
3801
|
> svg {
|
|
3789
3802
|
display: block;
|
|
3790
|
-
height: ${p => p
|
|
3791
|
-
width: ${p => p
|
|
3803
|
+
height: ${p => p.$size ?? 1}rem;
|
|
3804
|
+
width: ${p => p.$size ?? 1}rem;
|
|
3792
3805
|
}
|
|
3793
3806
|
`;
|
|
3794
3807
|
|
|
3795
3808
|
function ActivityFeed({ color, size, ...nativeProps }) {
|
|
3796
|
-
return (jsx(IconBox, {
|
|
3809
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Activity_feed", transform: "translate(40 -41)", children: [jsxs("g", { "data-name": "Groupe 4181", id: "Groupe_4181", children: [jsxs("g", { "data-name": "Rectangle 6156", fill: "none", id: "Rectangle_6156", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-22 44) rotate(90)", children: [jsx("rect", { height: "11", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "9", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6157", fill: "none", id: "Rectangle_6157", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-25 50) rotate(90)", children: [jsx("rect", { height: "8", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "6", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6158", fill: "none", id: "Rectangle_6158", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-23 56) rotate(90)", children: [jsx("rect", { height: "10", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "8", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Trac\u00E9 1406", fill: "none", id: "Trac\u00E9_1406", strokeMiterlimit: "10", children: [jsx("path", { d: "M-34,51a1.994,1.994,0,0,0-1-1.723V46.723A1.994,1.994,0,0,0-34,45a2,2,0,0,0-2-2,2,2,0,0,0-2,2,1.994,1.994,0,0,0,1,1.723v2.554A1.994,1.994,0,0,0-38,51a1.994,1.994,0,0,0,1,1.723v2.554A1.994,1.994,0,0,0-38,57a2,2,0,0,0,2,2,2,2,0,0,0,2-2,1.994,1.994,0,0,0-1-1.723V52.723A1.994,1.994,0,0,0-34,51Z", stroke: "none" }), jsx("path", { d: "M -36 43 C -34.89500045776367 43 -34 43.89500045776367 -34 45 C -34 45.73799896240234 -34.40499877929688 46.37599945068359 -35 46.72299957275391 L -35 49.27700042724609 C -34.40499877929688 49.62400054931641 -34 50.26200103759766 -34 51 C -34 51.73799896240234 -34.40499877929688 52.37599945068359 -35 52.72299957275391 L -35 55.27700042724609 C -34.40499877929688 55.62400054931641 -34 56.26200103759766 -34 57 C -34 58.10499954223633 -34.89500045776367 59 -36 59 C -37.10499954223633 59 -38 58.10499954223633 -38 57 C -38 56.26200103759766 -37.59500122070313 55.62400054931641 -37 55.27700042724609 L -37 52.72299957275391 C -37.59500122070313 52.37599945068359 -38 51.73799896240234 -38 51 C -38 50.26200103759766 -37.59500122070313 49.62400054931641 -37 49.27700042724609 L -37 46.72299957275391 C -37.59500122070313 46.37599945068359 -38 45.73799896240234 -38 45 C -38 43.89500045776367 -37.10499954223633 43 -36 43 Z", fill: "currentColor", stroke: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6159", fill: "none", height: "20", id: "Rectangle_6159", transform: "translate(-40 41)", width: "20" })] }) }) }));
|
|
3797
3810
|
}
|
|
3798
3811
|
|
|
3799
3812
|
function Alert({ color, size, ...nativeProps }) {
|
|
3800
|
-
return (jsx(IconBox, {
|
|
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" })] }) }) }));
|
|
3801
3814
|
}
|
|
3802
3815
|
|
|
3803
3816
|
function Archive({ color, size, ...nativeProps }) {
|
|
3804
|
-
return (jsx(IconBox, {
|
|
3817
|
+
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" })] }) }) }));
|
|
3805
3818
|
}
|
|
3806
3819
|
|
|
3807
3820
|
function Attention({ color, size, ...nativeProps }) {
|
|
3808
|
-
return (jsx(IconBox, {
|
|
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: "Attention", transform: "translate(200 -82)", children: [jsxs("g", { "data-name": "Groupe 4155", id: "Groupe_4155", children: [jsxs("g", { "data-name": "Trac\u00E9 1376", fill: "none", id: "Trac\u00E9_1376", strokeMiterlimit: "10", children: [jsx("path", { d: "M-190,83a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-190,83Zm0,16a7,7,0,0,1-7-7,7,7,0,0,1,7-7,7,7,0,0,1,7,7A7,7,0,0,1-190,99Z", stroke: "none" }), jsx("path", { d: "M -190 83 C -185.0290069580078 83 -181 87.02899932861328 -181 92 C -181 96.97100067138672 -185.0290069580078 101 -190 101 C -194.9709930419922 101 -199 96.97100067138672 -199 92 C -199 87.02899932861328 -194.9709930419922 83 -190 83 Z M -190 99 C -186.1340026855469 99 -183 95.86599731445313 -183 92 C -183 88.13400268554688 -186.1340026855469 85 -190 85 C -193.8659973144531 85 -197 88.13400268554688 -197 92 C -197 95.86599731445313 -193.8659973144531 99 -190 99 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Rectangle 6126", fill: "none", id: "Rectangle_6126", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-189 93) rotate(180)", children: [jsx("rect", { height: "5", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "3", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6127", fill: "none", id: "Rectangle_6127", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-189 96) rotate(180)", children: [jsx("rect", { height: "2", stroke: "none", width: "2" }), jsx("rect", { fill: "none", x: "1", y: "1" })] })] }), jsx("rect", { "data-name": "Rectangle 6128", fill: "none", height: "20", id: "Rectangle_6128", transform: "translate(-200 82)", width: "20" })] }) }) }));
|
|
3809
3822
|
}
|
|
3810
3823
|
|
|
3811
3824
|
function Calendar({ color, size, ...nativeProps }) {
|
|
3812
|
-
return (jsx(IconBox, {
|
|
3825
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Calendar", transform: "translate(280 -41)", children: [jsxs("g", { "data-name": "Groupe 4137", id: "Groupe_4137", children: [jsxs("g", { "data-name": "Trac\u00E9 1365", fill: "none", id: "Trac\u00E9_1365", strokeMiterlimit: "10", children: [jsx("path", { d: "M-266,44V42h-2v2h-4V42h-2v2h-4V59h16V44Zm2,13h-12V50h12Zm0-9h-12V46h12Z", stroke: "none" }), jsx("path", { d: "M -274 42 L -272 42 L -272 44 L -268 44 L -268 42 L -266 42 L -266 44 L -262 44 L -262 59 L -278 59 L -278 44 L -274 44 L -274 42 Z M -264 48 L -264 46 L -276 46 L -276 48 L -264 48 Z M -264 57 L -264 50 L -276 50 L -276 57 L -264 57 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Rectangle 6103", fill: "none", id: "Rectangle_6103", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-274 52)", children: [jsx("rect", { height: "3", stroke: "none", width: "4" }), jsx("rect", { fill: "none", height: "1", width: "2", x: "1", y: "1" })] })] }), jsx("rect", { "data-name": "Rectangle 6104", fill: "none", height: "20", id: "Rectangle_6104", transform: "translate(-280 41)", width: "20" })] }) }) }));
|
|
3813
3826
|
}
|
|
3814
3827
|
|
|
3815
3828
|
function Check({ color, size, ...nativeProps }) {
|
|
3816
|
-
return (jsx(IconBox, {
|
|
3829
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Check", transform: "translate(40 -82)", children: [jsxs("g", { "data-name": "Trac\u00E9 1379", fill: "none", id: "Trac\u00E9_1379", strokeMiterlimit: "10", children: [jsx("path", { d: "M-23.99,86.7l-7.778,7.778-4.243-4.243-1.414,1.414,4.243,4.243,1.414,1.414,9.192-9.192Z", stroke: "none" }), jsx("path", { d: "M -23.98955917358398 86.69669342041016 L -22.57537841796875 88.11093139648438 L -31.76775932312012 97.30330657958984 L -37.42462158203125 91.64644622802734 L -36.01044082641602 90.23220825195313 L -31.76775932312012 94.47487640380859 L -23.98955917358398 86.69669342041016 Z", fill: "currentColor", stroke: "none" })] }), jsx("rect", { "data-name": "Rectangle 6133", fill: "none", height: "20", id: "Rectangle_6133", transform: "translate(-40 82)", width: "20" })] }) }) }));
|
|
3817
3830
|
}
|
|
3818
3831
|
|
|
3819
3832
|
function Chevron({ color, size, ...nativeProps }) {
|
|
3820
|
-
return (jsx(IconBox, {
|
|
3833
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Chevron", transform: "translate(0 -82)", children: [jsxs("g", { "data-name": "Trac\u00E9 1380", fill: "none", id: "Trac\u00E9_1380", strokeMiterlimit: "10", children: [jsx("path", { d: "M16.585,87.293,10,93.878,3.415,87.293,2,88.707l6.585,6.585L10,96.707l1.415-1.415L18,88.707Z", stroke: "none" }), jsx("path", { d: "M 3.414670944213867 87.29266357421875 L 10 93.87799072265625 L 16.58533096313477 87.29266357421875 L 18 88.70733642578125 L 10 96.70733642578125 L 2 88.70733642578125 L 3.414670944213867 87.29266357421875 Z", fill: "currentColor", stroke: "none" })] }), jsx("rect", { "data-name": "Rectangle 6134", fill: "none", height: "20", id: "Rectangle_6134", transform: "translate(0 82)", width: "20" })] }) }) }));
|
|
3821
3834
|
}
|
|
3822
3835
|
|
|
3823
3836
|
function Clock({ color, size, ...nativeProps }) {
|
|
3824
|
-
return (jsx(IconBox, {
|
|
3837
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Clock", transform: "translate(240 -41)", children: [jsxs("g", { "data-name": "Groupe 4139", id: "Groupe_4139", children: [jsxs("g", { "data-name": "Trac\u00E9 1366", fill: "none", id: "Trac\u00E9_1366", strokeMiterlimit: "10", children: [jsx("path", { d: "M-230,42a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-230,42Zm0,16a7,7,0,0,1-7-7,7,7,0,0,1,7-7,7,7,0,0,1,7,7A7,7,0,0,1-230,58Z", stroke: "none" }), jsx("path", { d: "M -230 42 C -225.0290069580078 42 -221 46.02899932861328 -221 51 C -221 55.97100067138672 -225.0290069580078 60 -230 60 C -234.9709930419922 60 -239 55.97100067138672 -239 51 C -239 46.02899932861328 -234.9709930419922 42 -230 42 Z M -230 58 C -226.1340026855469 58 -223 54.86600112915039 -223 51 C -223 47.13399887084961 -226.1340026855469 44 -230 44 C -233.8659973144531 44 -237 47.13399887084961 -237 51 C -237 54.86600112915039 -233.8659973144531 58 -230 58 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1367", fill: "none", id: "Trac\u00E9_1367", strokeMiterlimit: "10", children: [jsx("path", { d: "M-229,50V46h-2v6h6V50Z", stroke: "none" }), jsx("path", { d: "M -225 52 L -231 52 L -231 46 L -229 46 L -229 50 L -225 50 L -225 52 Z", fill: "currentColor", stroke: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6105", fill: "none", height: "20", id: "Rectangle_6105", transform: "translate(-240 41)", width: "20" })] }) }) }));
|
|
3825
3838
|
}
|
|
3826
3839
|
|
|
3827
3840
|
function Close({ color, size, ...nativeProps }) {
|
|
3828
|
-
return (jsx(IconBox, {
|
|
3841
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Close", transform: "translate(160 -82)", children: [jsxs("g", { "data-name": "Trac\u00E9 1377", fill: "none", id: "Trac\u00E9_1377", strokeMiterlimit: "10", children: [jsx("path", { d: "M-142,85.415-143.415,84-150,90.585-156.585,84-158,85.415-151.415,92-158,98.585l1.415,1.415L-150,93.415l6.585,6.585L-142,98.585-148.585,92Z", stroke: "none" }), jsx("path", { d: "M -156.5853271484375 84 L -150 90.5853271484375 L -143.4146728515625 84 L -142 85.4146728515625 L -148.5853271484375 92 L -142 98.5853271484375 L -143.4146728515625 100 L -150 93.4146728515625 L -156.5853271484375 100 L -158 98.5853271484375 L -151.4146728515625 92 L -158 85.4146728515625 L -156.5853271484375 84 Z", fill: "currentColor", stroke: "none" })] }), jsx("rect", { "data-name": "Rectangle 6129", fill: "none", height: "20", id: "Rectangle_6129", transform: "translate(-160 82)", width: "20" })] }) }) }));
|
|
3829
3842
|
}
|
|
3830
3843
|
|
|
3831
3844
|
function Confirm({ color, size, ...nativeProps }) {
|
|
3832
|
-
return (jsx(IconBox, {
|
|
3845
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Confirm", transform: "translate(-40)", children: [jsx("path", { d: "M50,1a9,9,0,1,0,9,9A9,9,0,0,0,50,1Zm0,16a7,7,0,1,1,7-7A7,7,0,0,1,50,17Z", "data-name": "Trac\u00E9 1361", fill: "currentColor", id: "Trac\u00E9_1361" }), jsx("path", { d: "M53.382,6.529l-4.243,4.243L47.018,8.65,45.6,10.064l2.121,2.121h0L49.139,13.6,54.8,7.943Z", "data-name": "Trac\u00E9 1362", fill: "currentColor", id: "Trac\u00E9_1362" }), jsx("rect", { "data-name": "Rectangle 6101", fill: "none", height: "20", id: "Rectangle_6101", transform: "translate(40)", width: "20" })] }) }) }));
|
|
3833
3846
|
}
|
|
3834
3847
|
|
|
3835
3848
|
function Control({ color, size, ...nativeProps }) {
|
|
3836
|
-
return (jsx(IconBox, {
|
|
3849
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsxs("defs", { children: [jsx("clipPath", { id: "clip", children: jsx("use", {}) }), jsx("clipPath", { id: "clip-2", children: jsx("use", {}) }), jsx("clipPath", { id: "clip-3", children: jsx("use", {}) })] }), jsxs("g", { id: "Control", transform: "translate(120 -41)", children: [jsxs("g", { "data-name": "Groupe 4144", id: "Groupe_4144", children: [jsxs("g", { "data-name": "Rectangle 6111", fill: "none", id: "Rectangle_6111", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-104 58) rotate(90)", children: [jsx("rect", { height: "12", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "10", x: "1", y: "1" })] }), jsx("path", { d: "M-107.694,47l1.333,8h-7.277l1.336-8Zm0-2h-4.6a2,2,0,0,0-1.977,1.675L-116,57h12l-1.721-10.325A2,2,0,0,0-107.7,45Z", "data-name": "Trac\u00E9 1369", fill: "currentColor", id: "Trac\u00E9_1369" }), jsxs("g", { "data-name": "Rectangle 6112", fill: "none", id: "Rectangle_6112", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-110.75 41.75)", children: [jsx("rect", { height: "2.25", id: "fill", stroke: "none", width: "1.5" }), jsx("path", { clipPath: "url(#clip)", d: "M0,1h1.5M1,0v2.25M1.5,1.25h-1.5M0.5,2.25v-2.25", fill: "none" })] }), jsxs("g", { "data-name": "Rectangle 6113", fill: "none", id: "Rectangle_6113", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-104.061 43) rotate(45)", children: [jsx("rect", { height: "2.25", id: "fill-2", stroke: "none", width: "1.5" }), jsx("path", { clipPath: "url(#clip-2)", d: "M0,1h1.5M1,0v2.25M1.5,1.25h-1.5M0.5,2.25v-2.25", fill: "none" })] }), jsxs("g", { "data-name": "Rectangle 6114", fill: "none", id: "Rectangle_6114", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-117 44.061) rotate(-45)", children: [jsx("rect", { height: "2.25", id: "fill-3", stroke: "none", width: "1.5" }), jsx("path", { clipPath: "url(#clip-3)", d: "M0,1h1.5M1,0v2.25M1.5,1.25h-1.5M0.5,2.25v-2.25", fill: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6115", fill: "none", height: "20", id: "Rectangle_6115", transform: "translate(-120 41)", width: "20" })] })] }) }));
|
|
3837
3850
|
}
|
|
3838
3851
|
|
|
3839
3852
|
function Delete({ color, size, ...nativeProps }) {
|
|
3840
|
-
return (jsx(IconBox, {
|
|
3853
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Delete", transform: "translate(-23.798 -14.096)", children: [jsxs("g", { "data-name": "Groupe 4114", id: "Groupe_4114", children: [jsx("rect", { "data-name": "Rectangle 6078", fill: "currentColor", height: "6", id: "Rectangle_6078", transform: "translate(31.548 22.096)", width: "1.5" }), jsx("rect", { "data-name": "Rectangle 6079", fill: "currentColor", height: "6", id: "Rectangle_6079", transform: "translate(34.548 22.096)", width: "1.5" }), jsx("path", { d: "M41.8,17.6h-4V16.1h-8v1.5h-4v2h1.5V31.1a1,1,0,0,0,1,1h11a1,1,0,0,0,1-1V19.6h1.5ZM38.3,30.1h-9V19.6h9Z", "data-name": "Trac\u00E9 1340", fill: "currentColor", id: "Trac\u00E9_1340" })] }), jsx("rect", { "data-name": "Rectangle 6080", fill: "none", height: "20", id: "Rectangle_6080", transform: "translate(23.798 14.096)", width: "20" })] }) }) }));
|
|
3841
3854
|
}
|
|
3842
3855
|
|
|
3843
3856
|
function Display({ color, size, ...nativeProps }) {
|
|
3844
|
-
return (jsx(IconBox, {
|
|
3857
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Display", transform: "translate(0 -40)", children: [jsxs("g", { "data-name": "Groupe 4124", id: "Groupe_4124", children: [jsx("path", { d: "M10,44a9.674,9.674,0,0,0-9,6,9.674,9.674,0,0,0,9,6,9.674,9.674,0,0,0,9-6A9.674,9.674,0,0,0,10,44Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,10,54Z", "data-name": "Trac\u00E9 1349", fill: "currentColor", id: "Trac\u00E9_1349" }), jsx("circle", { cx: "2.25", cy: "2.25", "data-name": "Ellipse 752", fill: "currentColor", id: "Ellipse_752", r: "2.25", transform: "translate(7.75 47.75)" })] }), jsx("rect", { "data-name": "Rectangle 6093", fill: "none", height: "20", id: "Rectangle_6093", transform: "translate(0 40)", width: "20" })] }) }) }));
|
|
3845
3858
|
}
|
|
3846
3859
|
|
|
3847
3860
|
function DoubleChevron({ color, size, ...nativeProps }) {
|
|
3848
|
-
return (jsx(IconBox, {
|
|
3861
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Double_chevron", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsxs("g", { "data-name": "Groupe 4162", id: "Groupe_4162", children: [jsxs("g", { "data-name": "Trac\u00E9 1381", fill: "none", id: "Trac\u00E9_1381", strokeMiterlimit: "10", children: [jsx("path", { d: "M16.585,3.085,10,9.671,3.415,3.085,2,4.5l6.585,6.585L10,12.5l1.415-1.415L18,4.5Z", stroke: "none" }), jsx("path", { d: "M 3.414670944213867 3.085323333740234 L 10 9.670653343200684 L 16.58533096313477 3.085323333740234 L 18 4.500003814697266 L 10 12.50000381469727 L 2 4.500003814697266 L 3.414670944213867 3.085323333740234 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1382", fill: "none", id: "Trac\u00E9_1382", strokeMiterlimit: "10", children: [jsx("path", { d: "M16.585,8.085,10,14.671,3.415,8.085,2,9.5l6.585,6.585L10,17.5l1.415-1.415L18,9.5Z", stroke: "none" }), jsx("path", { d: "M 3.414670944213867 8.085323333740234 L 10 14.67065334320068 L 16.58533096313477 8.085323333740234 L 18 9.500003814697266 L 10 17.50000381469727 L 2 9.500003814697266 L 3.414670944213867 8.085323333740234 Z", fill: "currentColor", stroke: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6135", fill: "none", height: "20", id: "Rectangle_6135", width: "20" })] }) }));
|
|
3849
3862
|
}
|
|
3850
3863
|
|
|
3851
3864
|
function Download({ color, size, ...nativeProps }) {
|
|
3852
|
-
return (jsx(IconBox, {
|
|
3865
|
+
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" })] }) }) }));
|
|
3853
3866
|
}
|
|
3854
3867
|
|
|
3855
3868
|
function Duplicate({ color, size, ...nativeProps }) {
|
|
3856
|
-
return (jsx(IconBox, {
|
|
3869
|
+
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" })] }) }));
|
|
3857
3870
|
}
|
|
3858
3871
|
|
|
3859
3872
|
function Edit({ color, size, ...nativeProps }) {
|
|
3860
|
-
return (jsx(IconBox, {
|
|
3873
|
+
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" })] }) }) }));
|
|
3861
3874
|
}
|
|
3862
3875
|
|
|
3863
3876
|
function Favorite({ color, size, ...nativeProps }) {
|
|
3864
|
-
return (jsx(IconBox, {
|
|
3877
|
+
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" })] }) }) }));
|
|
3865
3878
|
}
|
|
3866
3879
|
|
|
3867
3880
|
function FilledArrow({ color, size, ...nativeProps }) {
|
|
3868
|
-
return (jsx(IconBox, {
|
|
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: "Filled_arrow", transform: "translate(320 -41)", children: [jsx("path", { d: "M-313,43V59l8-8Z", "data-name": "Trac\u00E9 1385", fill: "currentColor", id: "Trac\u00E9_1385" }), jsx("rect", { "data-name": "Rectangle 6137", fill: "none", height: "20", id: "Rectangle_6137", transform: "translate(-320 41)", width: "20" })] }) }) }));
|
|
3869
3882
|
}
|
|
3870
3883
|
|
|
3871
3884
|
function Filter({ color, size, ...nativeProps }) {
|
|
3872
|
-
return (jsx(IconBox, {
|
|
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: "Filter", transform: "translate(-930 -294)", children: [jsx("path", { d: "M2,2V4l5,7.592V18h6V11.592L18,4h0V2Zm9,9v5H9V11H9L4.394,4H15.606Z", "data-name": "Trac\u00E9 1450", fill: "currentColor", id: "Trac\u00E9_1450", transform: "translate(930 294)" }), jsx("rect", { "data-name": "Rectangle 6208", fill: "none", height: "20", id: "Rectangle_6208", transform: "translate(930 294)", width: "20" })] }) }) }));
|
|
3873
3886
|
}
|
|
3874
3887
|
|
|
3875
3888
|
function Fishery({ color, size, ...nativeProps }) {
|
|
3876
|
-
return (jsx(IconBox, {
|
|
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: "Fishery", transform: "translate(80 -41)", children: [jsx("g", { "data-name": "Groupe 597", id: "Groupe_597", children: jsx("circle", { cx: "1.5", cy: "1.5", "data-name": "Ellipse 129", fill: "currentColor", id: "Ellipse_129", r: "1.5", transform: "translate(-67 49.5)" }) }), jsx("path", { d: "M-70.092,59a1.713,1.713,0,0,1-.533-.07c-.865-.292-.854-1.258-.846-1.964,0-.141,0-.344,0-.494a18.923,18.923,0,0,1-3.218-2.157l-2.7,2.621a1.682,1.682,0,0,1-2.146-.378,2.072,2.072,0,0,1-.34-2.007l1.225-3.545-1.228-3.555a2.06,2.06,0,0,1,.338-1.99,1.68,1.68,0,0,1,2.152-.384l.174.134L-74.69,47.7a19,19,0,0,1,3.214-2.171c.008-.149.006-.352,0-.492-.008-.706-.019-1.673.844-1.965,1.093-.37,4.183.766,5.6,1.454l.091.045c2.717,1.3,4.323,3.052,4.771,5.193A4.455,4.455,0,0,1-60,51h0a4.7,4.7,0,0,1-.184,1.3c-.433,2.078-2.039,3.825-4.757,5.129l-.09.045A14.905,14.905,0,0,1-70.092,59Zm-4.626-6.671a1.261,1.261,0,0,1,.885.359,17.173,17.173,0,0,0,3.482,2.355c.714.425.7,1.231.7,1.941,0,.064,0,.141,0,.22a16.9,16.9,0,0,0,3.812-1.322l.1-.048c.815-.392,3.295-1.583,3.792-3.953a3.177,3.177,0,0,0,.131-.88,2.962,2.962,0,0,0-.115-.816c-.513-2.434-2.993-3.625-3.808-4.016l-.1-.049a16.147,16.147,0,0,0-3.814-1.305c0,.073,0,.144,0,.2.007.713.016,1.521-.649,1.914a17.441,17.441,0,0,0-3.559,2.416,1.19,1.19,0,0,1-.8.335,1.264,1.264,0,0,1-.9-.32l-2.616-2.577a.3.3,0,0,0,.018.084l1.429,4.136-1.425,4.126a.34.34,0,0,0-.021.092l2.573-2.537A1.271,1.271,0,0,1-74.718,52.329Zm-.339-4.316a.543.543,0,0,0-.081.072Z", "data-name": "Trac\u00E9 1370", fill: "currentColor", id: "Trac\u00E9_1370" }), jsx("rect", { "data-name": "Rectangle 6116", fill: "none", height: "20", id: "Rectangle_6116", transform: "translate(-80 41)", width: "20" })] }) }) }));
|
|
3877
3890
|
}
|
|
3878
3891
|
|
|
3879
3892
|
function FishingEngine({ color, size, ...nativeProps }) {
|
|
3880
|
-
return (jsx(IconBox, {
|
|
3893
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Fishing_engine", transform: "translate(0 -41)", children: [jsx("path", { d: "M11,53h2v1a3,3,0,0,1-6,0V47.789a2.5,2.5,0,1,0-2,0V54a5,5,0,0,0,10,0V48ZM6,46.5a1,1,0,1,1,1-1A1,1,0,0,1,6,46.5Z", "data-name": "Trac\u00E9 1372", fill: "currentColor", id: "Trac\u00E9_1372" }), jsx("rect", { "data-name": "Rectangle 6118", fill: "none", height: "20", id: "Rectangle_6118", transform: "translate(0 41)", width: "20" })] }) }) }));
|
|
3881
3894
|
}
|
|
3882
3895
|
|
|
3883
3896
|
function FleetSegment({ color, size, ...nativeProps }) {
|
|
3884
|
-
return (jsx(IconBox, {
|
|
3897
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Fleet_segment", transform: "translate(280 -82)", children: [jsx("path", { d: "M-262,92l-2-.5V88a2,2,0,0,0-2-2h-2V84h-4v2h-2a2,2,0,0,0-2,2v3.5l-2,.5,1.5,6H-278v2h1.6a5.963,5.963,0,0,0,3.2-.99,5.776,5.776,0,0,0,6.4,0,5.879,5.879,0,0,0,3.2.99h1.6V98h-1.5Zm-12-4h8v3l-4-1-4,1Zm.8,8.68a5.751,5.751,0,0,1-1.35.875l-1.025-4.1L-270,92.062l5.575,1.393-1.025,4.1a5.751,5.751,0,0,1-1.35-.875A4.633,4.633,0,0,1-273.2,96.68Z", "data-name": "Trac\u00E9 1374", fill: "currentColor", id: "Trac\u00E9_1374" }), jsx("rect", { "data-name": "Rectangle 6122", fill: "none", height: "20", id: "Rectangle_6122", transform: "translate(-280 82)", width: "20" })] }) }) }));
|
|
3885
3898
|
}
|
|
3886
3899
|
|
|
3887
3900
|
function Focus({ color, size, ...nativeProps }) {
|
|
3888
|
-
return (jsx(IconBox, {
|
|
3901
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Focus", transform: "translate(320 -82)", children: [jsxs("g", { "data-name": "Groupe 4187", id: "Groupe_4187", children: [jsxs("g", { "data-name": "Trac\u00E9 1413", fill: "none", id: "Trac\u00E9_1413", strokeMiterlimit: "10", children: [jsx("path", { d: "M-319,83v7h2V85h5V83Z", stroke: "none" }), jsx("path", { d: "M -319 83 L -312 83 L -312 85 L -317 85 L -317 90 L -319 90 L -319 83 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1414", fill: "none", id: "Trac\u00E9_1414", strokeMiterlimit: "10", children: [jsx("path", { d: "M-317,94h-2v7h7V99h-5Z", stroke: "none" }), jsx("path", { d: "M -319 94 L -317 94 L -317 99 L -312 99 L -312 101 L -319 101 L -319 94 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1415", fill: "none", id: "Trac\u00E9_1415", strokeMiterlimit: "10", children: [jsx("path", { d: "M-308,83v2h5v5h2V83Z", stroke: "none" }), jsx("path", { d: "M -308 83 L -301 83 L -301 90 L -303 90 L -303 85 L -308 85 L -308 83 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1416", fill: "none", id: "Trac\u00E9_1416", strokeMiterlimit: "10", children: [jsx("path", { d: "M-303,99h-5v2h7V94h-2Z", stroke: "none" }), jsx("path", { d: "M -301 101 L -308 101 L -308 99 L -303 99 L -303 94 L -301 94 L -301 101 Z", fill: "currentColor", stroke: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6162", fill: "none", height: "20", id: "Rectangle_6162", transform: "translate(-320 82)", width: "20" })] }) }) }));
|
|
3889
3902
|
}
|
|
3890
3903
|
|
|
3891
3904
|
function FocusVessel({ color, size, ...nativeProps }) {
|
|
3892
|
-
return (jsx(IconBox, {
|
|
3905
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Focus_vessel", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M8.666,14.994a.138.138,0,0,1-.054-.034.142.142,0,0,1-.04-.081l-.4-3.05-3.05-.4a.139.139,0,0,1-.114-.094.137.137,0,0,1,.033-.144L9.3,6.934A.139.139,0,0,1,9.351,6.9l5.463-1.893a.14.14,0,0,1,.178.178L13.1,10.649a.139.139,0,0,1-.033.053L8.809,14.959a.141.141,0,0,1-.1.041A.161.161,0,0,1,8.666,14.994Z", "data-name": "Union 12", fill: "currentColor", id: "Union_12" }), jsx("rect", { "data-name": "Rectangle 6176", fill: "none", height: "20", id: "Rectangle_6176", width: "20" }), jsxs("g", { "data-name": "Groupe 4196", id: "Groupe_4196", children: [jsx("path", { d: "M1,1V6H3V3H6V1Z", "data-name": "Trac\u00E9 1438", fill: "currentColor", id: "Trac\u00E9_1438" }), jsx("path", { d: "M14,1V3h3V6h2V1Z", "data-name": "Trac\u00E9 1439", fill: "currentColor", id: "Trac\u00E9_1439" }), jsx("path", { d: "M17,17H14v2h5V14H17Z", "data-name": "Trac\u00E9 1440", fill: "currentColor", id: "Trac\u00E9_1440" }), jsx("path", { d: "M3,14H1v5H6V17H3Z", "data-name": "Trac\u00E9 1441", fill: "currentColor", id: "Trac\u00E9_1441" })] })] }) }));
|
|
3893
3906
|
}
|
|
3894
3907
|
|
|
3895
3908
|
function FocusZones({ color, size, ...nativeProps }) {
|
|
3896
|
-
return (jsx(IconBox, {
|
|
3909
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Focus_zones", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsxs("g", { "data-name": "Groupe 4194", id: "Groupe_4194", children: [jsx("path", { d: "M10,5.333A7.524,7.524,0,0,0,3,10a7.583,7.583,0,0,0,14,0A7.524,7.524,0,0,0,10,5.333Zm0,7.778A3.111,3.111,0,1,1,13.111,10,3.111,3.111,0,0,1,10,13.111Z", "data-name": "Trac\u00E9 1433", fill: "currentColor", id: "Trac\u00E9_1433" }), jsx("circle", { cx: "1.75", cy: "1.75", "data-name": "Ellipse 758", fill: "currentColor", id: "Ellipse_758", r: "1.75", transform: "translate(8.25 8.25)" })] }), jsx("rect", { "data-name": "Rectangle 6175", fill: "none", height: "20", id: "Rectangle_6175", width: "20" }), jsxs("g", { "data-name": "Groupe 4195", id: "Groupe_4195", children: [jsx("path", { d: "M1,1V6H3V3H6V1Z", "data-name": "Trac\u00E9 1434", fill: "currentColor", id: "Trac\u00E9_1434" }), jsx("path", { d: "M14,1V3h3V6h2V1Z", "data-name": "Trac\u00E9 1435", fill: "currentColor", id: "Trac\u00E9_1435" }), jsx("path", { d: "M17,17H14v2h5V14H17Z", "data-name": "Trac\u00E9 1436", fill: "currentColor", id: "Trac\u00E9_1436" }), jsx("path", { d: "M3,14H1v5H6V17H3Z", "data-name": "Trac\u00E9 1437", fill: "currentColor", id: "Trac\u00E9_1437" })] })] }) }));
|
|
3897
3910
|
}
|
|
3898
3911
|
|
|
3899
3912
|
function Hide({ color, size, ...nativeProps }) {
|
|
3900
|
-
return (jsx(IconBox, {
|
|
3913
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Hide", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M15.635,5.779l2.143-2.143L16.364,2.222l-2.55,2.55A9.786,9.786,0,0,0,10,4a9.674,9.674,0,0,0-9,6,9.532,9.532,0,0,0,3.365,4.22L2.222,16.364l1.414,1.414,2.55-2.55A9.786,9.786,0,0,0,10,16a9.674,9.674,0,0,0,9-6A9.541,9.541,0,0,0,15.635,5.779ZM6,10a4,4,0,0,1,4-4,3.96,3.96,0,0,1,2.02.566L10.71,7.875A2.225,2.225,0,0,0,10,7.75,2.25,2.25,0,0,0,7.75,10a2.225,2.225,0,0,0,.125.71L6.566,12.02A3.96,3.96,0,0,1,6,10Zm4,4a3.96,3.96,0,0,1-2.02-.566l1.31-1.309a2.225,2.225,0,0,0,.71.125A2.25,2.25,0,0,0,12.25,10a2.225,2.225,0,0,0-.125-.71l1.309-1.31A3.96,3.96,0,0,1,14,10,4,4,0,0,1,10,14Z", "data-name": "Trac\u00E9 1350", fill: "currentColor", id: "Trac\u00E9_1350" }), jsx("rect", { "data-name": "Rectangle 6094", fill: "none", height: "20", id: "Rectangle_6094", width: "20" })] }) }));
|
|
3901
3914
|
}
|
|
3902
3915
|
|
|
3903
3916
|
function Info({ color, size, ...nativeProps }) {
|
|
3904
|
-
return (jsx(IconBox, {
|
|
3917
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Info", transform: "translate(240 -82)", children: [jsxs("g", { "data-name": "Groupe 4153", id: "Groupe_4153", children: [jsxs("g", { "data-name": "Trac\u00E9 1375", fill: "none", id: "Trac\u00E9_1375", strokeMiterlimit: "10", children: [jsx("path", { d: "M-230,83a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-230,83Zm0,16a7,7,0,0,1-7-7,7,7,0,0,1,7-7,7,7,0,0,1,7,7A7,7,0,0,1-230,99Z", stroke: "none" }), jsx("path", { d: "M -230 83 C -225.0290069580078 83 -221 87.02899932861328 -221 92 C -221 96.97100067138672 -225.0290069580078 101 -230 101 C -234.9709930419922 101 -239 96.97100067138672 -239 92 C -239 87.02899932861328 -234.9709930419922 83 -230 83 Z M -230 99 C -226.1340026855469 99 -223 95.86599731445313 -223 92 C -223 88.13400268554688 -226.1340026855469 85 -230 85 C -233.8659973144531 85 -237 88.13400268554688 -237 92 C -237 95.86599731445313 -233.8659973144531 99 -230 99 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Rectangle 6123", fill: "none", id: "Rectangle_6123", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-231 91)", children: [jsx("rect", { height: "5", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "3", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6124", fill: "none", id: "Rectangle_6124", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-231 88)", children: [jsx("rect", { height: "2", stroke: "none", width: "2" }), jsx("rect", { fill: "none", x: "1", y: "1" })] })] }), jsx("rect", { "data-name": "Rectangle 6125", fill: "none", height: "20", id: "Rectangle_6125", transform: "translate(-240 82)", width: "20" })] }) }) }));
|
|
3905
3918
|
}
|
|
3906
3919
|
|
|
3907
3920
|
function Infringement({ color, size, ...nativeProps }) {
|
|
3908
|
-
return (jsx(IconBox, {
|
|
3921
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Infringement", transform: "translate(40 -41)", children: [jsx("path", { d: "M-30,42a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-30,42Zm7,9a6.962,6.962,0,0,1-1.4,4.186L-34.186,45.4A6.962,6.962,0,0,1-30,44,7,7,0,0,1-23,51Zm-14,0a6.962,6.962,0,0,1,1.4-4.186l9.787,9.787A6.962,6.962,0,0,1-30,58,7,7,0,0,1-37,51Z", "data-name": "Trac\u00E9 1371", fill: "currentColor", id: "Trac\u00E9_1371" }), jsx("rect", { "data-name": "Rectangle 6117", fill: "none", height: "20", id: "Rectangle_6117", transform: "translate(-40 41)", width: "20" })] }) }) }));
|
|
3909
3922
|
}
|
|
3910
3923
|
|
|
3911
3924
|
function Landmark({ color, size, ...nativeProps }) {
|
|
3912
|
-
return (jsx(IconBox, {
|
|
3925
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Landmark", transform: "translate(120 -82)", children: [jsx("rect", { "data-name": "Rectangle 6167", fill: "currentColor", height: "15", id: "Rectangle_6167", transform: "translate(-114 99) rotate(180)", width: "2" }), jsx("path", { d: "M-113,84V94l12-5Z", "data-name": "Trac\u00E9 1422", fill: "currentColor", id: "Trac\u00E9_1422" }), jsx("rect", { "data-name": "Rectangle 6168", fill: "none", height: "20", id: "Rectangle_6168", transform: "translate(-120 82)", width: "20" })] }) }) }));
|
|
3913
3926
|
}
|
|
3914
3927
|
|
|
3915
3928
|
function List({ color, size, ...nativeProps }) {
|
|
3916
|
-
return (jsx(IconBox, {
|
|
3929
|
+
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" })] }) }) }));
|
|
3917
3930
|
}
|
|
3918
3931
|
|
|
3919
3932
|
function MeasureAngle({ color, size, ...nativeProps }) {
|
|
3920
|
-
return (jsx(IconBox, {
|
|
3933
|
+
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" })] }) }) }));
|
|
3921
3934
|
}
|
|
3922
3935
|
|
|
3923
3936
|
function MeasureBrokenLine({ color, size, ...nativeProps }) {
|
|
3924
|
-
return (jsx(IconBox, {
|
|
3937
|
+
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_broken_line", transform: "translate(240 -82)", children: [jsx("path", { d: "M-222.5,87a2,2,0,0,0-2,2,1.978,1.978,0,0,0,.192.842L-227,93.071a1.974,1.974,0,0,0-.5-.071,1.974,1.974,0,0,0-.5.071l-2.691-3.229A1.978,1.978,0,0,0-230.5,89a2,2,0,0,0-2-2,2,2,0,0,0-2,2,1.978,1.978,0,0,0,.192.842L-237,93.071a1.974,1.974,0,0,0-.5-.071,2,2,0,0,0-2,2,2,2,0,0,0,2,2,2,2,0,0,0,2-2,1.978,1.978,0,0,0-.192-.842L-233,90.929a1.974,1.974,0,0,0,.5.071,1.974,1.974,0,0,0,.5-.071l2.691,3.229A1.978,1.978,0,0,0-229.5,95a2,2,0,0,0,2,2,2,2,0,0,0,2-2,1.978,1.978,0,0,0-.192-.842L-223,90.929a1.974,1.974,0,0,0,.5.071,2,2,0,0,0,2-2A2,2,0,0,0-222.5,87Z", "data-name": "Trac\u00E9 1417", fill: "currentColor", id: "Trac\u00E9_1417" }), jsx("rect", { "data-name": "Rectangle 6164", fill: "none", height: "20", id: "Rectangle_6164", transform: "translate(-240 82)", width: "20" })] }) }) }));
|
|
3925
3938
|
}
|
|
3926
3939
|
|
|
3927
3940
|
function MeasureCircle({ color, size, ...nativeProps }) {
|
|
3928
|
-
return (jsx(IconBox, {
|
|
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: "Measure_circle", transform: "translate(160 -82)", children: [jsx("path", { d: "M-150,83a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-150,83Zm0,16a7.008,7.008,0,0,1-7-7,7.008,7.008,0,0,1,7-7,6.953,6.953,0,0,1,4.184,1.4l-1.43,1.43A4.964,4.964,0,0,0-150,87a5,5,0,0,0-5,5,5,5,0,0,0,5,5,5,5,0,0,0,5-5,4.964,4.964,0,0,0-.832-2.754l1.43-1.43A6.953,6.953,0,0,1-143,92,7.008,7.008,0,0,1-150,99Zm3-7a3,3,0,0,1-3,3,3,3,0,0,1-3-3,3,3,0,0,1,3-3,2.965,2.965,0,0,1,1.285.3l-1.992,1.992,1.414,1.414,1.992-1.992A2.965,2.965,0,0,1-147,92Z", "data-name": "Trac\u00E9 1421", fill: "currentColor", id: "Trac\u00E9_1421" }), jsx("rect", { "data-name": "Rectangle 6166", fill: "none", height: "20", id: "Rectangle_6166", transform: "translate(-160 82)", width: "20" })] }) }) }));
|
|
3929
3942
|
}
|
|
3930
3943
|
|
|
3931
3944
|
function MeasureLine({ color, size, ...nativeProps }) {
|
|
3932
|
-
return (jsx(IconBox, {
|
|
3945
|
+
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_line", transform: "translate(280 -82)", children: [jsx("path", { d: "M-260,87h-20V97h20Zm-1.818,8.333h-16.363V88.667h1.818V92h1.818V88.667h1.818V92h1.818V88.667h1.819V92h1.818V88.667h1.818V92h1.819V88.667h1.818Z", "data-name": "Trac\u00E9 231", fill: "currentColor", id: "Trac\u00E9_231" }), jsx("rect", { "data-name": "Rectangle 6163", fill: "none", height: "20", id: "Rectangle_6163", transform: "translate(-280 82)", width: "20" })] }) }) }));
|
|
3933
3946
|
}
|
|
3934
3947
|
|
|
3935
3948
|
function Minus({ color, size, ...nativeProps }) {
|
|
3936
|
-
return (jsx(IconBox, {
|
|
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: "Minus", transform: "translate(80 -82)", children: [jsxs("g", { "data-name": "Rectangle 6131", fill: "none", id: "Rectangle_6131", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-77 93) rotate(-90)", children: [jsx("rect", { height: "14", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "12", x: "1", y: "1" })] }), jsx("rect", { "data-name": "Rectangle 6132", fill: "none", height: "20", id: "Rectangle_6132", transform: "translate(-80 82)", width: "20" })] }) }) }));
|
|
3937
3950
|
}
|
|
3938
3951
|
|
|
3939
3952
|
function More({ color, size, ...nativeProps }) {
|
|
3940
|
-
return (jsx(IconBox, {
|
|
3953
|
+
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" })] }) }) }));
|
|
3941
3954
|
}
|
|
3942
3955
|
|
|
3943
3956
|
function Observation({ color, size, ...nativeProps }) {
|
|
3944
|
-
return (jsx(IconBox, {
|
|
3957
|
+
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" })] })] }) }));
|
|
3945
3958
|
}
|
|
3946
3959
|
|
|
3947
3960
|
function Pin({ color, size, ...nativeProps }) {
|
|
3948
|
-
return (jsx(IconBox, {
|
|
3961
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Pin", transform: "translate(-240)", children: [jsx("path", { d: "M250.94,2l-1.412,1.412.706.707L246.7,7.65h-2.824l-1.412,1.413,3.518,3.52-3.985,4L243.413,18l3.985-4,3.54,3.542,1.413-1.412V13.3l3.531-3.531.706.706L258,9.064Zm0,9.888v2.825l-5.648-5.651h2.824l3.531-3.531,2.824,2.825Z", "data-name": "Trac\u00E9 1346", fill: "currentColor", id: "Trac\u00E9_1346" }), jsx("rect", { "data-name": "Rectangle 6089", fill: "none", height: "20", id: "Rectangle_6089", transform: "translate(240)", width: "20" })] }) }) }));
|
|
3949
3962
|
}
|
|
3950
3963
|
|
|
3951
3964
|
function Pinpoint({ color, size, ...nativeProps }) {
|
|
3952
|
-
return (jsx(IconBox, {
|
|
3965
|
+
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", transform: "translate(-160)", children: [jsx("path", { d: "M164,8c0,5,6,10,6,10", "data-name": "Trac\u00E9 1358", fill: "currentColor", id: "Trac\u00E9_1358" }), jsx("path", { d: "M170,2a5.961,5.961,0,0,0-5.944,6.777c.016.135.038.27.062.4l.011.055C164.964,13.792,170,18,170,18s5.036-4.208,5.871-8.763l.011-.055c.024-.135.046-.27.062-.4A5.961,5.961,0,0,0,170,2Zm0,9a3,3,0,1,1,3-3A3,3,0,0,1,170,11Z", "data-name": "Trac\u00E9 1359", fill: "currentColor", id: "Trac\u00E9_1359" }), jsx("rect", { "data-name": "Rectangle 6099", fill: "none", height: "20", id: "Rectangle_6099", transform: "translate(160)", width: "20" })] }) }) }));
|
|
3953
3966
|
}
|
|
3954
3967
|
|
|
3955
3968
|
function PinpointHide({ color, size, ...nativeProps }) {
|
|
3956
|
-
return (jsx(IconBox, {
|
|
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: "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" })] }) }) }));
|
|
3957
3970
|
}
|
|
3958
3971
|
|
|
3959
3972
|
function Plus({ color, size, ...nativeProps }) {
|
|
3960
|
-
return (jsx(IconBox, {
|
|
3973
|
+
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" })] }) }) }));
|
|
3961
3974
|
}
|
|
3962
3975
|
|
|
3963
3976
|
function Reject({ color, size, ...nativeProps }) {
|
|
3964
|
-
return (jsx(IconBox, {
|
|
3977
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Reject", transform: "translate(-80)", children: [jsx("path", { d: "M90,1a9,9,0,1,0,9,9A9,9,0,0,0,90,1Zm0,16a7,7,0,1,1,7-7A7,7,0,0,1,90,17Z", "data-name": "Trac\u00E9 1363", fill: "currentColor", id: "Trac\u00E9_1363" }), jsx("path", { d: "M94,7.455,92.545,6,90,8.545,87.455,6,86,7.455,88.545,10,86,12.545,87.455,14,90,11.455,92.545,14,94,12.545,91.455,10Z", "data-name": "Trac\u00E9 1364", fill: "currentColor", id: "Trac\u00E9_1364" }), jsx("rect", { "data-name": "Rectangle 6102", fill: "none", height: "20", id: "Rectangle_6102", transform: "translate(80)", width: "20" })] }) }) }));
|
|
3965
3978
|
}
|
|
3966
3979
|
|
|
3967
3980
|
function Save({ color, size, ...nativeProps }) {
|
|
3968
|
-
return (jsx(IconBox, {
|
|
3981
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "Save", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M14.444,2H2V18H18V5.556ZM10,16.222a2.667,2.667,0,1,1,2.667-2.667h0a2.663,2.663,0,0,1-2.659,2.667Zm2.667-8.889H3.778V3.778h8.889Z", "data-name": "Trac\u00E9 1302", fill: "currentColor", id: "Trac\u00E9_1302" }), jsx("rect", { "data-name": "Rectangle 6121", fill: "none", height: "20", id: "Rectangle_6121", width: "20" })] }) }));
|
|
3969
3982
|
}
|
|
3970
3983
|
|
|
3971
3984
|
function Search({ color, size, ...nativeProps }) {
|
|
3972
|
-
return (jsx(IconBox, {
|
|
3985
|
+
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" })] }) }) }));
|
|
3973
3986
|
}
|
|
3974
3987
|
|
|
3975
3988
|
function SelectPolygon({ color, size, ...nativeProps }) {
|
|
3976
|
-
return (jsx(IconBox, {
|
|
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: "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" })] }) }) }));
|
|
3977
3990
|
}
|
|
3978
3991
|
|
|
3979
3992
|
function SelectRectangle({ color, size, ...nativeProps }) {
|
|
3980
|
-
return (jsx(IconBox, {
|
|
3993
|
+
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_rectangle", transform: "translate(160 -41)", children: [jsxs("g", { "data-name": "Groupe 4174", id: "Groupe_4174", children: [jsxs("g", { "data-name": "Rectangle 6143", fill: "none", id: "Rectangle_6143", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-152 44) rotate(-90)", children: [jsx("rect", { height: "4", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "2", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6144", fill: "none", id: "Rectangle_6144", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-152 60) rotate(-90)", children: [jsx("rect", { height: "4", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "2", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6145", fill: "none", id: "Rectangle_6145", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-159 49)", children: [jsx("rect", { height: "4", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "2", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Rectangle 6146", fill: "none", id: "Rectangle_6146", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(-143 49)", children: [jsx("rect", { height: "4", stroke: "none", width: "2" }), jsx("rect", { fill: "none", height: "2", x: "1", y: "1" })] }), jsxs("g", { "data-name": "Groupe 4172", id: "Groupe_4172", children: [jsxs("g", { "data-name": "Trac\u00E9 1391", fill: "none", id: "Trac\u00E9_1391", strokeMiterlimit: "10", children: [jsx("path", { d: "M-159,42v5h2V44h3V42Z", stroke: "none" }), jsx("path", { d: "M -159 42 L -154 42 L -154 44 L -157 44 L -157 47 L -159 47 L -159 42 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1392", fill: "none", id: "Trac\u00E9_1392", strokeMiterlimit: "10", children: [jsx("path", { d: "M-146,42v2h3v3h2V42Z", stroke: "none" }), jsx("path", { d: "M -146 42 L -141 42 L -141 47 L -143 47 L -143 44 L -146 44 L -146 42 Z", fill: "currentColor", stroke: "none" })] })] }), jsxs("g", { "data-name": "Groupe 4173", id: "Groupe_4173", children: [jsxs("g", { "data-name": "Trac\u00E9 1393", fill: "none", id: "Trac\u00E9_1393", strokeMiterlimit: "10", children: [jsx("path", { d: "M-157,55h-2v5h5V58h-3Z", stroke: "none" }), jsx("path", { d: "M -159 55 L -157 55 L -157 58 L -154 58 L -154 60 L -159 60 L -159 55 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1394", fill: "none", id: "Trac\u00E9_1394", strokeMiterlimit: "10", children: [jsx("path", { d: "M-143,55v3h-3v2h5V55Z", stroke: "none" }), jsx("path", { d: "M -143 55 L -141 55 L -141 60 L -146 60 L -146 58 L -143 58 L -143 55 Z", fill: "currentColor", stroke: "none" })] })] })] }), jsx("rect", { "data-name": "Rectangle 6147", fill: "none", height: "20", id: "Rectangle_6147", transform: "translate(-160 41)", width: "20" })] }) }) }));
|
|
3981
3994
|
}
|
|
3982
3995
|
|
|
3983
3996
|
function SelectZone({ color, size, ...nativeProps }) {
|
|
3984
|
-
return (jsx(IconBox, {
|
|
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: "Select_zone", transform: "translate(80 -41)", children: [jsxs("g", { "data-name": "Groupe 4179", id: "Groupe_4179", children: [jsxs("g", { "data-name": "Groupe 4178", id: "Groupe_4178", children: [jsx("path", { d: "M-74.675,45.646l-1.875-.7,1.113-2.994h3.2v2h-1.8Z", "data-name": "Trac\u00E9 1401", fill: "currentColor", id: "Trac\u00E9_1401" }), jsx("rect", { "data-name": "Rectangle 6153", fill: "currentColor", height: "2", id: "Rectangle_6153", transform: "translate(-77.788 48.28) rotate(-69.601)", width: "2.539" }), jsx("path", { d: "M-77.377,54.526-79.2,52.089l1.06-2.854,1.875.7-.681,1.833,1.172,1.564Z", "data-name": "Trac\u00E9 1402", fill: "currentColor", id: "Trac\u00E9_1402" }), jsx("path", { d: "M-74.679,58.132l-1.9-2.534,1.6-1.2,1.1,1.47,1.779-.445.486,1.939Z", "data-name": "Trac\u00E9 1403", fill: "currentColor", id: "Trac\u00E9_1403" }), jsx("path", { d: "M-62.532,51.889l-1.66-1.115,1.122-1.67-.63-1.91,1.9-.625.935,2.838Z", "data-name": "Trac\u00E9 1404", fill: "currentColor", id: "Trac\u00E9_1404" }), jsx("path", { d: "M-64.211,45.641l-.556-1.687h-1.776v-2h3.224l1.009,3.062Z", "data-name": "Trac\u00E9 1405", fill: "currentColor", id: "Trac\u00E9_1405" }), jsx("rect", { "data-name": "Rectangle 6154", fill: "currentColor", height: "2", id: "Rectangle_6154", transform: "translate(-70.975 41.954)", width: "3.166" })] }), jsx("path", { d: "M-67.806,56.455l2.689,3.869,2.328-1.612-2.687-3.877,2.71-1.872L-72.02,47.9-70.5,58.35Z", "data-name": "Trac\u00E9 224", fill: "currentColor", id: "Trac\u00E9_224" })] }), jsx("rect", { "data-name": "Rectangle 6155", fill: "none", height: "20", id: "Rectangle_6155", transform: "translate(-80 41)", width: "20" })] }) }) }));
|
|
3985
3998
|
}
|
|
3986
3999
|
|
|
3987
4000
|
function ShowErsMessages({ color, size, ...nativeProps }) {
|
|
3988
|
-
return (jsx(IconBox, {
|
|
4001
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Show_ERS_messages", transform: "translate(-40 -41)", children: [jsxs("g", { "data-name": "Groupe 4186", id: "Groupe_4186", children: [jsx("path", { d: "M50,42.667a5,5,0,0,0-5,5,4.926,4.926,0,0,0,.047.647c.013.113.031.225.051.337l.01.047C45.8,52.493,50,56,50,56s4.2-3.507,4.892-7.3l.01-.047c.02-.112.038-.224.051-.337A4.926,4.926,0,0,0,55,47.667,5,5,0,0,0,50,42.667Zm0,7.5a2.5,2.5,0,1,1,2.5-2.5A2.5,2.5,0,0,1,50,50.167Z", "data-name": "Trac\u00E9 1411", fill: "currentColor", id: "Trac\u00E9_1411" }), jsxs("g", { "data-name": "Trac\u00E9 1412", fill: "#fff", id: "Trac\u00E9_1412", strokeMiterlimit: "10", children: [jsx("path", { d: "M 50 57.97749710083008 C 49.69147872924805 57.97749710083008 49.38210678100586 57.94551086425781 49.07577133178711 57.88271331787109 C 49.38035202026367 57.93568420410156 49.6889762878418 57.96249771118164 50 57.96249771118164 C 50.3110237121582 57.96249771118164 50.61964797973633 57.93568420410156 50.92422866821289 57.88271331787109 C 50.61789321899414 57.94551086425781 50.30852127075195 57.97749710083008 50 57.97749710083008 Z", stroke: "none" }), jsx("path", { d: "M 46.79999923706055 55.67999649047852 C 48.75200271606445 57.38999557495117 51.24799728393555 57.38999557495117 53.20000076293945 55.67999649047852 C 54.17599868774414 56.52999877929688 55.28799819946289 56.99999618530273 56.40000152587891 56.99999618530273 L 58 56.99999618530273 L 58 58.99999618530273 L 56.40000152587891 58.99999618530273 C 55.29600143432617 58.99999618530273 54.20800018310547 58.65999603271484 53.20000076293945 58.0099983215332 C 51.18400192260742 59.29999923706055 48.81599807739258 59.29999923706055 46.79999923706055 58.0099983215332 C 45.79199981689453 58.64999771118164 44.70399856567383 58.99999618530273 43.59999847412109 58.99999618530273 L 42 58.99999618530273 L 42 56.99999618530273 L 43.59999847412109 56.99999618530273 C 44.71200180053711 56.99999618530273 45.82400131225586 56.52999877929688 46.79999923706055 55.67999649047852 Z", fill: "currentColor", stroke: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6161", fill: "none", height: "20", id: "Rectangle_6161", transform: "translate(40 41)", width: "20" })] }) }) }));
|
|
3989
4002
|
}
|
|
3990
4003
|
|
|
3991
4004
|
function ShowXml({ color, size, ...nativeProps }) {
|
|
3992
|
-
return (jsx(IconBox, {
|
|
4005
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsx("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: jsxs("g", { id: "Show_XML", transform: "translate(-120)", children: [jsx("path", { d: "M136.646,2H123.354A3.354,3.354,0,0,0,120,5.354v9.292A3.354,3.354,0,0,0,123.354,18h13.292A3.354,3.354,0,0,0,140,14.646V5.354A3.354,3.354,0,0,0,136.646,2ZM125.607,12.863l-1.269-1.98-1.274,1.98h-1.386l1.957-2.988-1.774-2.738h1.352l1.148,1.84,1.125-1.84h1.34l-1.781,2.781L127,12.863Zm7.5,0h-1.074V8.355L130.9,12.863h-1.113l-1.133-4.508v4.508H127.58V7.137h1.731l1.039,3.906,1.027-3.906h1.734Zm5.211,0h-4.031V7.184h1.156V11.9h2.875Z", "data-name": "Trac\u00E9 1357", fill: "currentColor", id: "Trac\u00E9_1357" }), jsx("rect", { "data-name": "Rectangle 6098", fill: "none", height: "20", id: "Rectangle_6098", transform: "translate(120)", width: "20" })] }) }) }));
|
|
3993
4006
|
}
|
|
3994
4007
|
|
|
3995
4008
|
function SortingArrows({ color, size, ...nativeProps }) {
|
|
3996
|
-
return (jsx(IconBox, {
|
|
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: "Sorting_arrows", transform: "translate(-40)", children: [jsxs("g", { "data-name": "Groupe 4164", id: "Groupe_4164", children: [jsxs("g", { "data-name": "Trac\u00E9 1383", fill: "none", id: "Trac\u00E9_1383", strokeMiterlimit: "10", children: [jsx("path", { d: "M57.536,11.636,55,14.172V2H53V14.172l-2.536-2.536L49.05,13.05,54,18l4.95-4.95Z", stroke: "none" }), jsx("path", { d: "M 54 18 L 49.05022811889648 13.05023002624512 L 50.46448135375977 11.6360502243042 L 53 14.17156982421875 L 53 2 L 55 2 L 55 14.17156982421875 L 57.53551864624023 11.6360502243042 L 58.94977188110352 13.05023002624512 L 54 18 Z", fill: "currentColor", stroke: "none" })] }), jsxs("g", { "data-name": "Trac\u00E9 1384", fill: "none", id: "Trac\u00E9_1384", strokeMiterlimit: "10", children: [jsx("path", { d: "M50.95,6.95,46,2,41.05,6.95l1.414,1.414L45,5.828V18h2V5.828l2.536,2.536Z", stroke: "none" }), jsx("path", { d: "M 46 2 L 50.94977188110352 6.949709892272949 L 49.53551864624023 8.363949775695801 L 47 5.828370094299316 L 47 18 L 45 18 L 45 5.828370094299316 L 42.46448135375977 8.363949775695801 L 41.05022811889648 6.949709892272949 L 46 2 Z", fill: "currentColor", stroke: "none" })] })] }), jsx("rect", { "data-name": "Rectangle 6136", fill: "none", height: "20", id: "Rectangle_6136", transform: "translate(40)", width: "20" })] }) }) }));
|
|
3997
4010
|
}
|
|
3998
4011
|
|
|
3999
4012
|
function Summary({ color, size, ...nativeProps }) {
|
|
4000
|
-
return (jsx(IconBox, {
|
|
4013
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsxs("defs", { children: [jsx("clipPath", { id: "clip", children: jsx("use", {}) }), jsx("clipPath", { id: "clip-2", children: jsx("use", {}) }), jsx("clipPath", { id: "clip-3", children: jsx("use", {}) })] }), jsxs("g", { id: "Summary", transform: "translate(-200)", children: [jsx("path", { d: "M216,4V16H204V4h12M202,2V18h16V2Z", "data-name": "Trac\u00E9 1345", fill: "currentColor", id: "Trac\u00E9_1345" }), jsxs("g", { "data-name": "Rectangle 6085", fill: "none", id: "Rectangle_6085", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(206 6)", children: [jsx("rect", { height: "1.5", id: "fill", stroke: "none", width: "8" }), jsx("path", { clipPath: "url(#clip)", d: "M0,0.5h8M7,0v1.5M8,1h-8M1,1.5v-1.5", fill: "none" })] }), jsxs("g", { "data-name": "Rectangle 6086", fill: "none", id: "Rectangle_6086", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(206 9.25)", children: [jsx("rect", { height: "1.5", id: "fill-2", stroke: "none", width: "8" }), jsx("path", { clipPath: "url(#clip-2)", d: "M0,0.5h8M7,0v1.5M8,1h-8M1,1.5v-1.5", fill: "none" })] }), jsxs("g", { "data-name": "Rectangle 6087", fill: "none", id: "Rectangle_6087", stroke: "currentColor", strokeMiterlimit: "10", strokeWidth: "2", transform: "translate(206 12.5)", children: [jsx("rect", { height: "1.5", id: "fill-3", stroke: "none", width: "8" }), jsx("path", { clipPath: "url(#clip-3)", d: "M0,0.5h8M7,0v1.5M8,1h-8M1,1.5v-1.5", fill: "none" })] }), jsx("rect", { "data-name": "Rectangle 6088", fill: "none", height: "20", id: "Rectangle_6088", transform: "translate(200)", width: "20" })] })] }) }));
|
|
4001
4014
|
}
|
|
4002
4015
|
|
|
4003
4016
|
function Tag({ color, size, ...nativeProps }) {
|
|
4004
|
-
return (jsx(IconBox, {
|
|
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: "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" })] }) }) }));
|
|
4005
4018
|
}
|
|
4006
4019
|
|
|
4007
4020
|
function Vessel({ color, size, ...nativeProps }) {
|
|
4008
|
-
return (jsx(IconBox, {
|
|
4021
|
+
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" })] }) }) }));
|
|
4009
4022
|
}
|
|
4010
4023
|
|
|
4011
4024
|
function ViewOnMap({ color, size, ...nativeProps }) {
|
|
4012
|
-
return (jsx(IconBox, {
|
|
4025
|
+
return (jsx(IconBox, { "$size": size, color: color, children: jsxs("svg", { height: "20", id: "View_on_map", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M18.5,1.523l-6,2.4-5-2-6,2.4V18.477l6-2.4,5,2,6-2.4ZM3.5,5.677l3-1.2v9.846l-3,1.2Zm5,8.646V4.477l3,1.2v9.846Zm8,0-3,1.2V5.677l3-1.2Z", "data-name": "Trac\u00E9 1423", fill: "currentColor", id: "Trac\u00E9_1423" }), jsx("rect", { "data-name": "Rectangle 6169", fill: "none", height: "20", id: "Rectangle_6169", transform: "translate(0)", width: "20" })] }) }));
|
|
4013
4026
|
}
|
|
4014
4027
|
|
|
4015
4028
|
var index = /*#__PURE__*/Object.freeze({
|