@factorialco/f0-react-native 0.20.1 → 0.22.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/README.md +106 -27
- package/package.json +43 -25
- package/src/components/Avatars/DateAvatar/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Avatars/DateAvatar/index.tsx +1 -1
- package/src/components/Avatars/EmojiAvatar/__snapshots__/index.spec.tsx.snap +3 -3
- package/src/components/Avatars/EmojiAvatar/index.tsx +1 -1
- package/src/components/__tests__/ExampleComponent.spec.tsx +11 -11
- package/src/icons/app/Ascending.tsx +19 -0
- package/src/icons/app/Balance.tsx +28 -0
- package/src/icons/app/CardPin.tsx +24 -0
- package/src/icons/app/Chip.tsx +21 -0
- package/src/icons/app/ClockBack.tsx +19 -0
- package/src/icons/app/ClockPlus.tsx +27 -0
- package/src/icons/app/Cloud.tsx +20 -0
- package/src/icons/app/Command.tsx +31 -0
- package/src/icons/app/Computer.tsx +25 -0
- package/src/icons/app/Contactless.tsx +21 -0
- package/src/icons/app/CornerHandle.tsx +21 -0
- package/src/icons/app/Descending.tsx +19 -0
- package/src/icons/app/DollarReset.tsx +31 -0
- package/src/icons/app/Equal.tsx +21 -0
- package/src/icons/app/EqualApproximately.tsx +21 -0
- package/src/icons/app/EqualGreater.tsx +21 -0
- package/src/icons/app/EqualLess.tsx +21 -0
- package/src/icons/app/FileSigned.tsx +21 -0
- package/src/icons/app/Files.tsx +21 -0
- package/src/icons/app/Flask.tsx +20 -0
- package/src/icons/app/Greater.tsx +21 -0
- package/src/icons/app/Group.tsx +21 -0
- package/src/icons/app/GroupBy.tsx +21 -0
- package/src/icons/app/Handle.tsx +21 -0
- package/src/icons/app/HardDrive.tsx +25 -0
- package/src/icons/app/Headset.tsx +25 -0
- package/src/icons/app/InputField.tsx +21 -0
- package/src/icons/app/Keyboard.tsx +21 -0
- package/src/icons/app/Less.tsx +21 -0
- package/src/icons/app/MessageFilled.tsx +24 -0
- package/src/icons/app/Moon.tsx +21 -0
- package/src/icons/app/Mouse.tsx +20 -0
- package/src/icons/app/Numbers.tsx +21 -0
- package/src/icons/app/Organization.tsx +25 -0
- package/src/icons/app/Password.tsx +32 -0
- package/src/icons/app/PersonMinus.tsx +19 -0
- package/src/icons/app/PersonNegative.tsx +27 -0
- package/src/icons/app/PersonPlus.tsx +19 -0
- package/src/icons/app/Pig.tsx +41 -0
- package/src/icons/app/Shield.tsx +20 -0
- package/src/icons/app/SignPost.tsx +22 -0
- package/src/icons/app/Sleep.tsx +21 -0
- package/src/icons/app/Sort.tsx +5 -5
- package/src/icons/app/Swap.tsx +21 -0
- package/src/icons/app/Tablet.tsx +21 -0
- package/src/icons/app/ThumbsDown.tsx +21 -0
- package/src/icons/app/ThumbsDownFilled.tsx +19 -0
- package/src/icons/app/ThumbsUp.tsx +21 -0
- package/src/icons/app/ThumbsUpFilled.tsx +19 -0
- package/src/icons/app/Upsell.tsx +19 -0
- package/src/icons/app/index.ts +49 -0
- package/src/icons/modules/Complaints.tsx +21 -0
- package/src/icons/modules/ItManagement.tsx +19 -0
- package/src/icons/modules/Meetings.tsx +19 -0
- package/src/icons/modules/Pages.tsx +21 -0
- package/src/icons/modules/SalaryAdvance.tsx +21 -0
- package/src/icons/modules/index.ts +5 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import Svg, { Path, Rect } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgPig = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
d="M16.996 5.392c-.529 0-1.038.201-1.424.562l-.31.29c-.408.38-.966.54-1.523.54h-2.782a6.26 6.26 0 0 0-5.013 10.01c.475.633.84 1.367.84 2.159v.35c0 .768.622 1.391 1.39 1.391h1.995c.489 0 .941-.256 1.193-.675l.143-.239a.983.983 0 0 1 1.685 0l.144.239c.251.419.704.675 1.192.675h1.995c.768 0 1.391-.623 1.391-1.39v-.876c0-.457.203-.886.507-1.228.357-.4.848-.68 1.385-.68h.195c.768 0 1.39-.622 1.39-1.39v-1.391c0-.768-.622-1.391-1.39-1.391a.043.043 0 0 1-.043-.038 6.25 6.25 0 0 0-2.044-3.933V6.088a.696.696 0 0 0-.695-.696z"
|
|
16
|
+
/>
|
|
17
|
+
<Rect
|
|
18
|
+
width={1.391}
|
|
19
|
+
height={1.391}
|
|
20
|
+
x={14.782}
|
|
21
|
+
y={11.305}
|
|
22
|
+
fill="currentColor"
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
rx={0.696}
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
fill="currentColor"
|
|
28
|
+
d="M3.26 10.261a.65.65 0 1 0-1.3 0zm1.472 2.678-.107-.641a1 1 0 0 1-.798-.214c-.247-.207-.567-.69-.567-1.823h-1.3c0 1.371.394 2.285 1.033 2.82.626.523 1.363.58 1.846.5z"
|
|
29
|
+
/>
|
|
30
|
+
<Rect
|
|
31
|
+
width={3.478}
|
|
32
|
+
height={3.478}
|
|
33
|
+
x={8.87}
|
|
34
|
+
y={3.306}
|
|
35
|
+
stroke="currentColor"
|
|
36
|
+
rx={1.739}
|
|
37
|
+
/>
|
|
38
|
+
</Svg>
|
|
39
|
+
);
|
|
40
|
+
const ForwardRef = forwardRef(SvgPig);
|
|
41
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgShield = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
d="M5 11.404V6l1.638-.468a16 16 0 0 0 3.543-1.493L12 3l1.819 1.04a16 16 0 0 0 3.543 1.492L19 6v5.404c0 1.72-.215 3.49-1.281 4.84C15.6 18.923 12 21 12 21s-3.601-2.077-5.719-4.756C5.215 14.894 5 13.124 5 11.404Z"
|
|
16
|
+
/>
|
|
17
|
+
</Svg>
|
|
18
|
+
);
|
|
19
|
+
const ForwardRef = forwardRef(SvgShield);
|
|
20
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgSignPost = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path stroke="currentColor" strokeLinecap="round" d="M9 20h6" />
|
|
13
|
+
<Path
|
|
14
|
+
stroke="currentColor"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
d="M12 20v-7M12 6V3M16.558 13H5.6c-.56 0-.84 0-1.054-.109a1 1 0 0 1-.437-.437C4 12.24 4 11.96 4 11.4V7.6c0-.56 0-.84.109-1.054a1 1 0 0 1 .437-.437C4.76 6 5.04 6 5.6 6h10.958c.546 0 .82 0 1.073.068a2 2 0 0 1 .627.291c.216.15.392.359.744.776h0L21 9.5l-1.998 2.365c-.352.417-.528.626-.744.776a2 2 0 0 1-.627.291c-.254.068-.527.068-1.073.068"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
const ForwardRef = forwardRef(SvgSignPost);
|
|
22
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgSleep = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
d="M10.5 20.5h-7l7-7h-7M20.5 10.5h-7l7-7h-7"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgSleep);
|
|
21
|
+
export default ForwardRef;
|
package/src/icons/app/Sort.tsx
CHANGED
|
@@ -4,16 +4,16 @@ import { Ref, forwardRef } from "react";
|
|
|
4
4
|
const SvgSort = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
5
|
<Svg
|
|
6
6
|
fill="none"
|
|
7
|
-
viewBox="0 0
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
8
|
className={props.className}
|
|
9
9
|
ref={ref}
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
<Path
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
d="M16 9v9m0 0-3-3m3 3 3-3M8 15V6m0 0L5 9m3-3 3 3"
|
|
17
17
|
/>
|
|
18
18
|
</Svg>
|
|
19
19
|
);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgSwap = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
d="M15 16H6m0 0 3-3m-3 3 3 3M9 8h9m0 0-3-3m3 3-3 3"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgSwap);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgTablet = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
d="M8 4h8a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Z"
|
|
16
|
+
/>
|
|
17
|
+
<Path stroke="currentColor" strokeLinecap="round" d="M12 16v.1" />
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgTablet);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgThumbsDown = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
d="M20 8v3a2 2 0 0 1-2 2h-1.48a1 1 0 0 0-.819.427l-2.808 4.012a1.315 1.315 0 0 1-2.393-.754V14H6.062a2 2 0 0 1-1.94-2.485l.81-3.243A3 3 0 0 1 7.842 6H18a2 2 0 0 1 2 2M16 6v7"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgThumbsDown);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgThumbsDownFilled = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
d="M16.94 6a.5.5 0 0 1 .5-.5h.5a2.5 2.5 0 0 1 2.5 2.5v3a2.5 2.5 0 0 1-2.5 2.5h-.5a.5.5 0 0 1-.5-.5zM11.756 18.5a1.816 1.816 0 0 1-1.816-1.815V14.5H6.002a2.5 2.5 0 0 1-2.426-3.106l.811-3.243A3.5 3.5 0 0 1 7.783 5.5h7.157a1 1 0 0 1 1 1v6.427a3 3 0 0 1-.542 1.72l-2.155 3.079c-.34.485-.895.774-1.488.774"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
const ForwardRef = forwardRef(SvgThumbsDownFilled);
|
|
19
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgThumbsUp = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
d="M4 16v-3a2 2 0 0 1 2-2h1.48a1 1 0 0 0 .819-.427l2.808-4.012a1.315 1.315 0 0 1 2.393.754V10h4.438a2 2 0 0 1 1.94 2.485l-.81 3.243A3 3 0 0 1 16.158 18H6a2 2 0 0 1-2-2M8 11v7"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgThumbsUp);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgThumbsUpFilled = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
d="M7 18a.5.5 0 0 1-.5.5H6A2.5 2.5 0 0 1 3.5 16v-3A2.5 2.5 0 0 1 6 10.5h.5a.5.5 0 0 1 .5.5zM12.185 5.5C13.187 5.5 14 6.313 14 7.315V9.5h3.939a2.5 2.5 0 0 1 2.425 3.106l-.811 3.243a3.5 3.5 0 0 1-3.396 2.651H9a1 1 0 0 1-1-1v-6.427a3 3 0 0 1 .542-1.72l2.155-3.079c.34-.485.895-.774 1.488-.774"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
const ForwardRef = forwardRef(SvgThumbsUpFilled);
|
|
19
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgUpsell = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 36 36"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="#F5A51C"
|
|
14
|
+
d="M21.078 6.851a1.626 1.626 0 0 0-2.954-.938l-9.755 13.82a1.626 1.626 0 0 0 1.328 2.564h4.877v7.316a1.626 1.626 0 0 0 2.896 1.016l9.755-12.194a1.626 1.626 0 0 0-1.27-2.642h-4.877z"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
const ForwardRef = forwardRef(SvgUpsell);
|
|
19
|
+
export default ForwardRef;
|
package/src/icons/app/index.ts
CHANGED
|
@@ -1,11 +1,43 @@
|
|
|
1
1
|
export { default as ArrowCycle } from "./ArrowCycle";
|
|
2
|
+
export { default as Ascending } from "./Ascending";
|
|
3
|
+
export { default as Balance } from "./Balance";
|
|
4
|
+
export { default as CardPin } from "./CardPin";
|
|
2
5
|
export { default as ChartPie } from "./ChartPie";
|
|
3
6
|
export { default as CheckDouble } from "./CheckDouble";
|
|
7
|
+
export { default as Chip } from "./Chip";
|
|
8
|
+
export { default as ClockPlus } from "./ClockPlus";
|
|
9
|
+
export { default as Cloud } from "./Cloud";
|
|
10
|
+
export { default as Command } from "./Command";
|
|
11
|
+
export { default as Contactless } from "./Contactless";
|
|
12
|
+
export { default as CornerHandle } from "./CornerHandle";
|
|
13
|
+
export { default as Descending } from "./Descending";
|
|
14
|
+
export { default as Equal } from "./Equal";
|
|
15
|
+
export { default as EqualApproximately } from "./EqualApproximately";
|
|
4
16
|
export { default as FileFilled } from "./FileFilled";
|
|
17
|
+
export { default as FileSigned } from "./FileSigned";
|
|
18
|
+
export { default as HardDrive } from "./HardDrive";
|
|
19
|
+
export { default as Headset } from "./Headset";
|
|
20
|
+
export { default as InputField } from "./InputField";
|
|
21
|
+
export { default as Keyboard } from "./Keyboard";
|
|
5
22
|
export { default as Maximize } from "./Maximize";
|
|
23
|
+
export { default as MessageFilled } from "./MessageFilled";
|
|
6
24
|
export { default as MicrophoneNegative } from "./MicrophoneNegative";
|
|
7
25
|
export { default as Minimize } from "./Minimize";
|
|
26
|
+
export { default as Moon } from "./Moon";
|
|
27
|
+
export { default as Mouse } from "./Mouse";
|
|
28
|
+
export { default as Organization } from "./Organization";
|
|
29
|
+
export { default as Password } from "./Password";
|
|
30
|
+
export { default as PersonMinus } from "./PersonMinus";
|
|
31
|
+
export { default as PersonNegative } from "./PersonNegative";
|
|
32
|
+
export { default as PersonPlus } from "./PersonPlus";
|
|
33
|
+
export { default as Pig } from "./Pig";
|
|
8
34
|
export { default as Record } from "./Record";
|
|
35
|
+
export { default as Shield } from "./Shield";
|
|
36
|
+
export { default as SignPost } from "./SignPost";
|
|
37
|
+
export { default as ThumbsDown } from "./ThumbsDown";
|
|
38
|
+
export { default as ThumbsDownFilled } from "./ThumbsDownFilled";
|
|
39
|
+
export { default as ThumbsUp } from "./ThumbsUp";
|
|
40
|
+
export { default as ThumbsUpFilled } from "./ThumbsUpFilled";
|
|
9
41
|
export { default as VideoRecorder } from "./VideoRecorder";
|
|
10
42
|
export { default as VideoRecorderNegative } from "./VideoRecorderNegative";
|
|
11
43
|
export { default as AcademicCap } from "./AcademicCap";
|
|
@@ -49,11 +81,13 @@ export { default as ChevronLeft } from "./ChevronLeft";
|
|
|
49
81
|
export { default as ChevronRight } from "./ChevronRight";
|
|
50
82
|
export { default as ChevronUp } from "./ChevronUp";
|
|
51
83
|
export { default as Circle } from "./Circle";
|
|
84
|
+
export { default as ClockBack } from "./ClockBack";
|
|
52
85
|
export { default as Clock } from "./Clock";
|
|
53
86
|
export { default as Code } from "./Code";
|
|
54
87
|
export { default as Coffee } from "./Coffee";
|
|
55
88
|
export { default as Comment } from "./Comment";
|
|
56
89
|
export { default as Completed } from "./Completed";
|
|
90
|
+
export { default as Computer } from "./Computer";
|
|
57
91
|
export { default as CreditCard } from "./CreditCard";
|
|
58
92
|
export { default as Cross } from "./Cross";
|
|
59
93
|
export { default as CrossedCircle } from "./CrossedCircle";
|
|
@@ -62,6 +96,7 @@ export { default as Delete } from "./Delete";
|
|
|
62
96
|
export { default as Deny } from "./Deny";
|
|
63
97
|
export { default as Desktop } from "./Desktop";
|
|
64
98
|
export { default as DollarBill } from "./DollarBill";
|
|
99
|
+
export { default as DollarReset } from "./DollarReset";
|
|
65
100
|
export { default as DottedCircle } from "./DottedCircle";
|
|
66
101
|
export { default as Download } from "./Download";
|
|
67
102
|
export { default as DropdownDefault } from "./DropdownDefault";
|
|
@@ -70,6 +105,8 @@ export { default as EllipsisHorizontal } from "./EllipsisHorizontal";
|
|
|
70
105
|
export { default as Ellipsis } from "./Ellipsis";
|
|
71
106
|
export { default as EnvelopeOpen } from "./EnvelopeOpen";
|
|
72
107
|
export { default as Envelope } from "./Envelope";
|
|
108
|
+
export { default as EqualGreater } from "./EqualGreater";
|
|
109
|
+
export { default as EqualLess } from "./EqualLess";
|
|
73
110
|
export { default as Exit } from "./Exit";
|
|
74
111
|
export { default as ExternalLink } from "./ExternalLink";
|
|
75
112
|
export { default as EyeInvisible } from "./EyeInvisible";
|
|
@@ -81,12 +118,18 @@ export { default as FaceSuperNegative } from "./FaceSuperNegative";
|
|
|
81
118
|
export { default as FaceSuperPositive } from "./FaceSuperPositive";
|
|
82
119
|
export { default as Feed } from "./Feed";
|
|
83
120
|
export { default as File } from "./File";
|
|
121
|
+
export { default as Files } from "./Files";
|
|
84
122
|
export { default as Filter } from "./Filter";
|
|
85
123
|
export { default as Flag } from "./Flag";
|
|
124
|
+
export { default as Flask } from "./Flask";
|
|
86
125
|
export { default as Folder } from "./Folder";
|
|
87
126
|
export { default as Folders } from "./Folders";
|
|
88
127
|
export { default as Globe } from "./Globe";
|
|
89
128
|
export { default as Graph } from "./Graph";
|
|
129
|
+
export { default as Greater } from "./Greater";
|
|
130
|
+
export { default as GroupBy } from "./GroupBy";
|
|
131
|
+
export { default as Group } from "./Group";
|
|
132
|
+
export { default as Handle } from "./Handle";
|
|
90
133
|
export { default as Handshake } from "./Handshake";
|
|
91
134
|
export { default as Heading1 } from "./Heading1";
|
|
92
135
|
export { default as Heading2 } from "./Heading2";
|
|
@@ -105,6 +148,7 @@ export { default as Italic } from "./Italic";
|
|
|
105
148
|
export { default as Kanban } from "./Kanban";
|
|
106
149
|
export { default as Laptop } from "./Laptop";
|
|
107
150
|
export { default as LayersFront } from "./LayersFront";
|
|
151
|
+
export { default as Less } from "./Less";
|
|
108
152
|
export { default as Lightbulb } from "./Lightbulb";
|
|
109
153
|
export { default as LinkRemove } from "./LinkRemove";
|
|
110
154
|
export { default as Link } from "./Link";
|
|
@@ -128,6 +172,7 @@ export { default as Money } from "./Money";
|
|
|
128
172
|
export { default as MoveDown } from "./MoveDown";
|
|
129
173
|
export { default as MoveTop } from "./MoveTop";
|
|
130
174
|
export { default as MoveUp } from "./MoveUp";
|
|
175
|
+
export { default as Numbers } from "./Numbers";
|
|
131
176
|
export { default as Office } from "./Office";
|
|
132
177
|
export { default as OlList } from "./OlList";
|
|
133
178
|
export { default as PalmTree } from "./PalmTree";
|
|
@@ -161,6 +206,7 @@ export { default as SearchPerson } from "./SearchPerson";
|
|
|
161
206
|
export { default as Search } from "./Search";
|
|
162
207
|
export { default as Settings } from "./Settings";
|
|
163
208
|
export { default as Share } from "./Share";
|
|
209
|
+
export { default as Sleep } from "./Sleep";
|
|
164
210
|
export { default as Sliders } from "./Sliders";
|
|
165
211
|
export { default as SolidPause } from "./SolidPause";
|
|
166
212
|
export { default as SolidPlay } from "./SolidPlay";
|
|
@@ -173,12 +219,15 @@ export { default as StarFilled } from "./StarFilled";
|
|
|
173
219
|
export { default as Star } from "./Star";
|
|
174
220
|
export { default as Strikethrough } from "./Strikethrough";
|
|
175
221
|
export { default as Suitcase } from "./Suitcase";
|
|
222
|
+
export { default as Swap } from "./Swap";
|
|
176
223
|
export { default as Table } from "./Table";
|
|
224
|
+
export { default as Tablet } from "./Tablet";
|
|
177
225
|
export { default as Target } from "./Target";
|
|
178
226
|
export { default as TextSize } from "./TextSize";
|
|
179
227
|
export { default as Timer } from "./Timer";
|
|
180
228
|
export { default as Underline } from "./Underline";
|
|
181
229
|
export { default as Upload } from "./Upload";
|
|
230
|
+
export { default as Upsell } from "./Upsell";
|
|
182
231
|
export { default as Video } from "./Video";
|
|
183
232
|
export { default as Wallet } from "./Wallet";
|
|
184
233
|
export { default as Warning } from "./Warning";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgComplaints = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
d="M17 5.35A3.65 3.65 0 0 1 20.65 9v6A3.65 3.65 0 0 1 17 18.65h-4.667a.35.35 0 0 0-.21.07L9.5 20.688c-.9.675-2.2.27-2.556-.798l-.419-1.257a3.52 3.52 0 0 1-3.175-3.504V8.857A3.51 3.51 0 0 1 6.857 5.35zm-9.5 8a.65.65 0 0 0 0 1.3h4l.13-.013a.65.65 0 0 0 0-1.274l-.13-.013zm0-3.5a.65.65 0 0 0 0 1.3h9l.13-.013a.65.65 0 0 0 0-1.274l-.13-.013z"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgComplaints);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgItManagement = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
d="M3 7.5a3.6 3.6 0 0 1 3.6-3.6h10.8A3.6 3.6 0 0 1 21 7.5v5.4a3.6 3.6 0 0 1-3.6 3.6h-1.8v1.8h.9a.9.9 0 1 1 0 1.8h-9a.9.9 0 0 1 0-1.8h.9v-1.8H6.6A3.6 3.6 0 0 1 3 12.9zm3.6 7.2h10.8a1.8 1.8 0 0 0 1.8-1.8V7.5a1.8 1.8 0 0 0-1.8-1.8H6.6a1.8 1.8 0 0 0-1.8 1.8v5.4a1.8 1.8 0 0 0 1.8 1.8"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
const ForwardRef = forwardRef(SvgItManagement);
|
|
19
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgMeetings = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
d="M11.7 6c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.31 1.31c.328.642.328 1.483.328 3.163v2.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.31 1.31C14.22 18 13.38 18 11.7 18H8.3c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.31-1.31C3.5 15.72 3.5 14.88 3.5 13.2v-2.4c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.31-1.31C5.78 6 6.62 6 8.3 6zm8.576 2.553A.5.5 0 0 1 21 9v6a.5.5 0 0 1-.724.447l-2.223-1.112a1 1 0 0 1-.553-.895V10.56a1 1 0 0 1 .553-.895z"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
const ForwardRef = forwardRef(SvgMeetings);
|
|
19
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgPages = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
d="M12.758 3.35a3.65 3.65 0 0 1 2.58 1.069l2.243 2.243a3.65 3.65 0 0 1 1.07 2.58V17A3.65 3.65 0 0 1 15 20.65H9A3.65 3.65 0 0 1 5.35 17V7A3.65 3.65 0 0 1 9 3.35zM10 15.35a.65.65 0 0 0 0 1.3h2l.13-.013a.65.65 0 0 0 0-1.274L12 15.35zm0-4a.65.65 0 0 0 0 1.3h4l.13-.013a.65.65 0 0 0 0-1.274L14 11.35z"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgPages);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import type { SvgProps } from "react-native-svg";
|
|
3
|
+
import { Ref, forwardRef } from "react";
|
|
4
|
+
const SvgSalaryAdvance = (props: SvgProps, ref: Ref<Svg>) => (
|
|
5
|
+
<Svg
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
className={props.className}
|
|
9
|
+
ref={ref}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
fillRule="evenodd"
|
|
15
|
+
d="M12 2c4.343 0 8.04 2.77 9.42 6.639a1.95 1.95 0 0 1 1.811.348l.148.134.134.148a1.95 1.95 0 0 1-.134 2.61l-1.473 1.472C21.246 18.235 17.065 22 12 22 6.477 22 2 17.523 2 12S6.477 2 12 2m0 1.35a8.65 8.65 0 1 0 5.947 14.931.65.65 0 0 0-.894-.943A7.35 7.35 0 1 1 12 4.65a7.35 7.35 0 0 1 7.256 6.186l-.796-.796a.651.651 0 0 0-.92.92l2 2a.65.65 0 0 0 .92 0l2-2a.65.65 0 0 0-.093-.996l-.025-.016a1 1 0 0 0-.081-.043l-.025-.01a1 1 0 0 0-.103-.032l-.04-.005a1 1 0 0 0-.122-.006q-.024.001-.048.004-.03.004-.06.01a.66.66 0 0 0-.323.174l-.951.95c-.5-4.301-4.153-7.64-8.589-7.64m0 4a.65.65 0 0 0-.65.65v.35H11a2.15 2.15 0 0 0 0 4.3h2a.85.85 0 1 1 0 1.7H9.5a.65.65 0 0 0 0 1.3h1.85V16a.65.65 0 0 0 1.3 0v-.35H13a2.15 2.15 0 0 0 0-4.3h-2a.85.85 0 1 1 0-1.7h3.5a.65.65 0 0 0 0-1.3h-1.85V8a.65.65 0 0 0-.65-.65"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
const ForwardRef = forwardRef(SvgSalaryAdvance);
|
|
21
|
+
export default ForwardRef;
|
|
@@ -2,6 +2,7 @@ export { default as Benefits } from "./Benefits";
|
|
|
2
2
|
export { default as Calendar } from "./Calendar";
|
|
3
3
|
export { default as Cards } from "./Cards";
|
|
4
4
|
export { default as ClockIn } from "./ClockIn";
|
|
5
|
+
export { default as Complaints } from "./Complaints";
|
|
5
6
|
export { default as Discover } from "./Discover";
|
|
6
7
|
export { default as Documents } from "./Documents";
|
|
7
8
|
export { default as Engagement } from "./Engagement";
|
|
@@ -9,17 +10,21 @@ export { default as Finance } from "./Finance";
|
|
|
9
10
|
export { default as Goals } from "./Goals";
|
|
10
11
|
export { default as Home } from "./Home";
|
|
11
12
|
export { default as Hub } from "./Hub";
|
|
13
|
+
export { default as ItManagement } from "./ItManagement";
|
|
12
14
|
export { default as Inbox } from "./Inbox";
|
|
13
15
|
export { default as Kudos } from "./Kudos";
|
|
16
|
+
export { default as Meetings } from "./Meetings";
|
|
14
17
|
export { default as MyDocuments } from "./MyDocuments";
|
|
15
18
|
export { default as Organization } from "./Organization";
|
|
16
19
|
export { default as Overviews } from "./Overviews";
|
|
20
|
+
export { default as Pages } from "./Pages";
|
|
17
21
|
export { default as Payroll } from "./Payroll";
|
|
18
22
|
export { default as Performance } from "./Performance";
|
|
19
23
|
export { default as Profile } from "./Profile";
|
|
20
24
|
export { default as Projects } from "./Projects";
|
|
21
25
|
export { default as Recruitment } from "./Recruitment";
|
|
22
26
|
export { default as Reports } from "./Reports";
|
|
27
|
+
export { default as SalaryAdvance } from "./SalaryAdvance";
|
|
23
28
|
export { default as Sales } from "./Sales";
|
|
24
29
|
export { default as Settings } from "./Settings";
|
|
25
30
|
export { default as Shifts } from "./Shifts";
|