@towsila/expo-ui-library 1.0.14 → 1.0.15
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/package.json +1 -1
- package/src/icons/index.ts +36 -36
package/package.json
CHANGED
package/src/icons/index.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
//
|
|
10
|
-
//
|
|
11
|
-
//
|
|
12
|
-
//
|
|
13
|
-
//
|
|
14
|
-
//
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
export { default as MailIcon } from "../assets/customIcons/email.svg";
|
|
2
|
+
export { default as LockIcon } from "../assets/customIcons/lock_closed.svg";
|
|
3
|
+
export { default as EyeIcon } from "../assets/customIcons/eye.svg";
|
|
4
|
+
export { default as EyeOffIcon } from "../assets/customIcons/eye_off.svg";
|
|
5
|
+
export { default as ArrowIcon } from "../assets/customIcons/arrow.svg";
|
|
6
|
+
export { default as ArrowBackIcon } from "../assets/customIcons/arrow_back.svg";
|
|
7
|
+
export { default as PhoneIcon } from "../assets/customIcons/phone.svg";
|
|
8
|
+
export {default as PersonIcon} from "../assets/customIcons/person.svg";
|
|
9
|
+
// export {default as HelpDarkIcon} from "../assets/customIcons/help_dark.svg";
|
|
10
|
+
// export {default as HelpLightIcon} from "../assets/customIcons/help_light.svg";
|
|
11
|
+
// export {default as HomeDarkIcon} from "../assets/customIcons/home_dark.svg";
|
|
12
|
+
// export {default as HomeLightIcon} from "../assets/customIcons/home_light.svg";
|
|
13
|
+
// export {default as SettingsDarkIcon} from "../assets/customIcons/settings_dark.svg";
|
|
14
|
+
// export {default as SettingsLightIcon} from "../assets/customIcons/settings_light.svg";
|
|
15
|
+
// export {default as ProfileLightIcon} from "../assets/customIcons/profile_light.svg";
|
|
16
|
+
// export {default as ProfileDarkIcon} from "../assets/customIcons/profile_dark.svg";
|
|
17
|
+
export {default as HomeIcon} from "../components/icons/homeIcon";
|
|
18
|
+
export {default as ProfileIcon} from "../components/icons/profileIcon";
|
|
19
|
+
export {default as SettingsIcon} from "../components/icons/settingsIcon";
|
|
20
|
+
export {default as ChatIcon} from "../components/icons/chatIcon";
|
|
21
|
+
export {default as LogoutIcon} from "../assets/customIcons/logout.svg";
|
|
22
|
+
export {default as LightModeIcon} from "../assets/customIcons/light_mode.svg";
|
|
23
|
+
export {default as DarkModeIcon} from "../assets/customIcons/dark_mode.svg";
|
|
24
|
+
export {default as HumbergerIcon} from "../assets/customIcons/humberger.svg";
|
|
25
|
+
export {default as ShieldIcon} from "../assets/customIcons/shield.svg";
|
|
26
|
+
export {default as DocumentIcon} from "../assets/customIcons/document.svg";
|
|
27
|
+
export {default as InformationIcon} from "../assets/customIcons/information.svg";
|
|
28
|
+
export {default as WarningIcon} from "../assets/customIcons/warning.svg";
|
|
29
|
+
export {default as SuccessDark} from "../assets/customIcons/phone_dark.svg";
|
|
30
|
+
export {default as SuccessLight} from "../assets/customIcons/phone_light.svg";
|
|
31
|
+
export {default as TrashIcon} from "../assets/customIcons/trash.svg";
|
|
32
|
+
export {default as CheckMarkIcon} from "../assets/customIcons/checkmark.svg";
|
|
33
|
+
export {default as BanIcon} from "../assets/customIcons/ban.svg";
|
|
34
|
+
export {default as BanImage} from "../components/icons/ban";
|
|
35
|
+
export {default as TruckForbiddenLight} from "../assets/customIcons/light_suspended.svg";
|
|
36
|
+
export {default as TruckForbiddenDark} from "../assets/customIcons/dark_suspended.svg";
|