@mtes-mct/monitor-ui 1.12.0 → 1.13.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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.12.1](https://github.com/MTES-MCT/monitor-ui/compare/v1.12.0...v1.12.1) (2022-12-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **icons:** use currentColor in new icons ([#119](https://github.com/MTES-MCT/monitor-ui/issues/119)) ([3937553](https://github.com/MTES-MCT/monitor-ui/commit/39375532354d24489ab3aeb024ebe5b2cb61772a))
7
+
8
+ # [1.12.0](https://github.com/MTES-MCT/monitor-ui/compare/v1.11.0...v1.12.0) (2022-12-13)
9
+
10
+
11
+ ### Features
12
+
13
+ * **icons:** update ([#117](https://github.com/MTES-MCT/monitor-ui/issues/117)) ([a242cc9](https://github.com/MTES-MCT/monitor-ui/commit/a242cc9a80b2eb5335cc1c466a28398df85ebed7))
14
+
1
15
  # [1.11.0](https://github.com/MTES-MCT/monitor-ui/compare/v1.10.2...v1.11.0) (2022-12-08)
2
16
 
3
17
 
File without changes
@@ -1,4 +1,4 @@
1
- import { Accent, Size } from '../contants';
1
+ import { Accent, Size } from '../constants';
2
2
  import type { IconProps } from '../types';
3
3
  import type { ButtonHTMLAttributes, FunctionComponent } from 'react';
4
4
  export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
@@ -1,4 +1,4 @@
1
- import { Accent, Size } from '../contants';
1
+ import { Accent, Size } from '../constants';
2
2
  import type { IconProps } from '../types';
3
3
  import type { ButtonHTMLAttributes, FunctionComponent } from 'react';
4
4
  export type IconButtonProps = Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'children'> & {
@@ -0,0 +1,3 @@
1
+ export declare const Disk: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
2
+ $color: string;
3
+ }, never>;
@@ -0,0 +1,3 @@
1
+ export declare enum TagBullet {
2
+ DISK = "DISK"
3
+ }
@@ -0,0 +1,30 @@
1
+ import { FunctionComponent, HTMLAttributes } from 'react';
2
+ import { Accent } from '../../constants';
3
+ import { TagBullet } from './constants';
4
+ import type { IconProps } from '../../types';
5
+ export type TagProps = HTMLAttributes<HTMLSpanElement> & {
6
+ Icon?: FunctionComponent<IconProps>;
7
+ accent?: Accent;
8
+ bullet?: TagBullet;
9
+ color?: string;
10
+ isLight?: boolean;
11
+ };
12
+ export declare function Tag({ accent, bullet, children, color, Icon, isLight, ...nativeProps }: TagProps): JSX.Element;
13
+ export declare const PrimaryTag: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
14
+ $color?: string | undefined;
15
+ $isLight: boolean;
16
+ } & {
17
+ $isLight: boolean;
18
+ }, never>;
19
+ export declare const SecondaryTag: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
20
+ $color?: string | undefined;
21
+ $isLight: boolean;
22
+ } & {
23
+ $isLight: boolean;
24
+ }, never>;
25
+ export declare const TertiaryTag: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
26
+ $color?: string | undefined;
27
+ $isLight: boolean;
28
+ } & {
29
+ $isLight: boolean;
30
+ }, never>;
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { Accent, Size } from './contants';
1
+ export { Accent, Size } from './constants';
2
2
  export { GlobalStyle } from './GlobalStyle';
3
3
  export { THEME } from './theme';
4
4
  export { ThemeProvider } from './ThemeProvider';
@@ -9,6 +9,7 @@ export { Fieldset } from './elements/Fieldset';
9
9
  export { IconButton } from './elements/IconButton';
10
10
  export { Label } from './elements/Label';
11
11
  export { Legend } from './elements/Legend';
12
+ export { Tag } from './elements/Tag';
12
13
  export { Checkbox } from './fields/Checkbox';
13
14
  export { DateRangePicker } from './fields/DateRangePicker';
14
15
  export { DatePicker } from './fields/DatePicker';
@@ -38,6 +39,7 @@ export type { FieldsetProps } from './elements/Fieldset';
38
39
  export type { IconButtonProps } from './elements/IconButton';
39
40
  export type { LabelProps } from './elements/Label';
40
41
  export type { LegendProps } from './elements/Legend';
42
+ export type { TagProps } from './elements/Tag';
41
43
  export type { CheckboxProps } from './fields/Checkbox';
42
44
  export type { DateRangePickerProps } from './fields/DateRangePicker';
43
45
  export type { DatePickerProps } from './fields/DatePicker';
package/index.js CHANGED
@@ -1487,6 +1487,79 @@ const StyledLabel = styled(Label) `
1487
1487
  padding: 0;
1488
1488
  `;
1489
1489
 
1490
+ var TagBullet;
1491
+ (function (TagBullet) {
1492
+ TagBullet["DISK"] = "DISK";
1493
+ })(TagBullet || (TagBullet = {}));
1494
+
1495
+ const Disk = styled.span `
1496
+ background-color: ${p => p.$color};
1497
+ border-radius: 50%;
1498
+ `;
1499
+
1500
+ function Tag$1({ accent, bullet, children, color, Icon, isLight = false, ...nativeProps }) {
1501
+ const commonChildren = useMemo(() => {
1502
+ const defaultColor = color || THEME.color.gunMetal;
1503
+ const bulletColor = accent
1504
+ ? {
1505
+ [Accent.PRIMARY]: THEME.color.gunMetal,
1506
+ [Accent.SECONDARY]: THEME.color.gunMetal,
1507
+ [Accent.TERTIARY]: THEME.color.white
1508
+ }[accent]
1509
+ : defaultColor;
1510
+ return (jsxs(Fragment, { children: [Icon && jsx(Icon, { size: 1 }), bullet === TagBullet.DISK && jsx(Disk, { "$color": bulletColor }), children] }));
1511
+ }, [accent, bullet, color, children, Icon]);
1512
+ const commonProps = useMemo(() => ({
1513
+ $isLight: isLight,
1514
+ children: commonChildren,
1515
+ ...nativeProps
1516
+ }), [commonChildren, isLight, nativeProps]);
1517
+ switch (accent) {
1518
+ case Accent.PRIMARY:
1519
+ return jsx(PrimaryTag, { ...commonProps });
1520
+ case Accent.SECONDARY:
1521
+ return jsx(SecondaryTag, { ...commonProps });
1522
+ case Accent.TERTIARY:
1523
+ return jsx(TertiaryTag, { ...commonProps });
1524
+ default:
1525
+ return jsx(Box$7, { "$color": color, ...commonProps });
1526
+ }
1527
+ }
1528
+ const Box$7 = styled.span `
1529
+ align-items: center;
1530
+ background-color: ${p => (p.$isLight ? p.theme.color.white : 'transparent')};
1531
+ border-radius: 11px;
1532
+ color: ${p => (p.$color ? p.$color : p.theme.color.gunMetal)};
1533
+ display: inline-flex;
1534
+ font-size: 13px;
1535
+ padding: 1px 8px 3px 8px;
1536
+
1537
+ /* Bullet components are a span */
1538
+ > span {
1539
+ height: 16px;
1540
+ margin-right: 4px;
1541
+ width: 16px;
1542
+ }
1543
+
1544
+ /* SVG Icon components are wrapped within a <div /> */
1545
+ > div {
1546
+ margin-right: 4px;
1547
+ }
1548
+ `;
1549
+ const PrimaryTag = styled(Box$7) `
1550
+ background-color: ${p => (p.$isLight ? p.theme.color.white : p.theme.color.gainsboro)};
1551
+ color: ${p => p.theme.color.gunMetal};
1552
+ `;
1553
+ // TODO Fix this color.
1554
+ const SecondaryTag = styled(Box$7) `
1555
+ background-color: ${p => (p.$isLight ? '#f6d012' : '#f6d012')};
1556
+ color: ${p => p.theme.color.gunMetal};
1557
+ `;
1558
+ const TertiaryTag = styled(Box$7) `
1559
+ background-color: ${p => (p.$isLight ? p.theme.color.charcoal : p.theme.color.charcoal)};
1560
+ color: ${p => p.theme.color.white};
1561
+ `;
1562
+
1490
1563
  function Checkbox({ label, onChange, ...originalProps }) {
1491
1564
  const key = useMemo(() => `${originalProps.name}-${String(originalProps.defaultChecked)}`, [originalProps.defaultChecked, originalProps.name]);
1492
1565
  const handleChange = useCallback((_, isChecked) => {
@@ -3814,7 +3887,7 @@ function Alert({ color, size, ...nativeProps }) {
3814
3887
  }
3815
3888
 
3816
3889
  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: "#707785", id: "Trac\u00E9_1464" })] }) }));
3890
+ 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
3891
  }
3819
3892
 
3820
3893
  function Archive({ color, size, ...nativeProps }) {
@@ -3942,7 +4015,7 @@ function List({ color, size, ...nativeProps }) {
3942
4015
  }
3943
4016
 
3944
4017
  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: "#707785", 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: "#707785", 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: "#707785", id: "Trac\u00E9_1447" })] })] }) }));
4018
+ 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
4019
  }
3947
4020
 
3948
4021
  function MeasureAngle({ color, size, ...nativeProps }) {
@@ -3962,7 +4035,7 @@ function MeasureLine({ color, size, ...nativeProps }) {
3962
4035
  }
3963
4036
 
3964
4037
  function Minus({ color, size, ...nativeProps }) {
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: "#707785", 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" })] }) }));
4038
+ 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" })] }) }));
3966
4039
  }
3967
4040
 
3968
4041
  function More({ color, size, ...nativeProps }) {
@@ -3970,7 +4043,7 @@ function More({ color, size, ...nativeProps }) {
3970
4043
  }
3971
4044
 
3972
4045
  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: "#707785", id: "Trac\u00E9_1466" }), jsx("rect", { "data-name": "Rectangle 6312", fill: "none", height: "20", id: "Rectangle_6312", width: "20" })] }) }));
4046
+ 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
4047
  }
3975
4048
 
3976
4049
  function Observation({ color, size, ...nativeProps }) {
@@ -3990,7 +4063,7 @@ function PinpointHide({ color, size, ...nativeProps }) {
3990
4063
  }
3991
4064
 
3992
4065
  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: "#707785", id: "Trac\u00E9_1465" }), jsx("rect", { "data-name": "Rectangle 6301", fill: "none", height: "20", id: "Rectangle_6301", width: "20" })] }) }));
4066
+ 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
4067
  }
3995
4068
 
3996
4069
  function Plus({ color, size, ...nativeProps }) {
@@ -4010,7 +4083,7 @@ function Search({ color, size, ...nativeProps }) {
4010
4083
  }
4011
4084
 
4012
4085
  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: "#707785", id: "Trac\u00E9_1476" })] }) }));
4086
+ 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
4087
  }
4015
4088
 
4016
4089
  function SelectPolygon({ color, size, ...nativeProps }) {
@@ -4046,7 +4119,7 @@ function Tag({ color, size, ...nativeProps }) {
4046
4119
  }
4047
4120
 
4048
4121
  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: "#707785", 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: "#707785", id: "Trac\u00E9_1474" })] })] })] }) }));
4122
+ 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
4123
  }
4051
4124
 
4052
4125
  function Vessel({ color, size, ...nativeProps }) {
@@ -4124,5 +4197,5 @@ var index = /*#__PURE__*/Object.freeze({
4124
4197
  ViewOnMap: ViewOnMap
4125
4198
  });
4126
4199
 
4127
- export { Accent, Button, Checkbox, DatePicker, DateRangePicker, Dropdown, Field$2 as Field, Fieldset, FormikCheckbox, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikSelect, FormikTextInput, FormikTextarea, GlobalStyle, index as Icon, IconButton, Label, Legend, MultiCheckbox, MultiRadio, MultiSelect, Select, Size, THEME, TextInput, Textarea, ThemeProvider };
4200
+ export { Accent, Button, Checkbox, DatePicker, DateRangePicker, Dropdown, Field$2 as Field, Fieldset, FormikCheckbox, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikSelect, FormikTextInput, FormikTextarea, GlobalStyle, index as Icon, IconButton, Label, Legend, MultiCheckbox, MultiRadio, MultiSelect, Select, Size, THEME, Tag$1 as Tag, TextInput, Textarea, ThemeProvider };
4128
4201
  //# sourceMappingURL=index.js.map