@org-design-system/icons 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +19 -0
- package/README.md +40 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.cts +107 -0
- package/dist/index.d.ts +107 -0
- package/dist/index.js +2 -0
- package/package.json +45 -0
- package/src/AccordianCaretCloseIcon.tsx +25 -0
- package/src/AccordianCaretOpenIcon.tsx +25 -0
- package/src/AdcsIcon.tsx +22 -0
- package/src/AddIcon.tsx +22 -0
- package/src/AddcustomIcon.tsx +25 -0
- package/src/AxisIcon.tsx +26 -0
- package/src/BatteryIcon.tsx +25 -0
- package/src/BusIcon.tsx +22 -0
- package/src/CatalogIcon.tsx +25 -0
- package/src/CheckIcon.tsx +22 -0
- package/src/ChevronDownIcon.tsx +25 -0
- package/src/ChevronLeftIcon.tsx +25 -0
- package/src/ChevronRightIcon.tsx +25 -0
- package/src/ChevronUpIcon.tsx +25 -0
- package/src/ComboIcon.tsx +22 -0
- package/src/CommsIcon.tsx +22 -0
- package/src/CrossIcon.tsx +22 -0
- package/src/CustomIcon.tsx +22 -0
- package/src/DashIcon.tsx +19 -0
- package/src/DashboardIcon.tsx +25 -0
- package/src/DocsIcon.tsx +22 -0
- package/src/DownloadIcon.tsx +25 -0
- package/src/EarthobservationIcon.tsx +25 -0
- package/src/EclipseIcon.tsx +25 -0
- package/src/EdgeIcon.tsx +22 -0
- package/src/EditIcon.tsx +22 -0
- package/src/EpsIcon.tsx +22 -0
- package/src/EyeCloseIcon.tsx +25 -0
- package/src/EyeOpenIcon.tsx +25 -0
- package/src/FilterIcon.tsx +22 -0
- package/src/GpsIcon.tsx +22 -0
- package/src/GroundStationIcon.tsx +25 -0
- package/src/InfoIcon.tsx +22 -0
- package/src/LoadComponentsIcon.tsx +25 -0
- package/src/MassIcon.tsx +22 -0
- package/src/MissionDesignIcon.tsx +25 -0
- package/src/MissionIcon.tsx +25 -0
- package/src/NotificationsIcon.tsx +25 -0
- package/src/PayloadIcon.tsx +25 -0
- package/src/ProcessorIcon.tsx +25 -0
- package/src/RadioIcon.tsx +22 -0
- package/src/ReviewSatelliteIcon.tsx +25 -0
- package/src/RocketIcon.tsx +22 -0
- package/src/SatelliteIcon.tsx +25 -0
- package/src/SearchIcon.tsx +22 -0
- package/src/SettingsIcon.tsx +33 -0
- package/src/SizeIcon.tsx +22 -0
- package/src/SolarGenerationIcon.tsx +25 -0
- package/src/SunlitIcon.tsx +22 -0
- package/src/TempIcon.tsx +22 -0
- package/src/ThrusterIcon.tsx +25 -0
- package/src/UploadIcon.tsx +22 -0
- package/src/UsersIcon.tsx +22 -0
- package/src/index.ts +53 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgAddcustomIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M13.592 5.212a.93.93 0 0 0-.457-.685L8.468 1.861h-.001a.93.93 0 0 0-.934 0L2.864 4.527a.93.93 0 0 0-.465.807v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001a.93.93 0 0 0 .934 0l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM7.6 10.668V8.4H5.334a.4.4 0 0 1 0-.8H7.6V5.335a.4.4 0 0 1 .8 0V7.6h2.268a.4.4 0 0 1 0 .8H8.4v2.268a.4.4 0 0 1-.8 0m6.8-.001-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-1.73 0l-4.667-2.665-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const AddcustomIcon = forwardRef(SvgAddcustomIcon) as any;
|
|
25
|
+
export default AddcustomIcon;
|
package/src/AxisIcon.tsx
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgAxisIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M2.933 2a.4.4 0 0 1 .8 0v10.267H14a.4.4 0 0 1 0 .8H3.333a.4.4 0 0 1-.4-.4z"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
d="M7.05 8.383a.4.4 0 0 1 .567.567l-4 4a.4.4 0 0 1-.567-.566zM3.114 1.666a.4.4 0 0 1 .503.05l2 2a.4.4 0 0 1-.567.567L3.333 2.566 1.617 4.283a.4.4 0 0 1-.567-.566l2-2zM11.717 10.384a.4.4 0 0 1 .566 0l2 2a.4.4 0 0 1 0 .566l-2 2a.4.4 0 0 1-.566-.566l1.717-1.717-1.717-1.717a.4.4 0 0 1 0-.566"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
const AxisIcon = forwardRef(SvgAxisIcon) as any;
|
|
26
|
+
export default AxisIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgBatteryIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M11.2 6.2a.8.8 0 0 0-.8-.8H3.2a.8.8 0 0 0-.8.8v3.6a.8.8 0 0 0 .8.8h7.2a.8.8 0 0 0 .8-.8zM4 8.6V7.4a.4.4 0 1 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0m4.8 0V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M12 9.8a1.6 1.6 0 0 1-1.6 1.6H3.2c-.883 0-1.6-.716-1.6-1.6V6.2c0-.883.717-1.6 1.6-1.6h7.2A1.6 1.6 0 0 1 12 6.2z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const BatteryIcon = forwardRef(SvgBatteryIcon) as any;
|
|
25
|
+
export default BatteryIcon;
|
package/src/BusIcon.tsx
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgBusIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M8 1.8c.29 0 .575.08.823.229l1.8 1.08h.001a1.6 1.6 0 0 1 .775 1.368v2.397l2.225 1.335c.23.138.42.332.555.563l.009.012.003.007.09.185a1.6 1.6 0 0 1 .12.602v1.945a1.6 1.6 0 0 1-.608 1.25l-.169.118-1.8 1.08c-.228.137-.487.211-.753.223q-.034.008-.07.009a.4.4 0 0 1-.071-.008 1.6 1.6 0 0 1-.56-.125l-.194-.099L8 12.666l-2.176 1.305a1.6 1.6 0 0 1-.755.224.4.4 0 0 1-.069.008q-.038-.001-.072-.01a1.6 1.6 0 0 1-.559-.123l-.193-.099-1.8-1.08a1.6 1.6 0 0 1-.776-1.368V9.578a1.6 1.6 0 0 1 .776-1.369L4.6 6.874V4.477a1.6 1.6 0 0 1 .776-1.368l1.8-1.08.192-.099c.2-.085.414-.13.632-.13m-5.6 9.721.007.102a.8.8 0 0 0 .381.583l1.8 1.08.012.005v-2.366L2.4 9.603zm3-.595v2.365l.012-.005v-.001l2.189-1.312V9.606zm3 1.047 2.188 1.313.012.005v-2.365l-2.2-1.32zm3-1.047v2.365l.012-.005 1.8-1.08a.8.8 0 0 0 .388-.684V9.603zM2.788 8.895l-.007.004 2.22 1.334L7.22 8.9l-2.22-1.334zm5.99.005 2.221 1.333 2.219-1.334-.006-.004-2.213-1.33zM5.4 6.874l2.2 1.319V5.826L5.4 4.503zm3-1.048v2.367l2.2-1.32v-2.37zM8 2.6a.8.8 0 0 0-.412.114l-1.8 1.08q-.003.001-.007.004l2.22 1.334L10.217 3.8q-.003 0-.006-.004l-1.8-1.08A.8.8 0 0 0 8 2.601"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const BusIcon = forwardRef(SvgBusIcon) as any;
|
|
22
|
+
export default BusIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgCatalogIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M5.593 6.8c.302.001.597.086.855.243l.002.001 1.938 1.193.094.063a1.7 1.7 0 0 1 .515.587c.14.263.21.56.202.858v2.124c.004.3-.071.598-.217.86a1.7 1.7 0 0 1-.611.633l-1.9 1.187-.006.005-.001-.001a1.66 1.66 0 0 1-.761.231.4.4 0 0 1-.103.016.4.4 0 0 1-.111-.018c-.26-.02-.513-.1-.737-.237H4.75L2.812 13.35a1.7 1.7 0 0 1-.61-.65 1.74 1.74 0 0 1-.201-.87V9.718c-.004-.3.07-.598.216-.86.147-.265.36-.485.62-.638l1.892-1.182.007-.005.099-.054c.234-.12.494-.181.758-.18m6.807 6V3.2A1.2 1.2 0 0 0 11.2 2H4.8a1.2 1.2 0 0 0-1.2 1.2v2.267a.4.4 0 0 1-.8 0V3.199a2 2 0 0 1 2-2h6.4a2 2 0 0 1 2 2v9.6a2 2 0 0 1-2 2H9.44a.4.4 0 0 1 0-.799h1.76a1.2 1.2 0 0 0 1.2-1.2M6 11.346v2.548q.026-.013.05-.027l1.906-1.188a.9.9 0 0 0 .327-.338.94.94 0 0 0 .116-.466V9.881zm-3.2.51a.94.94 0 0 0 .109.47.9.9 0 0 0 .322.343l1.937 1.192.032.016v-2.531L2.8 9.88zM5.59 7.6a.86.86 0 0 0-.444.122V7.72L3.252 8.904l-.01.005a.9.9 0 0 0-.21.176l2.566 1.567 2.568-1.566a.9.9 0 0 0-.198-.167L6.03 7.726a.86.86 0 0 0-.44-.126"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const CatalogIcon = forwardRef(SvgCatalogIcon) as any;
|
|
25
|
+
export default CatalogIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgCheckIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M11.926 3.363a.4.4 0 1 1 .648.467l-5.62 7.807a.4.4 0 0 1-.605.052l-3.38-3.322a.4.4 0 1 1 .561-.57l3.046 2.994z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const CheckIcon = forwardRef(SvgCheckIcon) as any;
|
|
22
|
+
export default CheckIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgChevronDownIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M13.66 4.66a.481.481 0 0 1 .68.68l-6 6a.48.48 0 0 1-.68 0l-6-6a.481.481 0 0 1 .68-.68L8 10.32z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const ChevronDownIcon = forwardRef(SvgChevronDownIcon) as any;
|
|
25
|
+
export default ChevronDownIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgChevronLeftIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M4.66 1.66a.48.48 0 0 1 .68 0l6 6a.48.48 0 0 1 0 .68l-6 6a.481.481 0 0 1-.68-.68L10.32 8 4.66 2.34a.48.48 0 0 1 0-.68"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const ChevronLeftIcon = forwardRef(SvgChevronLeftIcon) as any;
|
|
25
|
+
export default ChevronLeftIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgChevronRightIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M10.66 1.66a.481.481 0 0 1 .68.68L5.68 8l5.66 5.66a.481.481 0 0 1-.68.68l-6-6a.48.48 0 0 1 0-.68z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const ChevronRightIcon = forwardRef(SvgChevronRightIcon) as any;
|
|
25
|
+
export default ChevronRightIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgChevronUpIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M7.736 4.599a.48.48 0 0 1 .604.061l6 6a.481.481 0 0 1-.68.68L8 5.68l-5.66 5.66a.481.481 0 0 1-.68-.68l6-6z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const ChevronUpIcon = forwardRef(SvgChevronUpIcon) as any;
|
|
25
|
+
export default ChevronUpIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgComboIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M11.717 9.717a.4.4 0 0 1 .566.566l-4 4a.4.4 0 0 1-.566 0l-4-4a.4.4 0 0 1 .566-.566L8 13.434zM8 1.6a.4.4 0 0 1 .283.117l4 4a.4.4 0 0 1-.566.566L8 2.566 4.283 6.283a.4.4 0 0 1-.566-.566l4-4 .061-.05A.4.4 0 0 1 8 1.6"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const ComboIcon = forwardRef(SvgComboIcon) as any;
|
|
22
|
+
export default ComboIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgCommsIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M2.616 6.27a.4.4 0 0 1 .334.114L6 9.434l1.718-1.717a.4.4 0 0 1 .565.566L6.565 10l3.051 3.05a.4.4 0 0 1-.08.629 5.274 5.274 0 0 1-7.214-7.214l.055-.073a.4.4 0 0 1 .239-.121m.157 1.068a4.474 4.474 0 0 0 5.888 5.889zm8.16 1.329a3.6 3.6 0 0 0-3.6-3.6.4.4 0 1 1 0-.8 4.4 4.4 0 0 1 4.4 4.4.4.4 0 1 1-.8 0m2.667 0A6.27 6.27 0 0 0 7.334 2.4a.4.4 0 0 1 0-.8A7.07 7.07 0 0 1 14.4 8.667a.4.4 0 0 1-.8 0"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const CommsIcon = forwardRef(SvgCommsIcon) as any;
|
|
22
|
+
export default CommsIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgCrossIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M11.888 3.403a.5.5 0 1 1 .707.707L8.705 8l3.89 3.892a.501.501 0 0 1-.707.708L7.997 8.708 4.11 12.596a.5.5 0 0 1-.707-.707L7.29 8 3.403 4.114a.501.501 0 0 1 .707-.708l3.888 3.888z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const CrossIcon = forwardRef(SvgCrossIcon) as any;
|
|
22
|
+
export default CrossIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgCustomIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M13.592 5.212a.93.93 0 0 0-.457-.685L8.468 1.861h-.001a.93.93 0 0 0-.934 0L2.864 4.527a.93.93 0 0 0-.465.807v5.333a.93.93 0 0 0 .464.805h.001l4.667 2.667.001.001a.93.93 0 0 0 .934 0l4.668-2.668a.93.93 0 0 0 .465-.805V5.334zM9.2 8A1.2 1.2 0 1 0 6.8 8 1.2 1.2 0 0 0 9.2 8m.8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4.4 2.667-.015.226a1.74 1.74 0 0 1-.852 1.274l-4.668 2.667v-.001a1.73 1.73 0 0 1-1.73 0l-4.667-2.665-.001-.001a1.73 1.73 0 0 1-.852-1.274l-.015-.226V5.333a1.73 1.73 0 0 1 .867-1.5l4.668-2.667a1.73 1.73 0 0 1 1.73 0l4.667 2.667h.001a1.73 1.73 0 0 1 .867 1.5z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const CustomIcon = forwardRef(SvgCustomIcon) as any;
|
|
22
|
+
export default CustomIcon;
|
package/src/DashIcon.tsx
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgDashIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path fill="currentColor" d="M12 7.6a.4.4 0 0 1 0 .8H4a.4.4 0 0 1 0-.8z" />
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
const DashIcon = forwardRef(SvgDashIcon) as any;
|
|
19
|
+
export default DashIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgDashboardIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M5.646 13.859v.8H2.852v-.8zm7.507 0v.8H10.36v-.8zm.7-.7v-2.794a.7.7 0 0 0-.7-.7H10.36a.7.7 0 0 0-.7.7v2.794a.7.7 0 0 0 .7.7v.8l-.153-.008a1.5 1.5 0 0 1-1.339-1.339l-.008-.153v-2.794a1.5 1.5 0 0 1 1.347-1.492l.153-.008h2.794l.154.008a1.5 1.5 0 0 1 1.346 1.492v2.794l-.007.153a1.5 1.5 0 0 1-1.34 1.339l-.153.008v-.8a.7.7 0 0 0 .7-.7m-7.507 0V2.828a.7.7 0 0 0-.7-.7H2.852a.7.7 0 0 0-.7.7v10.33a.7.7 0 0 0 .7.7v.8l-.154-.007a1.5 1.5 0 0 1-1.339-1.339l-.007-.153V2.828a1.5 1.5 0 0 1 1.5-1.5h2.794a1.5 1.5 0 0 1 1.5 1.5v10.33l-.008.154a1.5 1.5 0 0 1-1.34 1.339l-.152.008v-.8a.7.7 0 0 0 .7-.7m6.807-6.838v.8H10.36v-.8zm.7-.7V2.828a.7.7 0 0 0-.7-.7H10.36a.7.7 0 0 0-.7.7V5.62a.7.7 0 0 0 .7.7v.8l-.153-.008a1.5 1.5 0 0 1-1.339-1.34l-.008-.152V2.828a1.5 1.5 0 0 1 1.347-1.493l.153-.007h2.794l.154.007a1.5 1.5 0 0 1 1.346 1.493V5.62l-.007.153a1.5 1.5 0 0 1-1.34 1.339l-.153.008v-.8a.7.7 0 0 0 .7-.7"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const DashboardIcon = forwardRef(SvgDashboardIcon) as any;
|
|
25
|
+
export default DashboardIcon;
|
package/src/DocsIcon.tsx
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgDocsIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M2.276 13.333V2.666A1.72 1.72 0 0 1 3.999.943h6c.103 0 .203.041.276.114l3.333 3.333a.4.4 0 0 1 .114.276v.647l.002.02-.002.02v7.98A1.724 1.724 0 0 1 12 15.056h-8a1.724 1.724 0 0 1-1.723-1.723m8.392-2.39a.39.39 0 1 1 0 .78H5.335a.39.39 0 1 1 0-.78zm0-2.666a.39.39 0 0 1 0 .78H5.335a.391.391 0 0 1 0-.78zm-4-2.667a.39.39 0 1 1 0 .78H5.335a.391.391 0 0 1 0-.78zM9.724 4a.944.944 0 0 0 .944.943h2.274v-.116L9.837 1.722h-.113zm-6.669 9.333a.944.944 0 0 0 .944.943h8a.944.944 0 0 0 .943-.943v-7.61h-2.274A1.724 1.724 0 0 1 8.944 4V1.722H3.999a.944.944 0 0 0-.944.944z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const DocsIcon = forwardRef(SvgDocsIcon) as any;
|
|
22
|
+
export default DocsIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgDownloadIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M1.6 12.667V10a.4.4 0 0 1 .8 0v2.667a.93.93 0 0 0 .933.933h9.334a.933.933 0 0 0 .933-.933V10a.4.4 0 0 1 .8 0v2.667a1.734 1.734 0 0 1-1.733 1.733H3.333A1.734 1.734 0 0 1 1.6 12.667M7.6 2a.4.4 0 0 1 .8 0v7.033l2.65-2.65a.4.4 0 0 1 .566.566l-3.333 3.334a.4.4 0 0 1-.566 0L4.384 6.95a.4.4 0 0 1 .565-.565l2.65 2.65z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const DownloadIcon = forwardRef(SvgDownloadIcon) as any;
|
|
25
|
+
export default DownloadIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEarthobservationIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M11.691 3.074c.662 0 1.228.48 1.336 1.133l1.184 7.144c.136.825-.5 1.574-1.336 1.574h-9.75c-.836 0-1.472-.75-1.336-1.574l1.185-7.144a1.354 1.354 0 0 1 1.335-1.133zm-4.15.8c.288.27.603.58.904.9.322.34.636.7.892 1.036.249.328.467.668.567.965.482 1.427.052 2.73-.907 3.702-.556.564-1.138.88-1.723.986a2.6 2.6 0 0 1-1.617-.242c-.947-.46-1.66-1.403-1.965-2.23-.08-.219-.178-.338-.26-.404a.5.5 0 0 0-.247-.11 1 1 0 0 0-.108-.007l-.499 3.012a.554.554 0 0 0 .547.644h2l.085-.002a11.801 11.801 0 0 0 1.392-.126c.858-.131 1.827-.387 2.464-.859.937-.694 1.85-1.684 1.995-2.824.06-.474.049-.851-.061-1.198-.11-.345-.326-.696-.732-1.095-.473-.466-.688-1.064-.578-1.637.035-.182.106-.353.2-.51zm3.546 0c-.38.158-.563.413-.61.662-.052.266.036.604.352.916.473.465.775.924.934 1.425.157.497.16 1.002.092 1.539-.187 1.476-1.33 2.638-2.313 3.366q-.264.194-.566.344h3.899a.554.554 0 0 0 .547-.644l-1.185-7.144a.55.55 0 0 0-.546-.463zm-4.89 0c.585.498 1.264 1.103 1.798 1.748.413.5.77 1.054.928 1.636.163.599.115 1.225-.273 1.815-.312.475-.677.811-1.089.986-.419.178-.852.175-1.261.033-.793-.273-1.486-1.056-1.99-2.03a1.31 1.31 0 0 0-.833-.68 2 2 0 0 0-.212-.046l-.056.34q.047.003.097.01c.202.03.427.111.635.282.208.172.38.417.501.746.248.672.839 1.434 1.566 1.788.355.172.734.244 1.125.173.391-.07.83-.29 1.294-.76.777-.788 1.091-1.783.72-2.884-.057-.168-.209-.421-.448-.736a12 12 0 0 0-.836-.973c-.566-.6-1.17-1.155-1.531-1.447zm-1.888 0a.55.55 0 0 0-.546.464l-.368 2.209q.142.02.304.067c.441.127.98.423 1.32 1.08.468.901 1.034 1.467 1.541 1.643q.359.126.688-.014c.227-.097.48-.304.734-.69.245-.372.28-.755.168-1.165-.116-.425-.391-.877-.771-1.337-.725-.875-1.724-1.664-2.417-2.256z"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const EarthobservationIcon = forwardRef(SvgEarthobservationIcon) as any;
|
|
25
|
+
export default EarthobservationIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEclipseIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M8 2.4a.401.401 0 0 1 .282.683c-1.259 1.26-1.258 3.375.001 4.634 1.26 1.26 3.374 1.26 4.633 0A.401.401 0 0 1 13.6 8 5.601 5.601 0 0 1 2.4 8 5.6 5.6 0 0 1 8 2.4M3.2 8a4.8 4.8 0 0 0 9.517.878c-1.564.94-3.66.743-4.999-.595S6.18 4.845 7.12 3.28A4.8 4.8 0 0 0 3.2 7.999"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const EclipseIcon = forwardRef(SvgEclipseIcon) as any;
|
|
25
|
+
export default EclipseIcon;
|
package/src/EdgeIcon.tsx
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEdgeIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M4 10.4q.001-.109.055-.2H2.401v.8a.8.8 0 0 0 .8.8H4zm1.2-3V6.2a.4.4 0 1 1 .8 0v1.2a.4.4 0 0 1-.8 0m2.4 0V6.2a.4.4 0 0 1 .8 0v1.2a.4.4 0 1 1-.8 0m2.4 0V6.2a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0M13.6 5a.8.8 0 0 0-.8-.8H3.2a.8.8 0 0 0-.8.8v.371a1.6 1.6 0 0 1 .543 2.376c-.145.193-.33.349-.542.46V9.4H13.6V8.228a1.6 1.6 0 0 1-.542-.458 1.602 1.602 0 0 1 .542-2.377zm-8.8 6.8h1.6v-1.4q.002-.109.054-.2H4.745a.4.4 0 0 1 .055.2zm2.4 0h1.6v-1.4a.4.4 0 0 1 .055-.2h-1.71a.4.4 0 0 1 .054.2zm2.4 0h1.6v-1.4c0-.072.021-.14.055-.2h-1.71a.4.4 0 0 1 .055.2zm2.4 0h.8a.8.8 0 0 0 .8-.8v-.8h-1.654a.4.4 0 0 1 .054.2zm2.4-6.14a.4.4 0 0 1-.286.384.8.8 0 0 0-.416 1.246c.104.138.25.24.416.288a.4.4 0 0 1 .287.384V11a1.6 1.6 0 0 1-1.6 1.6H3.2A1.6 1.6 0 0 1 1.6 11V7.94a.4.4 0 0 1 .287-.384.8.8 0 0 0 0-1.534.4.4 0 0 1-.287-.384V5a1.6 1.6 0 0 1 1.6-1.6h9.6A1.6 1.6 0 0 1 14.4 5z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const EdgeIcon = forwardRef(SvgEdgeIcon) as any;
|
|
22
|
+
export default EdgeIcon;
|
package/src/EditIcon.tsx
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEditIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M9.003 13.6a.4.4 0 0 1 0 .8H3.169a.4.4 0 0 1 0-.8zm2.93-9.186a1.014 1.014 0 0 0-1.73-.717l-6.01 6.01a.93.93 0 0 0-.236.397l-.525 1.797 1.797-.525a.93.93 0 0 0 .399-.235l6.009-6.01c.19-.19.297-.448.297-.717m.8 0c0 .481-.19.943-.53 1.283l-6.01 6.01c-.205.205-.46.356-.739.438l-1.915.56a.735.735 0 0 1-.916-.522.74.74 0 0 1 .007-.388l.56-1.916.074-.204c.086-.199.21-.38.364-.534l6.009-6.01a1.814 1.814 0 0 1 3.096 1.283"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const EditIcon = forwardRef(SvgEditIcon) as any;
|
|
22
|
+
export default EditIcon;
|
package/src/EpsIcon.tsx
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEpsIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M1.6 9.8V6.2a1.6 1.6 0 0 1 1.6-1.6h1.2a.4.4 0 0 1 0 .8H3.2a.8.8 0 0 0-.8.8v3.6a.8.8 0 0 0 .8.8h.6a.4.4 0 1 1 0 .8h-.6a1.6 1.6 0 0 1-1.6-1.6m9.6 0V6.2a.8.8 0 0 0-.8-.8h-.6a.4.4 0 0 1 0-.8h.6A1.6 1.6 0 0 1 12 6.2v3.6a1.6 1.6 0 0 1-1.6 1.6H9.2a.4.4 0 0 1 0-.8h1.2a.8.8 0 0 0 .8-.8M7.058 4.794a.4.4 0 0 1 .685.412L6.307 7.601H8a.4.4 0 0 1 .343.605l-1.8 3a.4.4 0 0 1-.686-.412L7.293 8.4H5.601a.401.401 0 0 1-.344-.606zM13.6 8.6V7.4a.4.4 0 0 1 .8 0v1.2a.4.4 0 0 1-.8 0"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const EpsIcon = forwardRef(SvgEpsIcon) as any;
|
|
22
|
+
export default EpsIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEyeCloseIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M13.624 5.68a.4.4 0 0 1 .752.274A6.79 6.79 0 0 1 4.109 9.189a6.8 6.8 0 0 1-2.485-3.235.4.4 0 0 1 .752-.273 5.987 5.987 0 0 0 11.248 0"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const EyeCloseIcon = forwardRef(SvgEyeCloseIcon) as any;
|
|
25
|
+
export default EyeCloseIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgEyeOpenIcon = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
width="1em"
|
|
11
|
+
height="1em"
|
|
12
|
+
fill="none"
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
className="org-icon"
|
|
15
|
+
ref={ref}
|
|
16
|
+
{...props}
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
d="M8 3.4a6.85 6.85 0 0 1 6.332 4.238l.006.014c.083.225.083.472 0 .696l-.006.013a6.85 6.85 0 0 1-6.078 4.233L8 12.6a6.85 6.85 0 0 1-6.332-4.238l-.006-.013a1 1 0 0 1 0-.696l.006-.014A6.85 6.85 0 0 1 8 3.4m0 .8a6.05 6.05 0 0 0-5.589 3.734.2.2 0 0 0 0 .132A6.05 6.05 0 0 0 8 11.8l.225-.004a6.05 6.05 0 0 0 5.363-3.73.2.2 0 0 0 0-.132A6.05 6.05 0 0 0 8 4.201M8.8 8a.8.8 0 1 0-1.6 0 .8.8 0 0 0 1.6 0m.8 0a1.6 1.6 0 1 1-3.2 0 1.6 1.6 0 0 1 3.2 0"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
const EyeOpenIcon = forwardRef(SvgEyeOpenIcon) as any;
|
|
25
|
+
export default EyeOpenIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgFilterIcon = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width="1em"
|
|
8
|
+
height="1em"
|
|
9
|
+
fill="none"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
className="org-icon"
|
|
12
|
+
ref={ref}
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="M10 12.267a.4.4 0 1 1 0 .8H6a.4.4 0 0 1 0-.8zM12 7.6a.4.4 0 0 1 0 .8H4a.4.4 0 1 1 0-.8zm2.666-4.667a.4.4 0 0 1 0 .8H1.333a.4.4 0 0 1 0-.8z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
const FilterIcon = forwardRef(SvgFilterIcon) as any;
|
|
22
|
+
export default FilterIcon;
|