diff --git a/apps/mobile_app/assets/images/ui/profile.svg b/apps/mobile_app/assets/images/ui/profile.svg
new file mode 100644
index 00000000..3e1a697c
--- /dev/null
+++ b/apps/mobile_app/assets/images/ui/profile.svg
@@ -0,0 +1,12 @@
+
\ No newline at end of file
diff --git a/modules/legacy/modules/functions/lib/src/features/contacts/presentation/contacts_screen.dart b/modules/legacy/modules/functions/lib/src/features/contacts/presentation/contacts_screen.dart
index ea57f14b..a90a0b13 100644
--- a/modules/legacy/modules/functions/lib/src/features/contacts/presentation/contacts_screen.dart
+++ b/modules/legacy/modules/functions/lib/src/features/contacts/presentation/contacts_screen.dart
@@ -2,6 +2,7 @@ import 'package:design_system/design_system.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:functions/src/features/contacts/domain/entities/list_contact_entity.dart';
+import 'package:functions/src/features/contacts/presentation/edit_contact_screen.dart';
import 'package:functions/src/features/contacts/presentation/state/contacts_view_model.dart';
import 'package:navigation/navigation.dart';
import 'package:sf_localizations/sf_localizations.dart';
@@ -35,18 +36,18 @@ class ContactsScreen extends ConsumerWidget {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
IconButton(onPressed: () {Navigator.pop(context);},
- icon: Icon(Icons.arrow_back)),
+ icon: Icon(Icons.arrow_back)),
if (!state.isEditing) ...[
DecoratedBox(
decoration: BoxDecoration(
- color: Color(0xFF588EA5),
- shape: BoxShape.circle
+ color: Color(0xFF588EA5),
+ shape: BoxShape.circle
),
child: IconButton(onPressed: vm.toggleIsEditing,
- icon: Icon(Icons.edit_outlined,
- color: Colors.white,
- size: SizeUtils.getByScreen(small: 30, big: 28),
- )
+ icon: Icon(Icons.edit_outlined,
+ color: Colors.white,
+ size: SizeUtils.getByScreen(small: 30, big: 28),
+ )
),
)
]
@@ -86,7 +87,20 @@ class ContactsScreen extends ConsumerWidget {
big: EdgeInsets.symmetric(horizontal: 24, vertical: 12)
),
),
- ]
+ ],
+ Container(
+ decoration: BoxDecoration(
+ shape: BoxShape.circle,
+ color: Color(0xFF588EA5),
+ ),
+ width: SizeUtils.getByScreen(small: 48, big: 46),
+ child: CustomTextButton(
+ onPressed: (){},
+ text: '+',
+ color: Colors.white,
+ size: SizeUtils.getByScreen(small: 48, big: 47),
+ ),
+ ),
],
)
),
@@ -204,6 +218,27 @@ class ContactCard extends ConsumerWidget {
),
),
),
+ SizedBox(width: SizeUtils.getByScreen(small: 16, big: 14)),
+ DecoratedBox(
+ decoration: BoxDecoration(
+ color: Color(0xFF588EA5),
+ borderRadius: BorderRadius.all(Radius.circular(12)),
+ ),
+ child:
+ IconButton(
+ onPressed: (){Navigator.push(
+ context,
+ MaterialPageRoute(builder: (_) => EditContactScreen(
+ contact: contact,
+ /*navigationContract: navigationContract*/
+ )),
+ );},
+ icon: Icon(
+ Icons.edit_outlined,
+ color: Colors.white,
+ ),
+ ),
+ ),
]
],
),
diff --git a/modules/legacy/modules/functions/lib/src/features/contacts/presentation/edit_contact_screen.dart b/modules/legacy/modules/functions/lib/src/features/contacts/presentation/edit_contact_screen.dart
index e69de29b..dbe78eb8 100644
--- a/modules/legacy/modules/functions/lib/src/features/contacts/presentation/edit_contact_screen.dart
+++ b/modules/legacy/modules/functions/lib/src/features/contacts/presentation/edit_contact_screen.dart
@@ -0,0 +1,136 @@
+import 'package:design_system/design_system.dart';
+import 'package:flutter/material.dart';
+import 'package:flutter_riverpod/flutter_riverpod.dart';
+import 'package:flutter_svg/flutter_svg.dart';
+import 'package:functions/src/features/contacts/domain/entities/list_contact_entity.dart';
+import 'package:functions/src/features/contacts/presentation/state/contacts_view_model.dart';
+// import 'package:navigation/navigation.dart';
+import 'package:sf_localizations/sf_localizations.dart';
+import 'package:utils/utils.dart';
+
+class EditContactScreen extends ConsumerWidget {
+ //final NavigationContract navigationContract;
+ final ListContactEntity contact;
+
+ const EditContactScreen({super.key, required this.contact
+// required this.navigationContract
+});
+
+ @override
+ Widget build(BuildContext context, WidgetRef ref) {
+ final vm = ref.read(contactsViewModelProvider.notifier);
+ // final state = ref.watch(linkedDevicesViewModelProvider);
+
+ final theme = ref.watch(themePortProvider);
+
+ return Scaffold(
+ backgroundColor: theme.getColorFor(ThemeCode.backgroundPrimary),
+ body: SafeArea(
+ child: Column(
+ children: [
+ Container(
+ padding: SizeUtils.getByScreen(
+ small: EdgeInsets.symmetric(horizontal: 22, vertical: 10),
+ big: EdgeInsets.symmetric(horizontal: 21, vertical: 8)
+ ),
+ child: Stack(
+ children: [
+ IconButton(onPressed: () {Navigator.pop(context);},
+ icon: Icon(Icons.arrow_back)),
+ Center(
+ child: Text(context.translate('Edit Contact'),
+ style: TextStyle(
+ fontSize: SizeUtils.getByScreen(small: 28, big: 27)
+ ),
+ )
+ )
+ ],
+ ),
+ ),
+ SizedBox(height: SizeUtils.getByScreen(small: 20, big: 18)),
+ Expanded(child: Container(
+ padding: SizeUtils.getByScreen(
+ small: EdgeInsets.symmetric(horizontal: 48, vertical: 10),
+ big: EdgeInsets.symmetric(horizontal: 47, vertical: 8)
+ ),
+ child: Column(
+ mainAxisAlignment: MainAxisAlignment.spaceBetween,
+ children: [
+ Column(
+ crossAxisAlignment: CrossAxisAlignment.center,
+ children: [
+ Stack(
+ children: [
+ Center(child: SvgPicture.asset('assets/images/ui/profile.svg')),
+ Center(child: SizedBox(
+ width: 160,
+ height: 160,
+ child: Align(alignment: Alignment.bottomRight,
+ child: IconButton(
+ onPressed: (){},
+ icon: Container(
+ decoration: BoxDecoration(
+ shape: BoxShape.circle,
+ color: Color(0xFFCAC9C9)
+ ),
+ padding: EdgeInsets.all(8),
+ child: Icon(
+ Icons.edit_outlined,
+ color: Colors.white,
+ size: SizeUtils.getByScreen(small: 32, big: 30),
+ ),
+ ),
+ )
+ )
+ ))
+ ],
+ ),
+ SizedBox(height: SizeUtils.getByScreen(small: 24, big: 22)),
+ CustomTextField(
+ controller: vm.nameController,
+ hint: contact.name,
+ label: context.translate(I18n.legacyName),
+ ),
+ SizedBox(height: SizeUtils.getByScreen(small: 28, big: 26)),
+ Stack(
+ children: [
+ CustomTextField(
+ controller: vm.phoneController,
+ keyboardType: TextInputType.number,
+ hint: contact.phone,
+ label: context.translate('Phone number'),
+ ),
+ Align(
+ alignment: Alignment.centerRight,
+ child: IconButton(
+ onPressed: (){},
+ icon: DecoratedBox(
+ decoration: BoxDecoration(
+ shape: BoxShape.circle,
+ color: Color(0xFF588EA5)
+ ),
+ child: Icon(
+ SFIcons.contactsCircle,
+ color: Colors.white,
+ )
+ )
+ ),
+ )
+ ],
+ )
+ ],
+ ),
+ PrimaryButton(
+ onPressed: (){vm.updateContact(contact);},
+ text: context.translate(I18n.legacySave),
+ color: Color(0xFF588EA5)
+ )
+ ],
+ ))
+ ),
+ ],
+ )
+ ),
+ );
+ }
+}
diff --git a/modules/legacy/modules/functions/lib/src/features/contacts/presentation/state/contacts_view_model.dart b/modules/legacy/modules/functions/lib/src/features/contacts/presentation/state/contacts_view_model.dart
index 1c3d2c98..b792c2a5 100644
--- a/modules/legacy/modules/functions/lib/src/features/contacts/presentation/state/contacts_view_model.dart
+++ b/modules/legacy/modules/functions/lib/src/features/contacts/presentation/state/contacts_view_model.dart
@@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:functions/src/features/contacts/domain/entities/contact_list_entity.dart';
+import 'package:functions/src/features/contacts/domain/entities/list_contact_entity.dart';
import 'package:functions/src/features/contacts/domain/get_contacts_use_case.dart';
import 'package:functions/src/features/contacts/presentation/providers/get_contacts_provider.dart';
import 'package:functions/src/features/contacts/presentation/state/contacts_view_state.dart';
@@ -15,14 +16,17 @@ class ContactsViewModel extends Notifier {
late final GetContactsUseCase _getContactsUseCase;
late final TextEditingController nameController;
+ late final TextEditingController phoneController;
@override
ContactsViewState build() {
_getContactsUseCase = ref.read(getContactsUseCaseProvider);
nameController = TextEditingController();
+ phoneController = TextEditingController();
nameController.addListener(_onNameChanged);
+ phoneController.addListener(_onPhoneChanged);
_getContactsUseCase.getContacts(deviceId: '').then(setContacts);
@@ -48,9 +52,20 @@ class ContactsViewModel extends Notifier {
state = state.copyWith(name: text, errorMessage: '');
}
+ void _onPhoneChanged() {
+ final text = phoneController.text;
+ if (text == state.phone) return;
+
+ state = state.copyWith(phone: text, errorMessage: '');
+ }
+
+ void updateContact(ListContactEntity contact) {}
+
void disposeControllers() {
nameController.removeListener(_onNameChanged);
+ phoneController.removeListener(_onPhoneChanged);
nameController.dispose();
+ phoneController.dispose();
}
}
diff --git a/modules/legacy/modules/functions/lib/src/features/functions/functions_screen.dart b/modules/legacy/modules/functions/lib/src/features/functions/functions_screen.dart
index 390cee00..e51d970d 100644
--- a/modules/legacy/modules/functions/lib/src/features/functions/functions_screen.dart
+++ b/modules/legacy/modules/functions/lib/src/features/functions/functions_screen.dart
@@ -48,67 +48,67 @@ class FunctionsScreen extends ConsumerWidget {
children: [
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.connection,
text: 'Remote connection'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.calendarCircle,
text: 'Calendar'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){navigationContract.pushTo(AppRoutes.contacts);},
- icon: Icons.menu,
+ icon: SFIcons.contactsCircle,
text: 'Contacts'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.doNotDisturbCircle,
text: 'Do not disturb'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.locationAreaCircle,
text: 'Safety zone'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.videoCallCircle,
text: 'Video call'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.fallCircle,
text: 'Fall notice'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.medicationCircle,
text: 'Medication reminder'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.activityCircle,
text: 'Activity meter'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.rewardsCircle,
text: 'Rewards'
),
SizedBox(height: SizeUtils.getByScreen(small: 16, big: 15)),
AppSectionButton(
onPressed: (){},
- icon: Icons.menu,
+ icon: SFIcons.locateSfCircle,
text: 'Locate your SaveFamily'
),
],
@@ -153,12 +153,12 @@ class AppSectionButton extends ConsumerWidget {
Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
- color: Color(0xFF588EA5),
- ),
- padding: EdgeInsets.all(SizeUtils.getByScreen(small: 4, big: 12)),
- child: Icon(icon,
- size: SizeUtils.getByScreen(small: 40, big: 44),
color: theme.getColorFor(ThemeCode.backgroundPrimary),
+ ),
+ padding: EdgeInsets.all(SizeUtils.getByScreen(small: 0, big: 0)),
+ child: Icon(icon,
+ size: SizeUtils.getByScreen(small: 52, big: 48),
+ color: Color(0xFF588EA5),
weight: 30,
),
),
diff --git a/modules/legacy/modules/legacy_dashboard_shell/lib/src/presentation/legacy_main_shell_screen.dart b/modules/legacy/modules/legacy_dashboard_shell/lib/src/presentation/legacy_main_shell_screen.dart
index b86d9016..7c49bca7 100644
--- a/modules/legacy/modules/legacy_dashboard_shell/lib/src/presentation/legacy_main_shell_screen.dart
+++ b/modules/legacy/modules/legacy_dashboard_shell/lib/src/presentation/legacy_main_shell_screen.dart
@@ -51,7 +51,7 @@ class LegacyDashboardScreen extends ConsumerWidget {
label: context.translate(I18n.location),
),
NavigationDestination(
- icon: Icon(Icons.chat_outlined),
+ icon: Icon(SFIcons.chat),
label: context.translate(I18n.chat),
),
],
diff --git a/packages/design_system/fonts/SFIcons.ttf b/packages/design_system/fonts/SFIcons.ttf
new file mode 100644
index 00000000..2703601a
Binary files /dev/null and b/packages/design_system/fonts/SFIcons.ttf differ
diff --git a/packages/design_system/lib/fonts/SFIcons.ttf b/packages/design_system/lib/fonts/SFIcons.ttf
deleted file mode 100755
index 8c2c553f..00000000
Binary files a/packages/design_system/lib/fonts/SFIcons.ttf and /dev/null differ
diff --git a/packages/design_system/lib/fonts/config.json b/packages/design_system/lib/fonts/config.json
index d22f8855..c6ebc923 100755
--- a/packages/design_system/lib/fonts/config.json
+++ b/packages/design_system/lib/fonts/config.json
@@ -87,7 +87,7 @@
"width": 1000
},
"search": [
- "icon"
+ "functions"
]
},
{
@@ -823,6 +823,314 @@
"search": [
"lightbulb_outline"
]
+ },
+ {
+ "uid": "0dcd448b171d3680fd792b4df0193724",
+ "css": "google",
+ "code": 59428,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M978.7 511.2C978.7 478.3 975.8 447.1 970.8 416.7H500V604.6H769.6C757.5 666.3 722.1 718.3 669.6 753.8V878.8H830.4C924.6 791.7 978.7 663.3 978.7 511.2ZM500 1000C635 1000 747.9 955 830.4 878.7L669.6 753.7C624.6 783.7 567.5 802 500 802 369.6 802 259.2 714.1 219.6 595.4H53.8V724.1C135.8 887.5 304.6 1000 500 1000ZM219.6 595.4C209.2 565.4 203.7 533.3 203.7 500 203.7 466.6 209.6 434.5 219.6 404.5V275.8H53.8C19.6 343.3 0 419.1 0 500 0 580.8 19.6 656.6 53.8 724.1L219.6 595.4ZM500 197.9C573.8 197.9 639.6 223.3 691.7 272.9L834.2 130.4C747.9 49.6 635 0 500 0 304.6 0 135.8 112.5 53.8 275.8L219.6 404.6C259.2 285.8 369.6 197.9 500 197.9Z",
+ "width": 1000
+ },
+ "search": [
+ "google"
+ ]
+ },
+ {
+ "uid": "6ac666884c15a883fc9c665312247abd",
+ "css": "premium",
+ "code": 59429,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M199.9 949.6H899.9M528 62.9C530.1 59 533.3 55.8 537.2 53.5 541 51.2 545.4 50 549.9 50 554.4 50 558.7 51.2 562.6 53.5 566.4 55.8 569.6 59 571.8 62.9L719.4 343.1C722.9 349.6 727.8 355.3 733.8 359.6 739.7 364 746.6 367 753.8 368.4 761 369.8 768.5 369.6 775.7 367.8 782.8 365.9 789.5 362.5 795.2 357.8L1009 174.6C1013.1 171.3 1018.2 169.4 1023.5 169.1 1028.8 168.8 1034 170.2 1038.4 173.1 1042.9 176 1046.3 180.2 1048.2 185.1 1050 190.1 1050.3 195.5 1048.9 200.6L907.2 712.9C904.3 723.4 898.1 732.6 889.5 739.3 880.9 745.9 870.3 749.5 859.4 749.6H240.4C229.5 749.5 218.9 745.9 210.3 739.3 201.7 732.6 195.4 723.4 192.5 712.9L50.9 200.6C49.5 195.5 49.8 190.1 51.6 185.2 53.5 180.2 56.9 176 61.4 173.1 65.8 170.2 71 168.8 76.3 169.1 81.6 169.4 86.7 171.4 90.8 174.7L304.6 357.9C310.3 362.6 316.9 366 324.1 367.8 331.2 369.6 338.7 369.8 345.9 368.4 353.2 367 360 364 366 359.7 371.9 355.3 376.9 349.7 380.4 343.2L528 62.9Z",
+ "width": 1100
+ },
+ "search": [
+ "premium"
+ ]
+ },
+ {
+ "uid": "317b5cb7bb65710ceda02e12965b8544",
+ "css": "savings",
+ "code": 59430,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M210.5 473.7C210.5 389.9 243.8 309.6 303 250.4 362.2 191.2 442.6 157.9 526.3 157.9H710.5L726.3 136.8C745.9 110.7 771.4 89.5 800.6 74.9 829.8 60.2 862.1 52.6 894.7 52.6V210.5C927.4 235 953.9 266.8 972.2 303.4 990.5 339.9 1000 380.2 1000 421.1H1052.6C1066.6 421.1 1080 426.6 1089.8 436.5 1099.7 446.3 1105.3 459.7 1105.3 473.7V578.9C1105.3 592.9 1099.7 606.3 1089.8 616.2 1080 626 1066.6 631.6 1052.6 631.6H1000C991.8 656.1 978.1 678.4 959.8 696.6 941.5 714.9 919.3 728.7 894.7 736.8V894.7C894.7 908.7 889.2 922.1 879.3 932 869.5 941.8 856.1 947.4 842.1 947.4H736.8C722.9 947.4 709.5 941.8 699.6 932 689.8 922.1 684.2 908.7 684.2 894.7V789.5H526.3V894.7C526.3 908.7 520.8 922.1 510.9 932 501 941.8 487.6 947.4 473.7 947.4H368.4C354.5 947.4 341.1 941.8 331.2 932 321.3 922.1 315.8 908.7 315.8 894.7V736.8C283.1 712.3 256.6 680.5 238.3 644 220 607.5 210.5 567.2 210.5 526.3V473.7ZM210.5 473.7H157.9C130 473.7 103.2 462.6 83.5 442.9 63.7 423.1 52.6 396.3 52.6 368.4V315.8M789.5 421.1H790",
+ "width": 1158
+ },
+ "search": [
+ "savings"
+ ]
+ },
+ {
+ "uid": "095ac9512167f24af81f73fc96862636",
+ "css": "functions",
+ "code": 59431,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M720.1 7.5C684.2 9.9 649.4 20.2 618 37.6V37.2H222C165.1 37.2 110.5 59.8 70.2 100.1 30 140.4 7.4 195.1 7.4 252 7.4 309 30 363.6 70.2 403.9 110.5 444.2 165.1 466.8 222 466.8H618V466.5C654.1 486.5 694.7 497.1 736 497.1 773.6 497.1 810.7 488.5 844.5 471.9 878.2 455.3 907.7 431.2 930.6 401.3 953.5 371.5 969.2 336.8 976.6 299.9 983.9 263 982.7 224.9 973 188.5 963.2 152.2 945.3 118.6 920.4 90.3 895.6 62 864.6 39.9 829.9 25.5 795.1 11.1 757.6 5 720.1 7.5ZM736 73.4C759.5 73.4 782.7 78 804.3 86.9 826 95.9 845.7 109.1 862.2 125.7 891.4 154.9 909.6 193.4 913.7 234.5 917.7 275.6 907.4 316.9 884.4 351.3 861.5 385.6 827.4 410.9 787.9 422.9 748.4 434.9 705.9 432.9 667.7 417.1 629.6 401.2 598.1 372.7 578.6 336.2 559.2 299.8 552.9 257.7 561 217.2 569 176.6 590.9 140.1 622.8 113.9 654.7 87.7 694.7 73.4 736 73.4ZM541.4 103.6C509 146.2 491.3 198.3 491.3 252 491.3 305.7 509 357.8 541.4 400.4H222C182.7 400.4 144.9 384.8 117.1 356.9 89.3 329.1 73.7 291.4 73.7 252 73.7 212.7 89.3 174.9 117.1 147.1 144.9 119.3 182.7 103.6 222 103.6H541.4ZM252.2 491.2C214.6 491.2 177.5 499.7 143.8 516.3 110 532.9 80.6 557.1 57.7 586.9 34.7 616.7 19 651.4 11.6 688.3 4.3 725.2 5.6 763.4 15.3 799.7 25 836 43 869.6 67.8 897.9 92.6 926.2 123.6 948.4 158.3 962.7 193.1 977.1 230.7 983.3 268.2 980.7 304 978.3 338.8 968 370.2 950.6V951H766.3C823.2 951 877.8 928.4 918 888.1 958.2 847.8 980.8 793.2 980.9 736.2 980.9 679.3 958.3 624.6 918 584.4 877.8 544.1 823.2 521.4 766.3 521.4H370.2V521.8C334.1 501.7 293.5 491.2 252.2 491.2H252.2ZM200.4 565.3C239.9 553.3 282.3 555.4 320.5 571.2 358.6 587 390.1 615.6 409.6 652 429.1 688.5 435.3 730.5 427.3 771.1 419.2 811.6 397.4 848.1 365.4 874.3 333.5 900.5 293.5 914.9 252.2 914.9 228.8 914.9 205.5 910.3 183.9 901.3 162.2 892.3 142.6 879.2 126 862.6 96.8 833.3 78.6 794.9 74.6 753.8 70.5 712.6 80.8 671.3 103.8 637 126.7 602.6 160.9 577.3 200.4 565.3ZM766.3 587.9C805.6 587.9 843.3 603.5 871.1 631.3 898.9 659.1 914.5 696.9 914.5 736.2 914.5 775.6 898.9 813.3 871.1 841.2 843.3 869 805.6 884.6 766.3 884.6H446.8C479.3 842 496.9 789.9 496.9 736.2 496.9 682.6 479.3 630.5 446.9 587.9H766.3Z",
+ "width": 1000
+ },
+ "search": [
+ "functions"
+ ]
+ },
+ {
+ "uid": "03dbb1571e217dd409e469aa106381ae",
+ "css": "payments",
+ "code": 59454,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M439.5 249.1C503.9 249.1 556.2 196.9 556.2 132.5 556.2 68 503.9 15.8 439.5 15.8 375 15.8 322.8 68 322.8 132.5 322.8 196.9 375 249.1 439.5 249.1ZM835.4 508.7C827.9 506.4 820.2 509.3 816.2 516 805.4 533.9 790.2 544.2 775.9 550.5 734.8 432.3 620.8 343.8 438.1 343.8 366.7 343.8 305.9 357.4 255.8 380.8 218.1 361.4 156.2 340.9 89.6 365.2 88.5 365.7 87.6 366.7 87.5 367.9 87.4 368.9 80.6 436.5 125.5 496.6 108 525.7 95.9 557.8 89.2 591.6L46.9 603.1C24.5 609.2 11.2 632.5 17.3 654.9L47.2 765.1C56.3 798.5 77.2 811.5 124.6 809.3H132.6C146.6 829.4 163.4 848 182.3 864.8L195.7 955.8C195.7 966.5 204.4 975.2 215.1 975.2H274.6C285.4 975.2 294.1 966.5 294.1 955.8L297.5 932.6C340.6 948.4 388.1 957.2 438.1 957.2 493.4 957.2 545.8 946.4 592.5 927.2L596.7 955.8C596.7 966.5 605.4 975.2 616.2 975.2H675.6C686.4 975.2 695.1 966.5 695.1 955.8L710.8 848.7C762.2 796.3 793.2 729 793.2 655.4 793.2 650.9 793.1 646.4 792.9 641.9 835.3 610.8 845.2 557.6 847.1 525.7 847.6 517.8 842.9 511 835.4 508.7ZM210.6 605.9C222.4 605.9 232 596.3 232 584.5 232 572.6 222.4 563.1 210.6 563.1 198.7 563.1 189.1 572.6 189.1 584.5 189.1 596.3 198.7 605.9 210.6 605.9ZM540.8 430C435.4 394.3 340.1 429.4 339.1 429.8L328.7 402.2C333 400.6 435 363.1 550.2 402L540.8 430V430Z",
+ "width": 867
+ },
+ "search": [
+ "payments"
+ ]
+ },
+ {
+ "uid": "0cd6b0a1d54c522228c928049c4c355b",
+ "css": "customer-service",
+ "code": 59455,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M600 19.5C852 19.5 1057.1 224.2 1057.1 475.8V684.9H1107.9C1112.6 684.9 1117.1 683.1 1120.4 679.8 1123.7 676.5 1125.5 672 1125.5 667.4V520.8C1125.5 516.1 1123.6 511.7 1120.4 508.4 1117.1 505.1 1112.6 503.2 1107.9 503.2H1095.2C1088 503.2 1081 500.4 1075.8 495.2 1070.6 490.1 1067.7 483.1 1067.7 475.8 1067.7 468.5 1070.6 461.5 1075.8 456.4 1081 451.2 1088 448.3 1095.2 448.3H1108L1115.1 448.7C1131.7 450.3 1147.4 457.7 1159.3 469.5 1172.9 483.1 1180.5 501.5 1180.6 520.8V667.4C1180.5 686.6 1172.9 705 1159.3 718.6 1145.7 732.2 1127.2 739.8 1108 739.8H1054.2C1040.8 829 964.4 897.9 871.3 897.9H771.1C766.1 914.9 755.9 930 741.8 940.8 728.9 950.7 713.5 956.7 697.4 958L690.5 958.3H545.2C522.8 958.3 501.4 949.4 485.5 933.6 469.7 917.8 460.8 896.3 460.7 874V866.8C460.8 844.4 469.7 823 485.5 807.2 501.4 791.3 522.8 782.5 545.2 782.4H690.5L697.4 782.7C713.5 784.1 728.9 790.1 741.8 799.9 755.9 810.8 766.1 825.9 771.1 842.9H871.3L877.8 842.7C910.1 841.1 940.7 827.6 963.7 804.6 988.2 780.2 1002 747 1002.1 712.4V475.8C1002.1 254.5 821.7 74.4 600 74.4 378.3 74.4 197.9 254.5 197.9 475.8V712.4C197.9 716 197.2 719.6 195.8 722.9 194.4 726.2 192.4 729.3 189.8 731.8 187.3 734.4 184.2 736.4 180.9 737.8 177.6 739.2 174 739.9 170.4 739.9H92C72.8 739.8 54.3 732.2 40.7 718.6 27.1 705 19.5 686.6 19.4 667.4V520.8C19.5 501.6 27.1 483.1 40.7 469.5 54.3 456 72.8 448.3 92 448.3H103.5C110.8 448.3 117.8 451.2 123 456.4 128.1 461.5 131 468.5 131 475.8 131 483.1 128.2 490.1 123 495.2 117.8 500.4 110.8 503.2 103.5 503.2H92C87.4 503.2 82.9 505.1 79.6 508.4 76.3 511.7 74.5 516.1 74.5 520.8V667.4C74.5 672 76.3 676.5 79.6 679.8 82.9 683.1 87.4 684.9 92 684.9H142.9V475.8C142.9 224.2 347.9 19.5 600 19.5ZM545.2 837.4C537.4 837.4 529.9 840.5 524.4 846 518.9 851.5 515.8 859 515.8 866.8V874C515.8 881.8 518.9 889.3 524.4 894.8 529.9 900.3 537.4 903.4 545.2 903.4H690.5C698.3 903.4 705.8 900.3 711.3 894.8 716.9 889.3 720 881.8 720 874V866.8C720 859 716.9 851.5 711.3 846 705.8 840.5 698.3 837.4 690.5 837.4H545.2ZM540.2 238.7C564.5 227.3 591.5 223.1 618.1 226.5 644.7 229.9 669.8 240.9 690.4 258.1 711 275.2 726.3 297.9 734.4 323.4 742.6 348.9 743.3 376.2 736.4 402.1 729.6 428 715.5 451.4 695.8 469.6 676.7 487.3 653 499.2 627.5 504.3V591.4C627.5 598.7 624.6 605.7 619.5 610.8 614.3 616 607.3 618.8 600 618.8 592.7 618.8 585.7 616 580.6 610.8 575.4 605.7 572.5 598.7 572.5 591.4V479.7C572.5 476.1 573.2 472.5 574.5 469.1 575.9 465.8 578 462.7 580.5 460.2 583.1 457.6 586.1 455.6 589.4 454.2 592.8 452.8 596.4 452.1 600 452.1 617 452.1 633.6 447.1 647.8 437.6 661.9 428.2 673 414.8 679.5 399.1 686 383.4 687.7 366.2 684.4 349.5 681.1 332.9 672.9 317.6 660.9 305.6 648.8 293.6 633.5 285.4 616.8 282.1 600.2 278.8 582.9 280.5 567.1 286.9 551.4 293.4 538 304.4 528.5 318.6 519.1 332.7 514 349.3 514 366.2L514.4 374.4V374.4C515.1 381.6 512.9 388.9 508.2 394.5 503.6 400.1 496.9 403.7 489.6 404.4H489.6C482.4 405 475.2 402.7 469.6 398.1 464 393.5 460.4 386.9 459.6 379.7L459.5 379.6C459.2 375.3 459 370.8 459 366.3 458.9 339.5 466.6 313.3 481 290.7 495.3 268.1 515.9 250 540.2 238.7ZM600 652.1C607.5 652.1 614.8 654.3 621 658.5 627.2 662.6 632 668.5 634.9 675.4 637.8 682.3 638.5 689.9 637.1 697.2 635.6 704.6 632 711.3 626.7 716.6 621.4 721.8 614.7 725.4 607.4 726.9 600 728.3 592.4 727.6 585.5 724.7 578.6 721.9 572.7 717.1 568.6 710.9 564.4 704.6 562.2 697.3 562.2 689.9 562.2 679.8 566.2 670.2 573.2 663.2 580.3 656.1 590 652.1 600 652.1Z",
+ "width": 1222
+ },
+ "search": [
+ "customer-service"
+ ]
+ },
+ {
+ "uid": "e026d4c23a49f4ee571d54a288da9671",
+ "css": "account",
+ "code": 59456,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M1001.2 782.8C978.1 723.1 944.7 669.4 900.8 621.7 888.6 608.4 875.4 596 861.7 584 859.8 581.7 857.5 579 855.1 576.7 819.7 546.8 781.1 522 738.7 502.8 731.1 499.5 724.1 496.3 716.5 493.1 715.6 492.7 715.1 492.7 714.2 492.2 702.4 487.1 690.6 482.6 678.3 477.5 742 427.5 779.7 363.6 785.3 283.7 791 203.9 764.1 134.5 706.6 78.1 653.8 26.6 586.4 0.9 519 0 517.1 0 515.7 0 513.8 0 511.9 0 510.5 0 508.6 0 441.2 0.9 373.8 26.6 321 78.1 263 134.5 236.6 203.4 242.3 283.7 248 363.6 285.7 427.5 349.3 477.5 337 482.6 325.3 487.1 313.5 492.2 312.5 492.7 312.1 492.7 311.1 493.1 303.6 496.3 296 499.1 289 502.8 246.5 522 207.9 546.8 172.5 576.7 169.7 579 167.8 581.3 165.9 584 152.3 596 139.5 608.4 126.8 621.7 83 669 49.5 722.7 26.4 782.8 13.7 815.4 4.2 848.5 0 883.4 0 883.8 0 884.3 0 884.8 1.9 893.9 2.8 903.6 5.7 912.3 20.7 965.6 66.9 1000 124.4 1000 201.3 1000 277.6 1000 354.5 1000 376.6 1000 394.6 982.6 394.6 961 394.6 939.4 376.6 921.9 354.5 921.9 278.6 921.9 202.7 921.9 126.8 921.9 94.3 921.9 75.4 897.2 84.4 866.9 93.3 837 102.3 806.7 115.5 778.7 154.6 696.1 216.4 632.7 297.4 587.7 331.4 568.9 366.3 555.1 402.1 545.9 402.6 545.9 403 545.5 403.5 545.5 408.7 544.1 413.9 542.7 419.1 541.8 424.3 540.9 429.4 539.5 435.1 538.6 437.5 538.1 439.3 538.1 441.7 537.6 446.4 536.7 451.1 536.3 455.8 535.8 457.2 535.8 458.7 535.4 460.1 535.4 467.1 534.4 473.7 534 480.8 533.5 491.7 532.6 502 532.6 512.9 532.1 513.3 532.1 513.8 532.1 514.3 532.1 514.8 532.1 515.2 532.1 515.7 532.1 526.1 532.1 536.9 532.6 547.8 533.5 554.8 534 561.4 534.9 568.5 535.4 569.9 535.4 571.3 535.8 572.7 535.8 577.5 536.3 582.2 537.2 586.9 537.6 589.2 538.1 591.1 538.1 593.5 538.6 598.7 539.5 604.3 540.4 609.5 541.8 614.7 542.7 619.9 544.1 625.1 545.5 625.5 545.5 626 545.9 626.5 545.9 662.3 555.1 697.2 569.3 731.1 587.7 812.2 632.7 874 696.1 913.1 778.7 926.3 806.7 935.2 837 944.2 866.9 953.1 897.2 934.3 921.9 901.8 921.9 825.9 921.9 278.6 921.9 202.7 921.9 180.5 921.9 162.6 939.4 162.6 961 162.6 982.6 180.5 1000 202.7 1000 279.5 1000 827.3 1000 904.1 1000 961.2 1000 1007.4 965.6 1022.9 912.3 1025.3 903.1 1026.7 893.9 1028.6 884.8 1028.6 884.3 1028.6 883.8 1028.6 883.4 1023.9 848.5 1014 815.4 1001.2 782.8ZM513.8 453.2C407.8 453.2 322 369.6 322 266.3 322 169.4 398.3 89.1 495 79.9 496.4 79.9 497.3 79.9 498.7 79.9 503.9 79.4 508.6 79 513.8 79 519 79 524.2 79.4 528.9 79.9 530.3 79.9 531.3 79.9 532.7 79.9 629.3 89.5 706.1 169.9 705.7 266.3 705.7 369.1 619.9 452.7 513.8 453.2Z",
+ "width": 1048
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "e2919df04c54615e3a7b3e87982ab49b",
+ "css": "privacy",
+ "code": 59457,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M862.1 232.5C861.8 216 849.7 202 833.4 199.4 752.9 186.2 688.8 117.4 690.6 34.3 690.7 15.6 675.1 0 656.4 0H205.9C187.2 0 171.7 15.6 171.8 34.3 173.6 117.5 109.4 186.2 28.8 199.4 12.6 202.1 0.6 215.9 0.3 232.3-6.6 529.2 107.7 860.5 398 989.3 419.6 998.9 445.2 997.8 466 986.5 488.6 974.1 530 949.1 577.6 908.8 620.8 964.3 688.3 1000 764.1 1000 894.2 1000 1000 894.6 1000 765 1000 655.1 923.9 562.5 821.4 537 850.4 443.1 864.1 340.9 862.1 232.5 864.1 340.9 861.8 216 862.1 232.5 864.1 340.9 861.8 216 862.1 232.5 864.1 340.9 861.8 216 862.1 232.5 864.1 340.9 861.8 216 862.1 232.5 864.1 340.9 861.8 216 862.1 232.5 864.1 340.9 861.8 216 862.1 232.5ZM433.2 926.4C430.9 927.7 428.2 927.9 425.7 926.8 169.9 813.3 67.9 521.8 68.3 260.5 156.5 235.2 225.7 160.2 238.1 68.4H624.2C636.7 160 705.8 235.1 793.9 260.5 793.2 356.8 779 447.3 751.7 530.2 719.2 531.9 688.4 540.2 660.6 553.7 646.7 489.3 607 433.5 551 399.3 574.3 371 588.4 334.8 588.4 295.4 588.4 205.3 514.9 131.9 424.7 131.9 334.5 131.9 261 205.3 261 295.4 261 334.8 275.1 371 298.4 399.3 227.8 442.4 183.2 519.5 183.2 605.2V671.5C183.2 690.4 198.6 705.7 217.4 705.7H535.7C523.5 752.4 526.2 802.9 543.4 848.1 496.2 889.5 455 914.6 433.2 926.4 455 914.6 430.9 927.7 433.2 926.4 455 914.6 430.9 927.7 433.2 926.4 455 914.6 430.9 927.7 433.2 926.4 455 914.6 430.9 927.7 433.2 926.4ZM566.1 637.3H251.6V605.2C251.6 534.3 294.3 471.5 359 445.1 400.5 463.4 448.9 463.4 490.4 445.1 553.1 470.7 595 530.4 597.6 598.5 585.8 610.3 575.2 623.3 566.1 637.3ZM424.7 390.5C372.2 390.5 329.4 347.9 329.4 295.4 329.4 243 372.2 200.3 424.7 200.3 477.2 200.3 520 243 520 295.4 520 347.9 477.2 390.5 424.7 390.5ZM764.1 931.6C671.7 931.6 596.5 856.9 596.5 765 596.5 673.1 671.7 598.3 764.1 598.3 856.4 598.3 931.6 673.1 931.6 765 931.6 856.9 856.5 931.6 764.1 931.6ZM841.2 665.7L729.8 778.6 690 732.6 638.3 777.3 702.3 851.3C721.1 869.6 746 859.5 752.5 853L889.8 713.7 841.2 665.7Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "5bf1ba3d4c9ac4d42afa0f14244ce7cb",
+ "css": "watch",
+ "code": 59459,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M561.4 314C559.5 281.9 546.9 251.5 525.5 227.5 504.2 203.6 475.5 187.5 444 182L424.1 55C418.1 18 398.2 0 368.3 0L195.1 0C165.2 0 144.3 20 138.4 55L118.5 182C51.8 194 0 252 0 323.1L0 677C0 748 50.8 806 118.5 818.1L138.4 945C145.3 981 165.2 1000 195.1 1000H368.3C398.2 1000 419.1 980 425.1 945L445 818C511.7 806 563.5 748 563.5 676.9L563.5 458 561.4 314ZM167.2 60C171.2 40 180.2 30 195.1 30L368.3 30C378.3 30 390.2 32 396.2 60L415.1 180 149.3 180 167.2 60ZM395.2 940C391.2 960 382.2 970 367.3 970H195.1C185.2 970 173.2 968 167.2 940L148.3 820H413.2L395.2 940ZM532.6 466L532.6 677C532.4 706.9 520.5 735.6 499.5 756.8 478.4 777.9 449.9 789.9 420.1 790H142.3C112.6 789.9 84 777.9 63 756.8 41.9 735.6 30 706.9 29.9 677L29.9 323C30 293.1 41.9 264.4 63 243.2 84 222.1 112.6 210.1 142.3 210L420.1 210C476.8 210 523.6 252 531.6 308L532.6 466ZM430 256L133.4 256C126.8 256 120.3 257.2 114.3 259.7 108.2 262.2 102.7 265.9 98.1 270.5 93.4 275.2 89.8 280.7 87.3 286.8 84.8 292.9 83.6 299.4 83.6 306L83.6 692C83.6 698.6 84.8 705.1 87.3 711.2 89.8 717.3 93.4 722.9 98.1 727.5 102.7 732.2 108.2 735.9 114.3 738.3 120.3 740.8 126.8 742.1 133.4 742H431C437.6 742.1 444.1 740.8 450.1 738.3 456.2 735.9 461.7 732.2 466.4 727.5 471 722.9 474.7 717.3 477.1 711.2 479.6 705.1 480.9 698.6 480.8 692L480.8 306C479.8 278 457.9 256 430 256ZM459.5 691C459.5 710 448.9 720.7 430 720.7H133.4C114.5 720.7 103.9 709.9 103.9 691L103.9 306C103.9 287 114.5 276.4 133.4 276.4L431 276.4C449.9 276.4 460.5 287.1 460.5 306L459.5 691Z",
+ "width": 563
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "1be2cce207fff03b21837256fabe7460",
+ "css": "handshake",
+ "code": 59460,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M972.4 732.3L837 626.1C841.3 618.5 844.1 610.1 844.9 601.2 846.5 584.1 840.8 567.5 828.9 554.5 820.2 544.9 808.9 538 796.3 534.5 815.1 511.1 814.9 477.9 793.8 454.7 784.6 444.6 772.6 437.5 759.1 434.2 774.2 411.3 772.6 381 753 359.3 742.1 347.4 727.1 339.7 710.5 337.4 718.1 316.7 714.3 293 698 275.1 686.2 262.1 669.5 254.1 651.1 252.7 632.6 251.1 614.8 256.5 600.7 267.5L598.2 269.5 520.6 235.8C479.9 216.3 444.4 231.7 427.2 255.5 421.5 263.5 418 272.1 416.1 280.7L399.2 267.4C370.1 244.6 326.5 248.1 301.9 275.1 285.7 292.9 281.9 316.7 289.5 337.4 272.9 339.7 257.9 347.3 247 359.3 235.2 372.4 229.5 389 231 406.1 232 416.2 235.3 425.8 240.9 434.2 227.8 437.4 215.6 444.3 206.2 454.6 185.1 477.9 184.9 511.1 203.7 534.5 191.4 537.9 180 544.6 171.1 554.4 152.3 575 150.1 603.5 163.1 626L27.7 732.3C20.6 737.8 19.7 747.5 25.7 754 28.9 757.7 33.6 759.5 38.4 759.5 42.2 759.5 46 758.4 49.1 755.9L185.1 649.3 239.6 692C252.1 701.8 267.7 707.1 283.9 707.1 285.9 707.1 287.9 707 289.9 706.9 308.3 705.4 324.9 697.4 336.7 684.4 348.6 671.4 354.3 654.8 352.8 637.7 351.9 628.6 349 620.1 344.5 612.4 358.3 609.3 371.2 602.5 380.9 591.7 394.4 576.8 399.1 558 395.9 540.1H396C415.4 540.1 434.5 532.7 447.6 518.3 459.8 506.9 466.1 491.4 465.3 474.6 465.3 474 465.1 473.5 465.1 473 467.8 473.3 470.5 473.7 473.3 473.7 475.2 473.7 477.3 473.6 479.3 473.4 497.7 472 514.3 464 525.2 451.9 537.4 440.6 543.8 425.1 543.1 408.3 542.4 393 535.7 378.7 524.9 367.4L622.2 291.1C629.4 285.4 638.6 282.6 648.3 283.5 657.8 284.2 666.4 288.4 672.6 295.1 685.3 309.1 683.3 330.1 668.3 341.9L655.7 351.8 655.7 351.8C648.7 357.3 647.8 367.1 653.7 373.6 659.7 380.1 670.1 380.9 677.2 375.4L677.2 375.3C684.5 369.7 693.7 367 703.1 367.7 712.7 368.5 721.4 372.6 727.5 379.3 740.2 393.3 738.3 414.3 723.2 426.1L696.5 447.1C696.5 447.1 696.5 447.1 696.5 447.1 689.5 452.6 688.6 462.4 694.5 468.9 700.5 475.4 711 476.2 718 470.7H718C725.3 465 734.7 462.3 744 463 753.6 463.8 762.2 467.9 768.3 474.6 781 488.6 779.1 509.6 764 521.4L731.7 546.8 731.6 546.8C724.6 552.3 723.7 562.1 729.6 568.6 735.6 575.1 746.1 576 753.1 570.4L753.1 570.4C760.4 564.7 769.5 562.1 779.1 562.8 788.7 563.5 797.3 567.7 803.4 574.4 809.6 581.2 812.5 589.8 811.7 598.6 810.9 607.5 806.4 615.5 799.2 621.2L648 739.8C586.4 788.1 535.5 783 459 768.9 454 767.9 448.9 769.2 445 772.3L217.4 950.7C210.4 956.2 209.5 965.9 215.5 972.5 218.8 976.1 223.4 978 228.2 978 232 978 235.8 976.8 238.9 974.3L460.4 800.6C492 806.2 520.9 810.2 548.8 809.2L761.2 974.4C764.4 976.8 768.1 978 771.9 978 776.7 978 781.4 976.1 784.7 972.4 790.6 965.9 789.7 956.1 782.6 950.7L592.7 803.1C617.9 796.4 643.1 784.1 669.5 763.4L815 649.3 950.9 755.9C954 758.3 957.8 759.5 961.6 759.5 966.4 759.5 971 757.7 974.4 754.1 980.3 747.5 979.4 737.8 972.4 732.3ZM456.6 312.4C444 302.6 446.3 284.6 454.9 272.7 459.1 266.8 475.3 248.8 505.9 263.5L570.2 291.4 500 346.5 456.8 312.6 456.7 312.5C456.6 312.5 456.7 312.4 456.6 312.4ZM311.3 664.4C305.2 671.2 296.6 675.3 287.1 676 277.5 676.8 268.3 674 261 668.4L200.8 621.2C185.7 609.3 183.8 588.3 196.5 574.4 209.2 560.5 231.5 558.6 246.6 570.2L307.2 617.6C314.4 623.3 318.8 631.3 319.6 640.2 320.4 649.1 317.5 657.7 311.3 664.4ZM355.5 571.7C342.8 585.7 320.2 587.5 305.2 575.7L268.4 546.9C268.4 546.9 268.3 546.8 268.3 546.8L268.3 546.8 235.9 521.4C220.9 509.6 219 488.6 231.6 474.6 237.8 467.9 246.4 463.7 256 463 265.5 462.3 274.8 465 282 470.7L282 470.7C282.1 470.7 282.1 470.7 282.2 470.8L351.2 524.9C366.3 536.7 368.2 557.7 355.5 571.7ZM423.1 497.4C410.4 511.3 387.8 513.1 372.7 501.3L303.3 446.9C303.3 446.8 303.3 446.8 303.2 446.8L276.7 426.1C269.5 420.4 265.1 412.4 264.2 403.5 263.4 394.6 266.4 386 272.5 379.3 278.6 372.5 287.2 368.4 296.8 367.7 306.2 366.9 315.5 369.6 322.7 375.2L322.9 375.3 418.8 450.5C426.8 456.8 431.7 466.2 432.2 475.8 432.5 483.9 429.7 491.2 423.1 497.4ZM500.8 431C494.7 437.7 486.1 441.8 476.5 442.6 466.9 443.4 457.7 440.6 450.5 435 449.7 434.3 449 434.3 448.3 434.7 445.8 432 443.3 429.3 440.3 426.9L344.3 351.7C344.3 351.6 344.2 351.6 344.1 351.6L331.7 341.8C316.6 330 314.7 309 327.4 295 340.1 281.1 362.7 279.3 377.8 291L400.5 308.9C400.5 308.9 400.5 308.9 400.5 308.9L436.7 337.3 447.8 346H447.9L496.6 384.2C504.5 390.4 509.4 399.9 509.9 409.5 510.3 417.5 507.4 424.8 500.8 431ZM972.4 732.3L837 626.1C841.3 618.5 844.1 610.1 844.9 601.2 846.5 584.1 840.8 567.5 828.9 554.5 820.2 544.9 808.9 538 796.3 534.5 815.1 511.1 814.9 477.9 793.8 454.7 784.6 444.6 772.6 437.5 759.1 434.2 774.2 411.3 772.6 381 753 359.3 742.1 347.4 727.1 339.7 710.5 337.4 718.1 316.7 714.3 293 698 275.1 686.2 262.1 669.5 254.1 651.1 252.7 632.6 251.1 614.8 256.5 600.7 267.5L598.2 269.5 520.6 235.8C479.9 216.3 444.4 231.7 427.2 255.5 421.5 263.5 418 272.1 416.1 280.7L399.2 267.4C370.1 244.6 326.5 248.1 301.9 275.1 285.7 292.9 281.9 316.7 289.5 337.4 272.9 339.7 257.9 347.3 247 359.3 235.2 372.4 229.5 389 231 406.1 232 416.2 235.3 425.8 240.9 434.2 227.8 437.4 215.6 444.3 206.2 454.6 185.1 477.9 184.9 511.1 203.7 534.5 191.4 537.9 180 544.6 171.1 554.4 152.3 575 150.1 603.5 163.1 626L27.7 732.3C20.6 737.8 19.7 747.5 25.7 754 28.9 757.7 33.6 759.5 38.4 759.5 42.2 759.5 46 758.4 49.1 755.9L185.1 649.3 239.6 692C252.1 701.8 267.7 707.1 283.9 707.1 285.9 707.1 287.9 707 289.9 706.9 308.3 705.4 324.9 697.4 336.7 684.4 348.6 671.4 354.3 654.8 352.8 637.7 351.9 628.6 349 620.1 344.5 612.4 358.3 609.3 371.2 602.5 380.9 591.7 394.4 576.8 399.1 558 395.9 540.1H396C415.4 540.1 434.5 532.7 447.6 518.3 459.8 506.9 466.1 491.4 465.3 474.6 465.3 474 465.1 473.5 465.1 473 467.8 473.3 470.5 473.7 473.3 473.7 475.2 473.7 477.3 473.6 479.3 473.4 497.7 472 514.3 464 525.2 451.9 537.4 440.6 543.8 425.1 543.1 408.3 542.4 393 535.7 378.7 524.9 367.4L622.2 291.1C629.4 285.4 638.6 282.6 648.3 283.5 657.8 284.2 666.4 288.4 672.6 295.1 685.3 309.1 683.3 330.1 668.3 341.9L655.7 351.8 655.7 351.8C648.7 357.3 647.8 367.1 653.7 373.6 659.7 380.1 670.1 380.9 677.2 375.4L677.2 375.3C684.5 369.7 693.7 367 703.1 367.7 712.7 368.5 721.4 372.6 727.5 379.3 740.2 393.3 738.3 414.3 723.2 426.1L696.5 447.1C696.5 447.1 696.5 447.1 696.5 447.1 689.5 452.6 688.6 462.4 694.5 468.9 700.5 475.4 711 476.2 718 470.7H718C725.3 465 734.7 462.3 744 463 753.6 463.8 762.2 467.9 768.3 474.6 781 488.6 779.1 509.6 764 521.4L731.7 546.8 731.6 546.8C724.6 552.3 723.7 562.1 729.6 568.6 735.6 575.1 746.1 576 753.1 570.4L753.1 570.4C760.4 564.7 769.5 562.1 779.1 562.8 788.7 563.5 797.3 567.7 803.4 574.4 809.6 581.2 812.5 589.8 811.7 598.6 810.9 607.5 806.4 615.5 799.2 621.2L648 739.8C586.4 788.1 535.5 783 459 768.9 454 767.9 448.9 769.2 445 772.3L217.4 950.7C210.4 956.2 209.5 965.9 215.5 972.5 218.8 976.1 223.4 978 228.2 978 232 978 235.8 976.8 238.9 974.3L460.4 800.6C492 806.2 520.9 810.2 548.8 809.2L761.2 974.4C764.4 976.8 768.1 978 771.9 978 776.7 978 781.4 976.1 784.7 972.4 790.6 965.9 789.7 956.1 782.6 950.7L592.7 803.1C617.9 796.4 643.1 784.1 669.5 763.4L815 649.3 950.9 755.9C954 758.3 957.8 759.5 961.6 759.5 966.4 759.5 971 757.7 974.4 754.1 980.3 747.5 979.4 737.8 972.4 732.3ZM456.6 312.4C444 302.6 446.3 284.6 454.9 272.7 459.1 266.8 475.3 248.8 505.9 263.5L570.2 291.4 500 346.5 456.8 312.6 456.7 312.5C456.6 312.5 456.7 312.4 456.6 312.4ZM311.3 664.4C305.2 671.2 296.6 675.3 287.1 676 277.5 676.8 268.3 674 261 668.4L200.8 621.2C185.7 609.3 183.8 588.3 196.5 574.4 209.2 560.5 231.5 558.6 246.6 570.2L307.2 617.6C314.4 623.3 318.8 631.3 319.6 640.2 320.4 649.1 317.5 657.7 311.3 664.4ZM355.5 571.7C342.8 585.7 320.2 587.5 305.2 575.7L268.4 546.9C268.4 546.9 268.3 546.8 268.3 546.8L268.3 546.8 235.9 521.4C220.9 509.6 219 488.6 231.6 474.6 237.8 467.9 246.4 463.7 256 463 265.5 462.3 274.8 465 282 470.7L282 470.7C282.1 470.7 282.1 470.7 282.2 470.8L351.2 524.9C366.3 536.7 368.2 557.7 355.5 571.7ZM423.1 497.4C410.4 511.3 387.8 513.1 372.7 501.3L303.3 446.9C303.3 446.8 303.3 446.8 303.2 446.8L276.7 426.1C269.5 420.4 265.1 412.4 264.2 403.5 263.4 394.6 266.4 386 272.5 379.3 278.6 372.5 287.2 368.4 296.8 367.7 306.2 366.9 315.5 369.6 322.7 375.2L322.9 375.3 418.8 450.5C426.8 456.8 431.7 466.2 432.2 475.8 432.5 483.9 429.7 491.2 423.1 497.4ZM500.8 431C494.7 437.7 486.1 441.8 476.5 442.6 466.9 443.4 457.7 440.6 450.5 435 449.7 434.3 449 434.3 448.3 434.7 445.8 432 443.3 429.3 440.3 426.9L344.3 351.7C344.3 351.6 344.2 351.6 344.1 351.6L331.7 341.8C316.6 330 314.7 309 327.4 295 340.1 281.1 362.7 279.3 377.8 291L400.5 308.9C400.5 308.9 400.5 308.9 400.5 308.9L436.7 337.3 447.8 346H447.9L496.6 384.2C504.5 390.4 509.4 399.9 509.9 409.5 510.3 417.5 507.4 424.8 500.8 431ZM566.6 14.3C578.6 14.3 589 23.4 589 35.4V116.7C589 128.8 578.6 137.9 566.6 137.9 554.7 137.8 544.3 128.8 544.3 116.7V35.4C544.3 23.4 554.7 14.3 566.6 14.3ZM820.9 83C827.8 74.3 840.3 72.1 849.9 77.3L851.8 78.5 853.6 79.9C862.1 87 863.7 99.3 856.7 108.3L856.6 108.3 804.9 173.8V173.8C800.5 179.4 793.7 182.3 787 182.3 782.5 182.3 777.9 181 774 178.3 764 171.5 761.6 158.1 769.2 148.5L820.9 83ZM281.4 78.5C291.2 71.9 305 73.7 312.3 83L364.1 148.5C371.7 158 369.3 171.4 359.3 178.3L359.3 178.3C355.3 181 350.7 182.3 346.3 182.3 339.6 182.3 332.8 179.4 328.4 173.8V173.8L276.6 108.3C269.1 98.7 271.4 85.3 281.4 78.5Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "67b61ff65f7d43a379b8996b62d13608",
+ "css": "medicationCircle",
+ "code": 59526,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M403.7 434.2C401.8 432.2 400.5 431.5 398.2 433.8 354.8 477.5 310.1 520.2 268.1 565.2 233.6 602 226.7 646.3 246.7 692.3 266.8 738.6 304.9 761.2 350.5 763.5 386.3 762.9 413.9 753 436.3 731 480 688.3 522.7 645 566 602 568.3 599.7 568 598.7 566 596.4 511.8 542.5 457.9 488.3 403.7 434.2ZM645.2 236.5C610.1 237.1 583.1 247.3 561.1 269.3 518.7 312 476.7 355 434.6 397.7 432.3 400 432 401.3 434.3 403.6 487.5 457.5 540.4 511.7 593.3 565.5 595.3 567.5 596.6 568.1 598.9 565.8 641.6 522.2 685.3 479.8 726.3 435.1 760.2 398.4 767.1 353.7 747.4 307.7 727.7 261.4 690.2 238.8 645.2 236.5ZM715.2 334.6C705.3 341.9 692.5 339.6 684.3 328.7 663.3 301.1 628.5 298.2 602.5 321.2 592.3 330 579.5 330 571 321.2 562.4 312.3 563.4 299.2 573.3 289.7 592 271.9 614.3 263.1 642.2 262.7 673.1 263.7 699.4 276.8 718.8 302.8 727 314.3 725.4 327.1 715.2 334.6ZM500 0C224 0 0 224 0 500.2 0 776.4 224 1000 500 1000 776.3 1000 1000 776 1000 500.2 1000 224.3 776.3 0 500 0ZM806.8 372.1C805.8 388.5 801.6 404.3 795.3 419.4 787.8 437.1 777.6 453.2 763.8 467 664.6 566.2 565.4 665.4 466.2 764.5 444.2 786.5 417.2 799 387 805.3 381.4 806.2 375.5 805.6 369.9 806.9 359.4 806.9 349.2 806.9 338.7 806.9 331.8 804.3 324.6 803.9 317.3 802.3 255.6 787.9 205.7 734.6 196.1 671.9 187.9 617.1 203 569.5 241.8 530.4 337.7 434.2 433.6 337.9 530.2 242 618.3 154.7 765.1 191.5 800.3 309.4 802.9 318.6 804.9 327.7 805.8 337.3 805.8 338.3 805.8 339.2 806.8 339.6 806.8 350.4 806.8 361.2 806.8 372.1Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "7520bfac1487e9bf80d606e6b963fe8c",
+ "css": "fallCircle",
+ "code": 59525,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M500 0C224 0 0 224 0 500 0 776.3 224 1000 500 1000 776.3 1000 1000 776 1000 500 1000.3 224 776.3 0 500 0ZM258.5 307.2C258.5 266.8 290.7 234.6 330.5 234.6 370.6 234.6 403.4 266.8 403.4 306.5 403.4 346.6 370.9 379.1 331.1 379.1 291.1 379.1 258.5 346.9 258.5 307.2ZM714.5 567.7C664.9 590 614.7 610.4 563.1 628.5 556.2 630.8 549.3 633.4 541.4 636 555.5 644.5 568.7 652.8 582.5 660 620.6 680 659 699.7 697.4 719.1 708.6 724.7 718.5 731.6 723.1 744.1 732.6 769.1 715.2 800.3 689.2 802.9 681.7 803.5 672.8 801.6 665.9 798.3 579.2 759.2 498 710.9 419.5 657.7 415.6 655.1 411.6 652.1 407.7 649.8 392.9 641.6 383.7 629.1 378.4 613.3 364 567.3 353.2 520 343.3 473.1 339.7 456.3 343.6 440.5 353.2 426.4 399.5 357.4 445.8 288.8 491.8 220.1 499 209.3 507.6 200.4 521 197.8 524.6 197.8 528.3 197.8 531.9 197.8 542 201.1 551.2 205.3 558.5 213.5 573.3 230.3 574.2 250.3 561.1 270 530.9 315 500.3 360.1 469.8 405.1 468.1 407.4 466.8 409.7 464.8 412.6 476.3 424.4 483.6 438.9 487.2 454.7 489.8 466.5 492.4 478.3 495.1 489.8 500.3 512.2 505.9 534.2 511.5 556.8 514.5 555.8 516.1 555.5 518.1 554.9 573.9 535.5 629.1 514.1 683 489.5 695.8 483.6 708.6 480.9 721.4 488.8 737.5 499 743.8 514.1 742.4 532.2 740.1 549.3 730 560.4 714.5 567.7Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "5b9ab5c53fa7d12ed9846d8b3f0450d1",
+ "css": "videoCallCircle",
+ "code": 59524,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M617.6 484.6C617 491.8 617 498.4 625.2 502.6 632.1 506.2 638 511.8 644.2 516.4 650.8 521.4 657.4 526 664.6 531.2 664.6 503 664.6 475.7 664.6 447.4 648.8 458.9 634 469.8 619.3 480.9 618.6 481.9 617.9 483.6 617.6 484.6ZM554.9 425.4C533.8 425.4 512.5 425.4 491.5 425.4 469.8 425.4 448.1 425.4 426.4 425.4 412.6 425.4 405.4 432.7 405.4 446.5 405.4 475.4 405.4 504.3 405.4 532.9 405.4 546.3 412.6 553.5 426.1 553.5 469.1 553.5 512.2 553.5 555.2 553.5 568.7 553.5 575.6 546.3 575.9 532.9 575.9 503.9 575.9 475 575.9 446.5 575.9 432.7 568.7 425.8 554.9 425.4ZM521 225.4C369.9 225.4 247.7 347.9 247.7 498.7 247.7 526.3 252 552.9 259.5 578.2 264.5 594.6 271 610.4 278.9 625.2L254.9 685.9 232.9 741.5 286.1 724 342.6 705.6C352.2 713.9 362 721.4 372.9 728.3 415.6 755.9 466.5 772.3 521.4 772.3 672.5 772.3 794.7 649.8 794.7 499 794.3 347.9 671.8 225.4 521 225.4ZM707 570C707 579.5 704.3 587.4 695.5 592 686.6 596.6 678.4 594 670.8 588.4 653.1 574.9 635 561.8 616.6 548.3 615.6 550.9 615 553.2 614.3 555.5 606.1 579.2 583.8 595.6 558.8 595.9 513.5 596.3 468.1 596.3 422.8 595.9 390.6 595.6 364.3 569.6 364 537.1 363.7 505.6 363.7 474.4 364 442.8 364.3 410.3 390.6 384 423.1 383.7 468.1 383.4 513.5 383.4 558.5 383.7 584.1 383.7 606.8 400.5 615 425.1 615.6 426.7 616 428.7 617 431.3 635.3 417.9 653.1 404.7 670.8 391.6 678.7 385.7 686.9 383 696.1 388 705 392.6 707.6 400.5 707.6 410.3 707 463.2 707 516.8 707 570ZM500 0C224 0 0 223.7 0 500 0 776.3 224 1000 500 1000 776.3 1000 1000 776 1000 500 1000.3 223.7 776.3 0 500 0ZM521 824.9C447.4 824.9 379.8 800.3 325.2 758.9L154.4 815 225.7 635C207 594 196.1 548.3 196.1 500 196.1 320.6 341.7 175.1 521 175.1 700.4 175.1 845.9 320.6 845.9 500 845.9 679.4 700.4 824.9 521 824.9Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "0d4b79a78dfc7dce6af1be2003ad089a",
+ "css": "locationAreaCircle",
+ "code": 59523,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M662.9 252.2C662.9 251.9 662.9 251.9 662.9 252.2 656.4 242 649.1 233.2 641.3 225 639.3 223 637 220.7 635 218.7 628.4 212.5 621.5 206.9 614.3 201.6 610.4 199 606.1 196.4 602.2 193.8 593.3 188.5 584.1 183.3 574.2 179 549.6 169.1 525.3 164.2 501 164.2 476.7 164.2 452 169.1 427.7 179 417.5 183.3 408.7 188.2 399.8 193.8 395.5 196.4 391.6 198.7 387.6 201.6 380.4 206.9 373.2 212.5 366.9 218.7 364.7 220.7 362.7 222.7 360.7 225 352.8 233.2 345.3 242 339 251.9 339 251.9 339 251.9 339 252.2 332.1 263.1 325.9 274.9 321 287.7 296.6 349.1 302.9 408.5 336.7 465 343.6 476.2 350.2 487.7 357.1 498.8 405.1 576 452.7 652.9 500.7 730 501 730.7 501.3 731.4 502 732 502.3 731.4 503 730.7 503.3 730 551.2 652.9 598.9 576 646.8 498.8 653.7 487.7 660.3 476.2 667.2 465 701 408.5 707.3 349.1 683 287.7 676.1 274.9 669.8 263.1 662.9 252.2ZM500.3 477.5C500 477.5 500 477.5 499.7 477.5 435 477.5 382.4 425.3 382.1 360.3 382.1 295.9 434.6 243 499.3 242.7 499.7 242.7 499.7 242.7 500 242.7 500.3 242.7 500.3 242.7 500.7 242.7 565 242.7 617.9 295.9 617.9 360.3 617.6 425.3 565 477.8 500.3 477.5ZM502.6 282.1C501.6 282.1 501 281.8 500 281.8 499 281.8 498.4 282.1 497.4 282.1 455.3 283.7 421.8 318.2 422.1 360.6 422.5 403.6 457 438.1 500 438.4 543 438.1 577.5 403.6 577.9 360.6 578.2 318.2 544.7 283.7 502.6 282.1ZM500 0C224 0 0 224 0 500.2 0 776.4 224 1000 500 1000 776 1000 1000 776 1000 500.2 1000.3 224 776.3 0 500 0ZM500 874.5C369.6 874.5 271 829.9 271 770.4 271 728.7 319.3 694.3 393.2 677.5L412.3 707.7C348.2 720.5 308.5 746.5 308.5 770.4 308.5 803.9 387.3 841.7 500 841.7 612.7 841.7 691.5 804.3 691.5 770.4 691.5 746.5 651.4 720.5 587.7 707.7L606.8 677.5C680.7 694.3 729 728.7 729 770.4 729 829.6 630.7 874.5 500 874.5ZM733.2 385.9C732.6 391.8 731.9 397.7 730.6 403.3 729.3 411.2 727 419 724.7 426.9 724.7 427.3 724.7 427.3 724.4 427.6 718.1 447.6 709.9 467.3 698.4 486 689.6 500.5 680.4 515.3 671.5 529.7 621.9 613.1 571.6 696.6 521.7 780 515.8 790.1 507.6 793.8 500 792.4 492.1 793.8 484.2 790.1 478.3 780 428.4 696.6 378.1 613.5 328.5 529.7 319.6 515.3 310.4 500.5 301.6 486 290.1 467.3 281.9 447.6 275.6 427.6 275.6 427.3 275.6 427.3 275.3 426.9 273 419 271 411.5 269.4 403.6 268.1 397.7 267.4 391.8 266.8 385.9 266.4 381.6 265.4 377.3 265.4 373.1 264.8 361.9 265.1 350.4 266.4 338.9 266.4 337.9 266.4 336.6 266.4 335.6 266.8 332 268.1 328.4 268.4 324.8 269.4 319.5 270.4 314.3 271.7 308.7 279.6 272.6 295.3 240.4 319 211.8 338.4 187.5 361.4 168.1 388 154 394.2 150.7 400.8 147.8 407.4 145.2 409 144.5 410.3 143.8 412 143.2 424.1 138.3 436.6 134 450.1 131 462.2 128.4 474.4 127.4 486.5 125.5 486.9 125.5 487.2 125.5 487.5 125.5 496.1 125.5 504.3 125.5 512.8 125.5 513.1 125.5 513.5 125.5 513.8 125.5 526 127.1 538.4 128.4 550.3 131 563.4 134 575.9 138.3 588.4 143.2 590 143.8 591.3 144.5 593 145.2 599.5 147.8 606.1 150.7 612.4 154 639.3 168.1 662.3 187.5 681.3 211.8 705 240.1 720.8 272.6 728.6 308.7 730 314 730.9 319.2 731.9 324.8 732.6 328.4 733.6 331.7 733.9 335.6 733.9 336.6 733.9 337.9 733.9 338.9 735.2 350.4 735.5 361.6 734.9 373.1 734.6 377.3 733.9 381.3 733.2 385.9Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "13ed5c032e0f78a45f87f524128093c3",
+ "css": "doNotDisturbCircle",
+ "code": 59522,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M438.9 438.9C409.3 468.5 405.7 514.5 428.1 548.3L548 428.4C514.5 405.7 468.8 409.3 438.9 438.9ZM573.9 195.1C573.3 193.5 569.3 191.9 567 191.9 522.3 191.5 477.7 191.9 432.7 191.5 428.4 191.5 426.4 192.8 424.8 197.1 417.2 217.5 409.7 237.8 401.8 258.2 401.1 260.2 400.5 262.2 399.8 264.8 466.8 264.8 532.9 264.8 599.9 264.8 591.3 240.8 582.8 217.8 573.9 195.1ZM400.8 738.8C409 760.8 417.2 782.5 425.1 804.5 426.4 808.5 429 808.8 432.3 808.8 477 808.8 521.7 808.8 566.7 808.8 571.6 808.8 573.3 806.8 574.9 802.9 580.8 786.1 587.4 769.4 593.6 752.6 595.6 747 597.6 741.8 599.9 735.5 532.9 735.5 466.8 735.5 400.1 735.5 400.5 737.2 400.8 737.8 400.8 738.8ZM452 571.9C485.5 594.6 531.5 591 561.4 561.1 591.3 531.2 594.6 485.5 572.3 451.7L452 571.9ZM500 0C224 0 0 224 0 500 0 776.3 224 1000 500 1000 776 1000 1000 776 1000 500 1000.3 224 776.3 0 500 0ZM653.7 730C650.8 731.3 647.8 734.2 646.8 737.2 634.7 768.7 622.5 800.6 611 832.5 607.8 842 602.5 848.9 593 852.5 530.9 852.5 469.1 852.5 407 852.5 397.5 849.2 392.2 842 388.6 832.8 377.1 800.9 365 769.4 353.2 737.5 351.5 733.2 349.2 730.9 344.9 729.3 314.1 717.1 294 687.6 294 654.4 294 551.6 294 448.8 294 345.9 294 312.7 314.1 283.2 344.9 271 349.2 269.4 351.5 267.1 353.2 262.8 365 230.9 377.1 198.8 389 166.9 394.5 151.8 400.5 147.8 416.9 147.8 472.4 147.8 527.9 147.8 583.4 147.8 598.6 147.8 604.5 152.1 609.7 165.9 621.9 198.4 634 231.3 646.5 263.8 647.5 266.4 650.5 269.4 653.1 270.7 685.9 285.1 704.7 310.1 705 345.9 705.6 449.1 705.6 551.9 705 655.1 705.3 690.5 686.6 715.5 653.7 730ZM620.9 309.1C540.4 309.1 459.9 309.1 379.4 309.1 353.8 309.1 338.7 324.2 338.7 349.5 338.7 399.5 338.7 449.4 338.7 499.7 338.7 549.9 338.7 600.2 338.7 650.5 338.7 676.1 353.5 691.2 379.1 691.2 459.9 691.2 540.7 691.2 621.2 691.2 646.5 691.2 661.6 676.1 661.6 650.5 661.6 550.6 661.6 450.4 661.6 350.5 661.6 324.2 646.5 309.1 620.9 309.1ZM586.4 586.4C538.8 634 461.6 634 413.9 586.4 366.3 538.8 366.3 461.6 413.9 413.9 461.6 366.3 538.8 366.3 586.4 413.9 634 461.6 634 538.8 586.4 586.4Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "02c0fc96e05681667dddbc7743097570",
+ "css": "contactsCircle",
+ "code": 59521,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M546.3 380.1C544 380.1 542.7 379.8 541.4 379.8 540.1 379.8 538.8 379.8 537.4 380.1 510.8 382.7 490.8 405.1 490.8 430.7 490.8 458.6 513.5 481.3 541.4 481.3 569.3 481.3 592 458.6 592 430.7 592 405.1 571.9 382.7 546.3 380.1ZM735.9 220.1C732.3 219.1 728.3 218.8 724.4 218.8 592.3 218.8 459.9 218.8 327.9 218.8 326.2 218.8 324.2 218.8 322.6 218.8 309.1 219.4 298.6 229 298 242.8 297.3 258.9 297.6 275.3 297.6 291.7 297.6 292 298 292.4 298.6 293.4 302.2 293.4 305.8 293.4 309.8 293.4 324.9 293.7 336.1 304.5 336.1 319 336.1 333.8 324.9 344.9 309.5 345.3 305.5 345.3 301.6 345.3 297.6 345.3 297.6 389.3 297.6 432 297.6 475.4V527.3C297.6 571.3 297.6 614 297.6 657.7 302.2 657.7 306.5 657.7 310.8 657.7 325.2 658.3 336.1 669.5 336.1 684 336.1 698.1 325.2 708.9 311.1 709.6 306.8 709.9 302.6 709.6 297.6 709.6 297.6 726.3 297.3 742.1 297.6 757.9 298 769.1 305.8 777.3 316.7 779.9 319.6 780.6 323.3 780.9 326.2 780.9 459.3 780.9 592.3 780.9 725.4 780.9 727 780.9 728.3 780.9 730 780.9 742.8 779.9 752.6 770.4 753.9 757.6 754.3 754.3 754.3 751 754.3 747.7 754.3 582.5 754.3 416.9 754.3 251.6 754.3 248 754.3 244.7 753.9 241.1 752.6 230.6 746.4 223.1 735.9 220.1ZM694.2 617.9C693.8 619.9 693.5 621.9 692.8 623.9 687.9 641.9 672.5 653.4 653.7 653.4 638.3 653.4 623.2 653.4 607.8 653.4 600.9 653.4 594 653.4 587.1 653.4 577.9 653.4 570.6 645.9 570.6 637 570.6 627.8 577.9 620.6 587.1 620.6H652.8C655.7 620.6 658 619.6 659.7 617.6 661 615.6 661.3 613 660.3 610.4L660 609.1C657.7 600.9 655.1 592.3 651.4 584.8 640.6 561.4 623.9 543.4 600.9 530.2 591.7 525 581.8 521 571.6 518.1 569.6 517.7 568.3 517.1 566.7 516.8 565.4 516.4 563.7 516.1 562.4 515.8L560.4 515.4C559.1 515.1 557.8 515.1 556.5 514.8H555.2C553.2 514.5 551.6 514.5 549.6 514.1 543 513.8 536.5 513.8 531.2 514.1 529.2 514.1 527.3 514.5 525.3 514.8L523.3 510.2 524 515.1C522.7 515.4 521.4 515.4 520 515.8L518.1 516.1C516.4 516.4 515.1 516.8 513.8 517.1 512.5 517.4 510.8 517.7 509.5 518.1 499 520.7 489.5 525 480 530.2 457 543.4 439.9 561.4 429.4 584.8 425.8 592.3 423.5 600.9 420.8 609.1L420.5 610.4C419.5 613.3 419.8 616 421.2 617.6 422.5 619.6 424.8 620.6 428.1 620.6H493.8C503 620.6 510.2 627.8 510.2 637 510.2 646.2 503 653.4 493.8 653.4 471.4 653.4 449.4 653.4 427.4 653.4 408.7 653.4 393.6 641.9 388.3 623.9 387.6 621.9 387.3 619.6 387 617.6L386.7 613.3C387.6 603.8 390.3 594 394.5 582.5 401.4 564.4 411.6 547.6 424.4 533.2 427.7 529.2 431.7 525.6 435.9 521.7 435.9 521.4 436.9 520.4 437.9 519.4 449.1 509.9 460.6 502.3 472.7 496.7 474.7 495.7 476.7 495.1 478.6 494.1L483.2 492.1C466.8 476.7 457.9 457.9 456.6 436.3 455 411 463.2 389.3 480.9 371.5 496.4 356.1 517.1 347.2 538.8 346.9H540.4 542C563.7 347.2 584.1 356.1 599.5 371.5 617.3 389.3 625.5 411.3 623.9 436.3 622.5 457.9 613.3 476.7 597.2 492.1L601.5 494.1C603.5 495.1 605.5 495.7 607.4 496.7 619.6 502.3 631.4 509.9 642.2 519.4 643.2 520.4 644.2 521 644.9 522 648.5 525.3 652.4 529.2 656 532.9 669.2 547.3 679 564.1 685.9 582.1 690.2 593.6 692.8 603.5 693.8 613L694.2 617.9ZM500 0C224 0 0 223.7 0 500 0 776.3 224 1000 500 1000 776.3 1000 1000 776 1000 500 1000 224 776.3 0 500 0ZM806.5 750.7C806.5 756.6 806.2 762.8 805.2 768.7 798 807.2 766.4 833.1 726 833.1 612 833.1 498 833.1 384 833.1 362.7 833.1 341.3 833.4 320.3 833.1 280.6 832.1 247.7 799.9 245.7 760.2 245.1 745.7 245.4 730.9 245.1 716.5 245.1 714.2 244.7 711.9 244.7 709.3 227.3 709.3 210.6 709.3 193.5 709.3 193.5 691.5 193.5 674.8 193.5 657 210.9 657 227.7 657 244.7 657 244.7 613.7 244.7 570.6 244.7 527.3V474.7C244.7 431 244.7 388.3 244.7 344.6 227.3 344.6 210.6 344.6 193.5 344.6 193.5 326.9 193.5 310.1 193.5 292.4 210.9 292.4 227.7 292.4 245.1 292.4 245.1 276.9 245.1 261.8 245.1 247 245.4 212.9 260.5 188.2 291.4 173.1 298.3 169.8 306.2 168.5 313.4 166.2 455 166.2 596.6 166.2 737.8 166.2 743.1 167.5 748.4 168.9 753.3 170.5 786.5 182 806.2 211.2 806.2 249 806.5 416.6 806.5 583.4 806.5 750.7Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "9a8b8e756018418e3d56ee2140f2255d",
+ "css": "calendarCircle",
+ "code": 59520,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M201.1 706.4C201.1 737.9 226.7 763.5 258.2 763.5H741.8C773.3 763.5 798.9 737.9 798.9 706.4V436.8H201.1V706.4ZM650.8 520.2H703C716.2 520.2 727 531 727 544.2 727 557.3 716.2 568.1 703 568.1H650.8C637.6 568.1 626.8 557.3 626.8 544.2 626.8 531 637.6 520.2 650.8 520.2ZM650.8 632.8H703C716.2 632.8 727 643.7 727 656.8 727 670 716.2 680.8 703 680.8H650.8C637.6 680.8 626.8 670 626.8 656.8 626.8 643.7 637.6 632.8 650.8 632.8ZM479 520.2H531.2C544.3 520.2 555.2 531 555.2 544.2 555.2 557.3 544.3 568.1 531.2 568.1H479C465.8 568.1 455 557.3 455 544.2 455 531 465.8 520.2 479 520.2ZM479 632.8H531.2C544.3 632.8 555.2 643.7 555.2 656.8 555.2 670 544.3 680.8 531.2 680.8H479C465.8 680.8 455 670 455 656.8 455 643.7 465.8 632.8 479 632.8ZM299.6 520.2H359.1C372.2 520.2 383 531 383 544.2 383 557.3 372.2 568.1 359.1 568.1H299.6C286.5 568.1 275.6 557.3 275.6 544.2 275.6 531 286.5 520.2 299.6 520.2ZM299.6 632.8H359.1C372.2 632.8 383 643.7 383 656.8 383 670 372.2 680.8 359.1 680.8H299.6C286.5 680.8 275.6 670 275.6 656.8 275.6 643.7 286.5 632.8 299.6 632.8ZM741.8 303.8H718.1V325.8C718.1 338.9 707.3 349.8 694.2 349.8 681 349.8 670.2 338.9 670.2 325.8V303.8H325.6V325.8C325.6 338.9 314.7 349.8 301.6 349.8 288.4 349.8 277.6 338.9 277.6 325.8V303.8H258.2C226.7 303.8 201.1 329.4 201.1 360.9V388.8H799.3V360.9C799.3 329.4 773.7 303.8 741.8 303.8ZM500 0C224 0 0 224 0 500.2 0 776.4 224 1000 500 1000 776.3 1000 1000 776 1000 500.2 1000.3 224 776.3 0 500 0ZM846.9 706.4C846.9 764.5 799.9 811.5 741.8 811.5H258.2C200.1 811.5 153.1 764.5 153.1 706.4V360.9C153.1 302.8 200.1 255.8 258.2 255.8H277.9V212.5C277.9 199.3 288.8 188.5 301.9 188.5 315 188.5 325.9 199.3 325.9 212.5V255.8H670.8V212.5C670.8 199.3 681.7 188.5 694.8 188.5 707.9 188.5 718.8 199.3 718.8 212.5V255.8H742.4C800.6 255.8 847.6 302.8 847.6 360.9V706.4H846.9Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "cdf4232225d3c490b02c67fedf3481fd",
+ "css": "connection",
+ "code": 59519,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M794.6 381.3C791.7 383.3 788.3 384.3 784.8 384.3V384.4C782.5 384.4 780.2 383.9 778 383 775.9 382.1 773.9 380.8 772.3 379.2 698.7 305.8 599 264.5 495.1 264.5 391.1 264.5 291.4 305.8 217.8 379.2 216.2 380.9 214.3 382.2 212.1 383.1 210 384 207.6 384.5 205.3 384.5 203 384.5 200.6 384.1 198.5 383.2 196.3 382.3 194.3 381 192.7 379.4 191 377.7 189.7 375.7 188.8 373.6 187.9 371.4 187.5 369.1 187.5 366.8 187.5 364.4 188 362.1 188.9 359.9 189.8 357.8 191.2 355.8 192.8 354.2 232.5 314.6 279.6 283.1 331.5 261.7 383.4 240.2 438.9 229.2 495.1 229.2 551.2 229.2 606.8 240.2 658.6 261.7 710.5 283.1 757.6 314.6 797.3 354.2 799.7 356.7 801.4 359.8 802.1 363.2 802.8 366.7 802.4 370.2 801.1 373.4 799.8 376.6 797.5 379.4 794.6 381.3ZM672.7 511.2C676.2 511.1 679.6 510.1 682.5 508.1 685.4 506.2 687.7 503.5 689 500.2 690.3 497 690.7 493.5 690 490.1 689.3 486.7 687.6 483.5 685.2 481 635.4 431.4 567.8 403.5 497.4 403.5 427 403.5 359.5 431.4 309.6 481 308 482.7 306.7 484.6 305.8 486.8 304.9 488.9 304.4 491.2 304.4 493.5 304.4 495.9 304.9 498.2 305.8 500.3 306.7 502.4 308 504.4 309.6 506 311.2 507.7 313.2 509 315.3 509.9 317.5 510.8 319.8 511.2 322.1 511.2 324.4 511.2 326.7 510.8 328.9 509.9 331 509 333 507.7 334.6 506 377.8 463 436.4 438.8 497.4 438.8 558.4 438.8 617 463 660.2 506 661.8 507.7 663.8 509 665.9 509.9 668.1 510.8 670.4 511.2 672.7 511.2V511.2ZM437.5 595.4C420.9 609.9 409.8 629.6 406.2 651.2 402.5 672.9 406.5 695.2 417.4 714.2 428.3 733.3 445.5 748 466 755.9 486.5 763.8 509.2 764.3 530.1 757.3 550.9 750.4 568.8 736.5 580.5 717.9 592.3 699.3 597.2 677.3 594.5 655.5 591.8 633.7 581.6 613.5 565.7 598.3 549.8 583.1 529.1 574 507.1 572.3 494.6 571.4 482 573 470 576.9 458.1 580.9 447 587.2 437.5 595.4ZM560.3 672.5C559.2 686.4 553.4 699.5 543.7 709.6 534.1 719.7 521.2 726.1 507.3 727.8 493.5 729.5 479.5 726.3 467.7 718.8 455.9 711.3 447.1 700 442.7 686.7 438.4 673.5 438.7 659.1 443.8 646.1 448.8 633.1 458.3 622.3 470.4 615.4 482.6 608.6 496.7 606.1 510.5 608.5 524.3 611 536.7 618 545.9 628.6 551 634.6 555 641.6 557.5 649.1 559.9 656.7 560.9 664.6 560.3 672.5ZM784.8 384.3L784.8 373.9 774.4 373.9V384.3H784.8ZM794.6 381.3L788.8 372.7 788.8 372.7 794.6 381.3ZM784.8 384.4L784.8 394.8 795.2 394.8V384.4H784.8ZM772.3 379.2L779.6 371.8 779.6 371.8 772.3 379.2ZM495.1 264.5V254.1 264.5ZM217.8 379.2L210.5 371.8 210.4 371.9 217.8 379.2ZM212.1 383.1L208 373.5 208 373.5 212.1 383.1ZM205.3 384.5L205.2 374.1H205.2L205.3 384.5ZM198.5 383.2L202.4 373.6 202.4 373.6 198.5 383.2ZM192.7 379.4L185.3 386.7H185.3L192.7 379.4ZM188.8 373.6L179.2 377.5V377.5L188.8 373.6ZM187.5 366.8L177.1 366.7 187.5 366.8ZM188.9 359.9L198.5 364 198.5 364 188.9 359.9ZM192.8 354.2L200.1 361.7 200.2 361.6 192.8 354.2ZM331.5 261.7L335.5 271.3V271.3L331.5 261.7ZM658.6 261.7L662.6 252V252L658.6 261.7ZM797.3 354.2L804.7 346.9 804.6 346.9 797.3 354.2ZM802.1 363.2L791.9 365.3V365.3L802.1 363.2ZM801.1 373.4L791.5 369.4 791.5 369.4 801.1 373.4ZM682.5 508.1L676.7 499.5 676.7 499.5 682.5 508.1ZM672.7 511.2L672.7 500.7 662.3 500.8V511.2H672.7ZM690 490.1L679.8 492.1V492.1L690 490.1ZM685.2 481L692.6 473.7 692.5 473.7 685.2 481ZM309.6 481L302.3 473.7 302.3 473.7 309.6 481ZM305.8 486.8L296.2 482.8V482.8L305.8 486.8ZM304.4 493.5L294 493.5V493.5L304.4 493.5ZM305.8 500.3L296.1 504.3 296.1 504.3 305.8 500.3ZM309.6 506L317 498.7 317 498.7 309.6 506ZM315.3 509.9L311.4 519.5 311.4 519.5 315.3 509.9ZM334.6 506L327.3 498.7 327.3 498.7 334.6 506ZM660.2 506L667.5 498.7 667.5 498.7 660.2 506ZM665.9 509.9L662 519.5 662 519.5 665.9 509.9ZM672.7 511.2L672.7 521.6 683.1 521.6V511.2H672.7ZM406.2 651.2L395.9 649.5V649.5L406.2 651.2ZM437.5 595.4L430.7 587.5 430.7 587.6 437.5 595.4ZM417.4 714.2L426.4 709.1H426.4L417.4 714.2ZM466 755.9L469.7 746.2V746.2L466 755.9ZM530.1 757.3L526.8 747.5V747.5L530.1 757.3ZM594.5 655.5L604.8 654.2V654.2L594.5 655.5ZM565.7 598.3L572.9 590.8V590.8L565.7 598.3ZM507.1 572.3L507.9 561.9 507.9 561.9 507.1 572.3ZM470 576.9L473.3 586.8H473.3L470 576.9ZM543.7 709.6L551.2 716.8 551.2 716.8 543.7 709.6ZM560.3 672.5L549.9 671.7V671.7L560.3 672.5ZM507.3 727.8L506.1 717.4V717.4L507.3 727.8ZM467.7 718.8L473.3 710H473.3L467.7 718.8ZM443.8 646.1L453.5 649.9V649.9L443.8 646.1ZM470.4 615.4L475.5 624.5H475.5L470.4 615.4ZM545.9 628.6L553.7 621.8H553.7L545.9 628.6ZM557.5 649.1L547.6 652.4 547.6 652.4 557.5 649.1ZM784.8 394.7C790.4 394.7 795.8 393.1 800.4 390L788.8 372.7C787.6 373.5 786.2 373.9 784.8 373.9L784.8 394.7ZM795.2 384.4V384.3H774.4V384.4H795.2ZM774.1 392.7C777.5 394.1 781.1 394.8 784.8 394.8L784.8 374C783.8 374 782.9 373.8 782 373.4L774.1 392.7ZM764.9 386.6C767.5 389.2 770.6 391.2 774.1 392.7L782 373.4C781.1 373 780.3 372.5 779.6 371.8L764.9 386.6ZM495.1 275C596.3 275 693.3 315.1 764.9 386.6L779.6 371.8C704.2 296.5 601.8 254.1 495.1 254.1V275ZM225.2 386.6C296.8 315.1 393.9 275 495.1 275V254.1C388.3 254.1 286 296.5 210.5 371.8L225.2 386.6ZM216.2 392.7C219.6 391.2 222.7 389.1 225.3 386.5L210.4 371.9C209.7 372.6 208.9 373.2 208 373.5L216.2 392.7ZM205.4 394.9C209.1 394.9 212.8 394.2 216.2 392.7L208 373.5C207.1 373.9 206.2 374.1 205.2 374.1L205.4 394.9ZM194.5 392.8C198 394.3 201.6 395 205.4 394.9L205.2 374.1C204.3 374.1 203.3 373.9 202.4 373.6L194.5 392.8ZM185.3 386.7C188 389.4 191.1 391.4 194.5 392.8L202.4 373.6C201.5 373.2 200.7 372.7 200 372L185.3 386.7ZM179.2 377.5C180.6 381 182.7 384.1 185.3 386.7L200 372C199.4 371.3 198.8 370.5 198.5 369.6L179.2 377.5ZM177.1 366.7C177.1 370.4 177.8 374.1 179.2 377.5L198.5 369.6C198.1 368.7 197.9 367.8 197.9 366.8L177.1 366.7ZM179.3 355.9C177.9 359.3 177.1 363 177.1 366.7L197.9 366.8C197.9 365.9 198.1 364.9 198.5 364L179.3 355.9ZM185.6 346.8C182.9 349.3 180.8 352.4 179.3 355.9L198.5 364C198.9 363.2 199.4 362.4 200.1 361.7L185.6 346.8ZM327.5 252C274.4 274 226.1 306.2 185.5 346.9L200.2 361.6C238.9 322.9 284.9 292.2 335.5 271.3L327.5 252ZM495.1 218.8C437.6 218.8 380.6 230.1 327.5 252L335.5 271.3C386.1 250.4 440.3 239.6 495.1 239.6V218.8ZM662.6 252C609.5 230.1 552.6 218.8 495.1 218.8V239.6C549.8 239.6 604.1 250.4 654.6 271.3L662.6 252ZM804.6 346.9C764 306.2 715.7 274 662.6 252L654.6 271.3C705.2 292.2 751.2 322.9 789.9 361.6L804.6 346.9ZM812.3 361.2C811.2 355.8 808.6 350.8 804.7 346.9L789.9 361.6C790.9 362.6 791.6 363.9 791.9 365.3L812.3 361.2ZM810.7 377.4C812.8 372.3 813.4 366.6 812.3 361.2L791.9 365.3C792.2 366.7 792 368.1 791.5 369.4L810.7 377.4ZM800.4 390C805 386.9 808.6 382.5 810.7 377.4L791.5 369.4C790.9 370.7 790 371.9 788.8 372.7L800.4 390ZM676.7 499.5C675.5 500.3 674.1 500.7 672.7 500.7L672.8 521.6C678.3 521.5 683.7 519.9 688.3 516.8L676.7 499.5ZM679.4 496.3C678.8 497.6 677.9 498.7 676.7 499.5L688.3 516.8C692.9 513.7 696.5 509.3 698.6 504.2L679.4 496.3ZM679.8 492.1C680 493.5 679.9 494.9 679.4 496.3L698.6 504.2C700.7 499.1 701.3 493.5 700.2 488L679.8 492.1ZM677.8 488.4C678.8 489.4 679.5 490.7 679.8 492.1L700.2 488C699.1 482.6 696.5 477.6 692.6 473.7L677.8 488.4ZM497.4 413.9C565.1 413.9 629.9 440.7 677.8 488.4L692.5 473.7C640.7 422 570.6 393.1 497.4 393.1V413.9ZM317 488.4C364.9 440.7 429.7 413.9 497.4 413.9V393.1C424.2 393.1 354.1 422 302.3 473.7L317 488.4ZM315.4 490.8C315.8 489.9 316.3 489.1 317 488.4L302.3 473.7C299.6 476.3 297.6 479.4 296.2 482.8L315.4 490.8ZM314.8 493.5C314.8 492.6 315 491.6 315.4 490.8L296.2 482.8C294.7 486.2 294 489.8 294 493.5L314.8 493.5ZM315.4 496.3C315 495.4 314.8 494.5 314.8 493.5L294 493.5C294 497.2 294.7 500.9 296.1 504.3L315.4 496.3ZM317 498.7C316.3 498 315.8 497.2 315.4 496.3L296.1 504.3C297.6 507.7 299.6 510.8 302.2 513.4L317 498.7ZM319.3 500.2C318.4 499.9 317.6 499.3 317 498.7L302.2 513.4C304.8 516 307.9 518.1 311.4 519.5L319.3 500.2ZM322.1 500.8C321.2 500.8 320.2 500.6 319.3 500.2L311.4 519.5C314.8 520.9 318.4 521.6 322.1 521.6L322.1 500.8ZM324.9 500.2C324 500.6 323.1 500.8 322.1 500.8L322.1 521.6C325.8 521.6 329.4 520.9 332.9 519.5L324.9 500.2ZM327.3 498.7C326.6 499.3 325.8 499.9 324.9 500.2L332.9 519.5C336.3 518.1 339.4 516 342 513.4L327.3 498.7ZM497.4 428.4C433.6 428.4 372.4 453.7 327.3 498.7L342 513.4C383.2 472.3 439.1 449.2 497.4 449.2V428.4ZM667.5 498.7C622.4 453.7 561.2 428.4 497.4 428.4V449.2C555.7 449.2 611.6 472.3 652.8 513.4L667.5 498.7ZM669.9 500.3C669 499.9 668.2 499.4 667.5 498.7L652.8 513.4C655.4 516 658.5 518.1 662 519.5L669.9 500.3ZM672.7 500.8C671.8 500.8 670.8 500.6 669.9 500.3L662 519.5C665.4 520.9 669 521.7 672.7 521.6L672.7 500.8ZM662.3 511.2V511.2H683.1V511.2H662.3ZM416.4 653C419.7 633.7 429.6 616.1 444.3 603.3L430.7 587.6C412.3 603.6 400 625.5 395.9 649.5L416.4 653ZM426.4 709.1C416.7 692.1 413.2 672.3 416.4 653L395.9 649.5C391.8 673.5 396.2 698.2 408.3 719.4L426.4 709.1ZM469.7 746.2C451.4 739.2 436.1 726.1 426.4 709.1L408.3 719.4C420.4 740.6 439.5 756.9 462.3 765.6L469.7 746.2ZM526.8 747.5C508.2 753.6 488 753.2 469.7 746.2L462.3 765.6C485.1 774.3 510.2 774.9 533.3 767.2L526.8 747.5ZM571.7 712.3C561.2 728.9 545.4 741.3 526.8 747.5L533.3 767.2C556.5 759.5 576.3 744.1 589.3 723.5L571.7 712.3ZM584.2 656.8C586.6 676.2 582.2 695.8 571.7 712.3L589.3 723.5C602.4 702.9 607.8 678.4 604.8 654.2L584.2 656.8ZM558.5 605.9C572.7 619.4 581.8 637.3 584.2 656.8L604.8 654.2C601.8 630 590.6 607.6 572.9 590.8L558.5 605.9ZM506.4 582.7C525.9 584.2 544.3 592.4 558.5 605.9L572.9 590.8C555.2 573.9 532.3 563.8 507.9 561.9L506.4 582.7ZM473.3 586.8C483.9 583.3 495.2 581.9 506.4 582.7L507.9 561.9C494 560.9 480 562.7 466.7 567.1L473.3 586.8ZM444.3 603.3C452.8 596 462.6 590.4 473.3 586.8L466.7 567.1C453.5 571.5 441.2 578.4 430.7 587.5L444.3 603.3ZM551.2 716.8C562.6 705 569.4 689.6 570.7 673.3L549.9 671.7C549 683.2 544.2 694.1 536.2 702.4L551.2 716.8ZM508.6 738.1C524.8 736.2 539.9 728.6 551.2 716.8L536.2 702.4C528.2 710.8 517.6 716.1 506.1 717.4L508.6 738.1ZM462.1 727.6C475.9 736.4 492.3 740.1 508.6 738.1L506.1 717.4C494.6 718.8 483 716.2 473.3 710L462.1 727.6ZM432.8 690C437.9 705.5 448.3 718.8 462.1 727.6L473.3 710C463.5 703.8 456.2 694.4 452.6 683.5L432.8 690ZM434.1 642.3C428.2 657.6 427.7 674.4 432.8 690L452.6 683.5C449 672.5 449.3 660.6 453.5 649.9L434.1 642.3ZM465.3 606.3C451 614.4 440 627.1 434.1 642.3L453.5 649.9C457.7 639.1 465.5 630.2 475.5 624.5L465.3 606.3ZM512.3 598.3C496.2 595.5 479.6 598.3 465.3 606.3L475.5 624.5C485.6 618.8 497.3 616.8 508.7 618.8L512.3 598.3ZM553.7 621.8C543.1 609.4 528.4 601.1 512.3 598.3L508.7 618.8C520.1 620.8 530.4 626.7 538 635.4L553.7 621.8ZM567.3 645.9C564.4 637 559.8 628.9 553.7 621.8L538 635.4C542.2 640.4 545.5 646.2 547.6 652.4L567.3 645.9ZM570.7 673.3C571.4 664.1 570.3 654.7 567.3 645.9L547.6 652.4C549.6 658.6 550.4 665.2 549.9 671.7L570.7 673.3Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "d9ab0ada4a6bda3f4f974dd8d154b5bf",
+ "css": "activityCircle",
+ "code": 59527,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M672.8 298.3C624.2 285.8 582.8 302.2 550.3 339.4 532.9 359.4 517.4 381.4 500 404.1 479.6 378.4 462.6 353.5 442.2 331.8 398.2 285.1 325.6 281.9 279.9 322.3 231.3 365.6 226.3 433.3 269.7 484.6 334.8 562.1 400.1 639 465.5 716.2 475.7 728.3 486.2 740.5 497 753.6 577.9 660.3 657 569.6 735.2 478.3 757.2 452.4 764.1 420.2 756.9 386.7 747 340.7 718.5 310.1 672.8 298.3ZM500 0C224 0 0 223.7 0 500 0 776.3 224 1000 500 1000 776.3 1000 1000 776 1000 500 1000.3 223.7 776.3 0 500 0ZM776.6 522C693.8 618.6 610.1 714.2 526.6 810.1 503.6 836.4 489.8 836.1 467.8 810.1 385.7 713.2 303.5 616 221.4 518.7 176.4 465.5 169.5 388.6 203 326.2 235.2 265.8 302.6 230.3 371.2 236.5 423.8 241.5 465.5 265.4 500.7 306.5 535.1 265.8 576.5 241.8 628.5 236.9 698.8 230.3 765.8 265.4 798 326.5 831.5 391.3 824.2 466.5 776.6 522Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "05dd5a74c484decee45995f6ee723ea2",
+ "css": "rewardsCircle",
+ "code": 59528,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M270.4 758.2C340 758.2 409.3 758.2 479 758.2 479 672.8 479 588 479 502.6 409.3 502.6 340 502.6 270.4 502.6 270.4 588.4 270.4 673.1 270.4 758.2ZM478.6 362.4C395.5 362.4 312.7 362.4 230.3 362.4 230.3 394.9 230.3 427.1 230.3 459.3 313.4 459.3 395.9 459.3 478.6 459.3 478.6 426.4 478.6 394.2 478.6 362.4ZM379.4 318.7C409.3 319.3 438.9 318.7 469.8 318.7 457.6 292.7 443.8 269.7 420.5 253.6 409 246.1 396.5 241.8 382.7 241.5 361 241.1 343.3 257.6 342.3 278.9 341.3 300.3 357.4 318 379.4 318.7ZM626.5 318C642.2 315.4 652.8 306.2 657 290.7 661.3 275.3 657.4 262.2 645.9 251.3 633 239.5 617.9 239.2 602.2 243.8 564.7 254.9 547.3 285.5 530.9 318.3 562.4 318.3 592.3 318.3 622.2 318.3 623.9 318.7 625.2 318.3 626.5 318ZM500 0C224 0 0 224 0 500 0 776 224 1000 500 1000 776.3 1000 1000 776 1000 500 1000 224 776.3 0 500 0ZM813.7 485.5C807.2 505.3 790.1 502.6 774.3 502.6 774.3 505.9 774.3 508.5 774.3 510.8 774.3 598.9 774.3 687.3 774.3 775.3 774.3 778.6 774.3 781.9 773.7 785.1 771.7 794.7 764.1 801.2 754.3 801.9 752 801.9 749.7 801.9 747.4 801.9 582.8 801.9 418.2 801.9 253.3 801.9 251 801.9 248.7 801.9 246.7 801.9 237.5 801.2 230 795.3 227.7 786.5 226.7 783.2 226.7 779.6 226.7 776.3 226.7 687.9 226.7 599.5 226.7 511.2 226.7 508.5 226.7 505.9 226.7 503 220.8 503 215.8 503 210.6 503 194.8 503 186.3 494.1 186.3 478.6 186.3 433.6 186.3 389 186.3 344 186.3 327.9 194.8 319.3 210.9 319.3 240.8 319.3 271 319.3 300.9 319.3 303.2 319.3 305.2 319.3 307.2 319.3 304.5 309.8 301.6 300.6 299.9 291.4 292.4 247 329.2 201.4 374.5 199.4 414.6 197.4 446.1 213.9 471.7 243.1 482.6 255.6 491.5 269.4 500.3 281.9 509.2 269.7 517.7 255.9 528.6 243.8 551.9 216.8 581.1 200.4 617.9 199.4 667.9 198.4 706.6 240.1 701.1 289.8 700.1 299.6 696.5 309.5 693.8 319.6 695.1 319.6 697.4 319.6 699.7 319.6 728 319.6 756.6 320 784.8 319.3 798.3 319 808.1 322.6 813.7 335.4 813.7 385 813.7 435.3 813.7 485.5ZM522.7 458.9C605.5 458.9 687.9 458.9 770.4 458.9 770.4 426.7 770.4 394.5 770.4 362 687.6 362 604.8 362 522.7 362 522.7 394.9 522.7 426.7 522.7 458.9ZM522.7 758.5C592.3 758.5 661.3 758.5 730.9 758.5 730.9 672.8 730.9 588 730.9 502.6 661.3 502.6 592 502.6 522.7 502.6 522.7 588 522.7 673.5 522.7 758.5Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "aeb86d1b47f99e36af77f96ff265a0ab",
+ "css": "locateSfCircle",
+ "code": 59529,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M390.3 764.1C399.1 788.4 408.7 812.4 417.2 836.7 418.9 841.3 421.5 841.3 425.4 841.3 475 841.3 524.3 841.3 573.9 841.3 579.5 841.3 581.5 839.4 583.1 834.8 589.7 816 596.9 797.6 603.8 779.2 606.1 773.3 608.4 767.1 610.7 760.5 536.5 760.5 463.5 760.5 389.6 760.5 389.9 762.2 389.9 763.1 390.3 764.1ZM500.3 447.1C493.8 447.1 487.5 449.7 482.9 454.3 478.3 458.9 475.7 465.2 475.7 471.7 475.7 485.2 486.5 496.4 500 496.4 513.5 496.4 524.6 485.5 524.6 472.1 524.6 457.9 513.8 447.1 500.3 447.1ZM581.8 162.3C581.1 160.3 576.9 158.7 574.2 158.7 524.6 158.3 475 158.7 425.8 158.3 420.8 158.3 418.9 160 417.2 164.6 409 187.3 400.5 209.6 391.9 232.3 391.3 234.6 390.6 236.9 389.6 239.5 463.9 239.5 536.8 239.5 611 239.5 600.9 213.2 591.7 187.6 581.8 162.3ZM514.8 383.4C509.5 382.4 504.6 382.1 499.3 382.1 487.2 382.1 475.4 384.7 463.5 389.9 442.8 399.1 427.7 414.6 418.2 435.3 411 451.1 408.7 468.1 411.3 485.5 413.6 501.6 421.5 516.1 427.7 526.9 438.2 545 452.4 563.1 470.4 581.8 477.3 589 484.6 595.9 491.8 602.8 494.4 605.5 497 607.8 499.7 610.4 516.4 595.6 529.2 582.5 540.4 569.6 560.8 546.3 573.6 526.9 582.1 506.9 591 486.2 592 465.5 585.1 444.8 573.9 411 550.3 390.3 514.8 383.4ZM542.4 513.5C531.2 524.6 516.1 530.9 500.3 530.9 484.6 530.9 469.4 524.6 458.3 513.5 447.1 502.3 440.9 487.2 440.9 471.4 440.9 455.7 447.1 440.5 458.6 429.4 470.1 418.2 484.9 411.6 500.7 412 533.5 412 560.1 438.9 560.1 471.4 559.8 487.2 553.5 502.3 542.4 513.5ZM500 0C224 0 0 223.7 0 500 0 776.3 224 1000 500 1000 776.3 1000 1000 776 1000 500 1000 224 776.3 0 500 0ZM670.2 754.3C666.9 755.6 663.6 759.2 662.6 762.5 649.1 797.6 636 832.5 623.2 867.9 619.3 878.4 613.7 886.3 603.2 890.3 534.5 890.3 465.8 890.3 397.5 890.3 386.7 886.7 381.1 878.8 377.5 868.3 364.7 833.1 351.2 798 338 762.8 336.4 758.2 333.8 755.6 329.2 753.6 295 740.1 272.7 707.6 272.7 670.5 272.7 556.8 272.7 442.8 272.7 329.2 272.7 292.4 295 259.9 329.2 246.4 334.1 244.4 336.4 241.8 338 237.2 351.2 201.7 364.3 166.2 377.8 131.1 384 114.3 390.3 109.7 408.7 109.7 470.1 109.7 531.5 109.7 593 109.7 609.7 109.7 616.3 114.3 622.2 129.8 635.7 165.9 649.1 202 662.9 237.8 664.3 240.8 667.2 244.1 670.2 245.4 706.6 261.2 727.3 289.1 727.7 328.5 728.6 442.5 728.3 556.5 727.7 670.8 727 710.6 706.6 738.5 670.2 754.3ZM633.7 288.4C544.7 288.4 455.3 288.4 366.3 288.4 337.7 288.4 321.3 305.2 321.3 333.1 321.3 388.6 321.3 443.8 321.3 499.3 321.3 554.9 321.3 610.7 321.3 666.2 321.3 694.5 337.7 711.6 366 711.6 455.3 711.6 544.7 711.6 634 711.6 662.3 711.6 679 694.8 679 666.2 679 555.5 679 444.8 679 334.1 679 305.2 662.3 288.4 633.7 288.4ZM607.1 522.3C598.6 541.1 586.4 559.8 569 580.8 550.3 603.5 528.6 624.8 504.9 644.2 504.6 644.5 504.3 644.9 503.9 645.2L502.3 646.8H498.4L496.7 645.2C496.4 644.9 496.4 644.5 496.1 644.5 469.8 623.2 445.8 599.2 425.4 573.6 408.7 552.6 397.5 534.2 390.6 515.8 376.5 479.3 379.4 444.2 399.1 411 417.9 379.4 446.1 360.7 482.6 354.8 514.1 349.9 543.7 357.1 570 376.5 595.9 395.5 611.7 421.5 617 453.4 620.9 476.3 617.3 499.7 607.1 522.3Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
+ },
+ {
+ "uid": "aca7aa7439ff0bf2ee30da8c7e056628",
+ "css": "chat",
+ "code": 59530,
+ "src": "custom_icons",
+ "selected": true,
+ "svg": {
+ "path": "M320.5 450C330.4 450 339.8 453.9 346.8 460.9 353.8 467.9 357.7 477.3 357.7 487.2 357.7 494.5 355.5 501.7 351.4 507.8 347.3 514 341.5 518.7 334.7 521.5 327.9 524.3 320.5 525.1 313.2 523.6 306 522.2 299.4 518.7 294.2 513.5 289 508.3 285.5 501.6 284 494.4 282.6 487.2 283.4 479.7 286.2 472.9 289 466.2 293.8 460.3 299.9 456.3 306 452.2 313.2 450 320.5 450ZM479.9 30.4C543.4 27.7 606.8 37.9 666.3 60.4 725.8 82.9 780.2 117.2 826 161.4 871.8 205.5 908.2 258.4 933 317H933C970.9 406.7 979.9 505.9 959 601 938 696.1 888 782.3 816 847.8 743.9 913.3 653.3 954.8 556.6 966.5 460.4 978.3 362.9 959.9 277.5 914.1L93.1 949.9C90.3 950.6 87.5 951 84.7 951V951C79.6 951 74.7 949.9 70.1 947.7 65.6 945.4 61.7 942.2 58.6 938.2 55.6 934.2 53.4 929.6 52.4 924.6 51.5 919.7 51.6 914.7 52.9 909.9L85.9 722.5C56 666.8 37.7 605.7 31.9 542.7 26.2 479.4 33.3 415.5 53 355 72.6 294.5 104.3 238.6 146.2 190.7 188.1 142.8 239.3 103.9 296.6 76.3 354 48.8 416.3 33.2 479.9 30.4ZM500 95.6C277.1 95.6 95.7 277.1 95.7 500 95.7 570.8 114.2 640.3 149.4 701.7 153.8 709.2 155 718.1 152.7 726.5L152.8 726.5 115 868.8C112.4 878.7 121.4 887.7 131.3 885.1L273.5 847.3C276.3 846.6 279.1 846.2 282 846.2 287.7 846.2 293.4 847.7 298.3 850.6 359.7 885.9 429.2 904.4 500 904.4 722.9 904.4 904.3 723 904.3 500 904.3 277.1 722.9 95.6 500 95.6ZM559 487.2C559 497.8 555.8 508.2 549.9 517.1 544 526 535.6 532.9 525.7 536.9 515.9 541 505.1 542.1 494.6 540 484.2 537.9 474.6 532.8 467.1 525.3 459.5 517.7 454.4 508.1 452.3 497.7 450.2 487.2 451.3 476.4 455.4 466.6 459.5 456.7 466.4 448.3 475.2 442.4 484.1 436.5 494.5 433.3 505.1 433.3 519.4 433.3 533.1 439 543.2 449.1 553.3 459.2 559 472.9 559 487.2ZM525.6 487.2C525.6 491.2 524.4 495.2 522.2 498.6L577.6 535.6C587.2 521.3 592.3 504.4 592.3 487.2H525.6ZM522.2 498.6C519.9 502 516.7 504.6 513 506.1L538.5 567.7C554.4 561.1 568 550 577.6 535.6L522.2 498.6ZM513 506.1C509.2 507.7 505.1 508.1 501.1 507.3L488.1 572.7C505 576 522.6 574.3 538.5 567.7L513 506.1ZM501.1 507.3C497.1 506.5 493.5 504.6 490.6 501.7L443.5 548.8C455.7 561 471.2 569.3 488.1 572.7L501.1 507.3ZM490.6 501.7C487.8 498.8 485.8 495.2 485 491.2L419.6 504.2C423 521.1 431.3 536.6 443.5 548.8L490.6 501.7ZM485 491.2C484.2 487.2 484.6 483.1 486.2 479.3L424.6 453.8C418 469.7 416.3 487.3 419.6 504.2L485 491.2ZM486.2 479.3C487.7 475.6 490.4 472.4 493.7 470.1L456.7 414.7C442.4 424.3 431.2 437.9 424.6 453.8L486.2 479.3ZM493.7 470.1C497.1 467.9 501.1 466.7 505.1 466.7V400C487.9 400 471 405.1 456.7 414.7L493.7 470.1ZM505.1 466.7C510.6 466.7 515.8 468.8 519.6 472.7L566.8 425.5C550.4 409.2 528.3 400 505.1 400V466.7ZM519.6 472.7C523.5 476.5 525.6 481.7 525.6 487.2H592.3C592.3 464.1 583.1 441.9 566.8 425.5L519.6 472.7ZM759 487.2C759 497.8 755.8 508.2 749.9 517.1 744 526 735.6 532.9 725.7 536.9 715.9 541 705.1 542.1 694.6 540 684.2 537.9 674.6 532.8 667.1 525.3 659.5 517.7 654.4 508.1 652.3 497.7 650.2 487.2 651.3 476.4 655.4 466.6 659.5 456.7 666.4 448.3 675.2 442.4 684.1 436.5 694.5 433.3 705.1 433.3 719.4 433.3 733.1 439 743.2 449.1 753.3 459.2 759 472.9 759 487.2ZM725.6 487.2C725.6 491.2 724.4 495.2 722.2 498.6L777.6 535.6C787.2 521.3 792.3 504.4 792.3 487.2H725.6ZM722.2 498.6C719.9 502 716.7 504.6 713 506.1L738.5 567.7C754.4 561.1 768 550 777.6 535.6L722.2 498.6ZM713 506.1C709.2 507.7 705.1 508.1 701.1 507.3L688.1 572.7C705 576 722.6 574.3 738.5 567.7L713 506.1ZM701.1 507.3C697.1 506.5 693.5 504.6 690.6 501.7L643.5 548.8C655.7 561 671.2 569.3 688.1 572.7L701.1 507.3ZM690.6 501.7C687.8 498.8 685.8 495.2 685 491.2L619.6 504.2C623 521.1 631.3 536.6 643.5 548.8L690.6 501.7ZM685 491.2C684.2 487.2 684.6 483.1 686.2 479.3L624.6 453.8C618 469.7 616.3 487.3 619.6 504.2L685 491.2ZM686.2 479.3C687.7 475.6 690.4 472.4 693.7 470.1L656.7 414.7C642.4 424.3 631.2 437.9 624.6 453.8L686.2 479.3ZM693.7 470.1C697.1 467.9 701.1 466.7 705.1 466.7V400C687.9 400 671 405.1 656.7 414.7L693.7 470.1ZM705.1 466.7C710.6 466.7 715.8 468.8 719.6 472.7L766.8 425.5C750.4 409.2 728.3 400 705.1 400V466.7ZM719.6 472.7C723.5 476.5 725.6 481.7 725.6 487.2H792.3C792.3 464.1 783.1 441.9 766.8 425.5L719.6 472.7Z",
+ "width": 1000
+ },
+ "search": [
+ "icon"
+ ]
}
]
}
\ No newline at end of file
diff --git a/packages/design_system/lib/src/icons/sf_icons.dart b/packages/design_system/lib/src/icons/sf_icons.dart
index 5460df53..3298d941 100644
--- a/packages/design_system/lib/src/icons/sf_icons.dart
+++ b/packages/design_system/lib/src/icons/sf_icons.dart
@@ -1,5 +1,5 @@
/// Flutter icons SFIcons
-/// Copyright (C) 2025 by original authors @ fluttericon.com, fontello.com
+/// Copyright (C) 2026 by original authors @ fluttericon.com, fontello.com
/// This font was generated by FlutterIcon.com, which is derived from Fontello.
///
/// To use this font, place it in your fonts/ directory and include the
@@ -17,310 +17,93 @@
/// License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
/// Homepage: https://design.google.com/icons/
///
-library;
-
import 'package:flutter/widgets.dart';
-import 'package:utils/utils.dart';
class SFIcons {
SFIcons._();
static const _kFontFam = 'SFIcons';
- static const _kFontPkg = isTest ? null : 'sf_components_package';
+ static const String? _kFontPkg = 'design_system';
- static const IconData back = IconData(
- 0xe800,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData euro = IconData(
- 0xe801,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData location = IconData(
- 0xe802,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData alert = IconData(
- 0xe803,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData close = IconData(
- 0xe804,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData immoSelected = IconData(
- 0xe805,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData forward = IconData(
- 0xe806,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData favorite = IconData(
- 0xe807,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData search = IconData(
- 0xe808,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData filter = IconData(
- 0xe809,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData filterList = IconData(
- 0xe80a,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData finance = IconData(
- 0xe80b,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData infoOutlined = IconData(
- 0xe80c,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData arrowLeftAlt = IconData(
- 0xe80d,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData edit = IconData(
- 0xe80e,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData cookie = IconData(
- 0xe80f,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData email = IconData(
- 0xe810,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData video = IconData(
- 0xe811,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData phone = IconData(
- 0xe812,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData chevronRight = IconData(
- 0xe813,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData checkCircle = IconData(
- 0xe814,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData lightbulbOn = IconData(
- 0xe815,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData externalLink = IconData(
- 0xe816,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData preferences = IconData(
- 0xe817,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData bank = IconData(
- 0xe818,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData arrowRightAlt = IconData(
- 0xe819,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData offline = IconData(
- 0xe81a,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData cursorClick = IconData(
- 0xe81b,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData wand = IconData(
- 0xe81c,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData help = IconData(
- 0xe81d,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData notifications = IconData(
- 0xe81e,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData helpOutlined = IconData(
- 0xe81f,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData contentCopy = IconData(
- 0xe820,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData apartmentScene = IconData(
- 0xe821,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData walletAddMoney = IconData(
- 0xe822,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData walletSubtractMoney = IconData(
- 0xe823,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData start = IconData(
- 0xe828,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData immo = IconData(
- 0xe829,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData star = IconData(
- 0xe82a,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData startSelected = IconData(
- 0xe82b,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData infoCircle = IconData(
- 0xe82c,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData financeSelected = IconData(
- 0xe82d,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData loginOutlined = IconData(
- 0xe82f,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData bank1 = IconData(
- 0xe830,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData gavel = IconData(
- 0xe831,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData timer = IconData(
- 0xe832,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData home = IconData(
- 0xe83a,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData apartment = IconData(
- 0xe83b,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData radioButtonUncheckedRounded = IconData(
- 0xe83c,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData radioButtonCheckedRounded = IconData(
- 0xe83d,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData share = IconData(
- 0xe858,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData favoriteOutlined = IconData(
- 0xe859,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData renovationSelected = IconData(
- 0xe862,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData renovation = IconData(
- 0xe868,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData rotateLeft = IconData(
- 0xe835,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData options = IconData(
- 0xe86f,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData service = IconData(
- 0xe870,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData question = IconData(
- 0xe871,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
- static const IconData lightbulbOutline = IconData(
- 0xe8a8,
- fontFamily: _kFontFam,
- fontPackage: _kFontPkg,
- );
+ static const IconData back = IconData(0xe800, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData euro = IconData(0xe801, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData location = IconData(0xe802, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData alert = IconData(0xe803, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData close = IconData(0xe804, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData immoSelected = IconData(0xe805, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData forward = IconData(0xe806, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData favorite = IconData(0xe807, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData search = IconData(0xe808, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData filter = IconData(0xe809, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData filterList = IconData(0xe80a, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData finance = IconData(0xe80b, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData infoOutlined = IconData(0xe80c, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData arrowLeftAlt = IconData(0xe80d, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData edit = IconData(0xe80e, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData cookie = IconData(0xe80f, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData email = IconData(0xe810, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData video = IconData(0xe811, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData phone = IconData(0xe812, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData chevronRight = IconData(0xe813, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData checkCircle = IconData(0xe814, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData lightbulbOn = IconData(0xe815, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData externalLink = IconData(0xe816, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData preferences = IconData(0xe817, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData bank = IconData(0xe818, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData arrowRightAlt = IconData(0xe819, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData offline = IconData(0xe81a, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData cursorClick = IconData(0xe81b, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData wand = IconData(0xe81c, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData help = IconData(0xe81d, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData notifications = IconData(0xe81e, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData helpOutlined = IconData(0xe81f, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData contentCopy = IconData(0xe820, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData apartmentScene = IconData(0xe821, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData walletAddMoney = IconData(0xe822, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData walletSubtractMoney = IconData(0xe823, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData google = IconData(0xe824, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData premium = IconData(0xe825, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData savings = IconData(0xe826, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData functions = IconData(0xe827, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData start = IconData(0xe828, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData immo = IconData(0xe829, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData star = IconData(0xe82a, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData startSelected = IconData(0xe82b, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData infoCircle = IconData(0xe82c, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData financeSelected = IconData(0xe82d, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData loginOutlined = IconData(0xe82f, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData bank1 = IconData(0xe830, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData gavel = IconData(0xe831, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData timer = IconData(0xe832, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData rotateLeft = IconData(0xe835, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData home = IconData(0xe83a, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData apartment = IconData(0xe83b, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData radioButtonUncheckedRounded = IconData(0xe83c, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData radioButtonCheckedRounded = IconData(0xe83d, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData payments = IconData(0xe83e, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData customerService = IconData(0xe83f, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData account = IconData(0xe840, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData privacy = IconData(0xe841, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData watch = IconData(0xe843, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData handshake = IconData(0xe844, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData share = IconData(0xe858, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData favoriteOutlined = IconData(0xe859, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData renovationSelected = IconData(0xe862, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData renovation = IconData(0xe868, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData options = IconData(0xe86f, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData service = IconData(0xe870, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData question = IconData(0xe871, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData connection = IconData(0xe87f, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData calendarCircle = IconData(0xe880, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData contactsCircle = IconData(0xe881, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData doNotDisturbCircle = IconData(0xe882, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData locationAreaCircle = IconData(0xe883, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData videoCallCircle = IconData(0xe884, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData fallCircle = IconData(0xe885, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData medicationCircle = IconData(0xe886, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData activityCircle = IconData(0xe887, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData rewardsCircle = IconData(0xe888, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData locateSfCircle = IconData(0xe889, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData chat = IconData(0xe88a, fontFamily: _kFontFam, fontPackage: _kFontPkg);
+ static const IconData lightbulbOutline = IconData(0xe8a8, fontFamily: _kFontFam, fontPackage: _kFontPkg);
}
diff --git a/packages/design_system/pubspec.yaml b/packages/design_system/pubspec.yaml
index d6a0b4d4..0bdeca72 100644
--- a/packages/design_system/pubspec.yaml
+++ b/packages/design_system/pubspec.yaml
@@ -32,6 +32,10 @@ dev_dependencies:
# The following section is specific to Flutter packages.
flutter:
uses-material-design: true
+ fonts:
+ - family: SFIcons
+ fonts:
+ - asset: fonts/SFIcons.ttf
# To add assets to your package, add an assets section, like this:
# assets:
diff --git a/packages/sf_localizations/assets/l10n/en.json b/packages/sf_localizations/assets/l10n/en.json
index b58dd5dc..b1f48462 100755
--- a/packages/sf_localizations/assets/l10n/en.json
+++ b/packages/sf_localizations/assets/l10n/en.json
@@ -139,5 +139,25 @@
"watchesOnMap": "Smartwatch on the map",
"home": "Home",
"location": "Location",
- "chat": "Chat"
+ "chat": "Chat",
+ "personalData": "Personal Data",
+ "addNewSF": "Add a new SaveFamily",
+ "linkedDevices": "Linked Devices",
+ "appUsers": "App Users",
+ "privacyPolicy": "User privacy policy",
+ "logOut": "Log out",
+ "loginEmail": "(Login email)",
+ "userNameLabel": "User name",
+ "userPhoneLabel": "User phone number",
+ "contactEmailLabel": "Contact email",
+ "passwordLabel": "Password (6 to 12 digits)",
+ "submit": "Submit",
+ "save": "Save",
+ "editDeviceTitle": "Edit Device",
+ "name": "Name",
+ "deleteDeviceDialog": "Are you sure you want to delete this device from the list?",
+ "cancel": "Cancel",
+ "delete": "Delete",
+ "userAccount": "Account: {email}",
+ "userRole": "Role: {role}"
}
\ No newline at end of file
diff --git a/packages/sf_localizations/assets/l10n/es.json b/packages/sf_localizations/assets/l10n/es.json
index c2e75c56..4242bd58 100644
--- a/packages/sf_localizations/assets/l10n/es.json
+++ b/packages/sf_localizations/assets/l10n/es.json
@@ -139,5 +139,25 @@
"watchesOnMap": "Reloj inteligente en el mapa",
"home": "Inicio",
"location": "Mapa",
- "chat": "Chat"
+ "chat": "Chat",
+ "personalData": "Datos Personales",
+ "addNewSF": "Añadir un nuevo SaveFamily",
+ "linkedDevices": "Dispositivos vinculados",
+ "appUsers": "Usuarios de la App",
+ "privacyPolicy": "Política de privacidad",
+ "logOut": "Cerrar sesión",
+ "loginEmail": "(Correo electrónico)",
+ "userNameLabel": "Nombre del usuario",
+ "userPhoneLabel": "Número de teléfono del usuario",
+ "contactEmailLabel": "Correo de contacto",
+ "passwordLabel": "Contraseña (de 6 a 12 caracteres)",
+ "submit": "Enviar",
+ "save": "Guardar",
+ "editDeviceTitle": "Editar Dispositivo",
+ "name": "Nombre",
+ "deleteDeviceDialog": "¿Estás seguro de que quieres eliminar este dispositivo de la lista?",
+ "cancel": "Cancelar",
+ "delete": "Eliminar",
+ "userAccount": "Cuenta: {email}",
+ "userRole": "Rol: {role}"
}
\ No newline at end of file