forked from yaso_meth/mih-project
Add Mzansi Directory Icon
This commit is contained in:
Binary file not shown.
@@ -1,10 +1,10 @@
|
||||
@font-face {
|
||||
font-family: 'Mih_Icons';
|
||||
src: url('fonts/Mih_Icons.eot?kmk862');
|
||||
src: url('fonts/Mih_Icons.eot?kmk862#iefix') format('embedded-opentype'),
|
||||
url('fonts/Mih_Icons.ttf?kmk862') format('truetype'),
|
||||
url('fonts/Mih_Icons.woff?kmk862') format('woff'),
|
||||
url('fonts/Mih_Icons.svg?kmk862#Mih_Icons') format('svg');
|
||||
src: url('fonts/Mih_Icons.eot?blbuxz');
|
||||
src: url('fonts/Mih_Icons.eot?blbuxz#iefix') format('embedded-opentype'),
|
||||
url('fonts/Mih_Icons.ttf?blbuxz') format('truetype'),
|
||||
url('fonts/Mih_Icons.woff?blbuxz') format('woff'),
|
||||
url('fonts/Mih_Icons.svg?blbuxz#Mih_Icons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: block;
|
||||
@@ -26,66 +26,70 @@
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-personal_profile:before {
|
||||
content: "\e90f";
|
||||
}
|
||||
|
||||
.icon-notifications:before {
|
||||
content: "\e90e";
|
||||
}
|
||||
|
||||
.icon-i_dont_know:before {
|
||||
content: "\e90d";
|
||||
}
|
||||
|
||||
.icon-business_setup:before {
|
||||
content: "\e90b";
|
||||
}
|
||||
|
||||
.icon-profile_setup:before {
|
||||
content: "\e90c";
|
||||
}
|
||||
|
||||
.icon-mih_ring:before {
|
||||
content: "\e90a";
|
||||
}
|
||||
|
||||
.icon-about_mih:before {
|
||||
.icon-mzansi_directory:before {
|
||||
content: "\e900";
|
||||
}
|
||||
|
||||
.icon-access_control:before {
|
||||
.icon-personal_profile:before {
|
||||
content: "\e901";
|
||||
}
|
||||
|
||||
.icon-business_profile:before {
|
||||
.icon-about_mih:before {
|
||||
content: "\e902";
|
||||
}
|
||||
|
||||
.icon-calculator:before {
|
||||
.icon-access_control:before {
|
||||
content: "\e903";
|
||||
}
|
||||
|
||||
.icon-calendar:before {
|
||||
.icon-business_profile:before {
|
||||
content: "\e904";
|
||||
}
|
||||
|
||||
.icon-mih_logo:before {
|
||||
.icon-business_setup:before {
|
||||
content: "\e905";
|
||||
}
|
||||
|
||||
.icon-mzansi_ai:before {
|
||||
.icon-i_dont_know:before {
|
||||
content: "\e906";
|
||||
}
|
||||
|
||||
.icon-mzansi_wallet:before {
|
||||
.icon-mih_logo:before {
|
||||
content: "\e907";
|
||||
}
|
||||
|
||||
.icon-patient_manager:before {
|
||||
.icon-mih_ring:before {
|
||||
content: "\e908";
|
||||
}
|
||||
|
||||
.icon-patient_profile:before {
|
||||
.icon-mzansi_ai:before {
|
||||
content: "\e909";
|
||||
}
|
||||
|
||||
.icon-mzansi_wallet:before {
|
||||
content: "\e90a";
|
||||
}
|
||||
|
||||
.icon-notifications:before {
|
||||
content: "\e90b";
|
||||
}
|
||||
|
||||
.icon-patient_manager:before {
|
||||
content: "\e90c";
|
||||
}
|
||||
|
||||
.icon-patient_profile:before {
|
||||
content: "\e90d";
|
||||
}
|
||||
|
||||
.icon-profile_setup:before {
|
||||
content: "\e90e";
|
||||
}
|
||||
|
||||
.icon-calculator:before {
|
||||
content: "\e940";
|
||||
}
|
||||
|
||||
.icon-calendar:before {
|
||||
content: "\e953";
|
||||
}
|
||||
@@ -11,48 +11,54 @@ class MihIcons {
|
||||
// IconData constants based on your style.css file
|
||||
// Note: We convert the hex code from CSS (\eXXX) to an integer (0xeXXX)
|
||||
|
||||
static const IconData aboutMih =
|
||||
static const IconData mzansiDirectory =
|
||||
IconData(0xe900, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData accessControl =
|
||||
static const IconData personalProfile =
|
||||
IconData(0xe901, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData businessProfile =
|
||||
static const IconData aboutMih =
|
||||
IconData(0xe902, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData calculator =
|
||||
static const IconData accessControl =
|
||||
IconData(0xe903, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData calendar =
|
||||
static const IconData businessProfile =
|
||||
IconData(0xe904, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData mihLogo =
|
||||
static const IconData businessSetup =
|
||||
IconData(0xe905, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData mzansiAi =
|
||||
static const IconData iDontKnow =
|
||||
IconData(0xe906, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData mzansiWallet =
|
||||
static const IconData mihLogo =
|
||||
IconData(0xe907, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData patientManager =
|
||||
static const IconData mihRing =
|
||||
IconData(0xe908, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData patientProfile =
|
||||
static const IconData mzansiAi =
|
||||
IconData(0xe909, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData mihRing =
|
||||
static const IconData mzansiWallet =
|
||||
IconData(0xe90a, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData profileSetup =
|
||||
IconData(0xe90c, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData businessSetup =
|
||||
static const IconData notifications =
|
||||
IconData(0xe90b, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData notifications =
|
||||
IconData(0xe90e, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
static const IconData patientManager =
|
||||
IconData(0xe90c, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData personalProfile =
|
||||
IconData(0xe90f, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
static const IconData patientProfile =
|
||||
IconData(0xe90d, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData profileSetup =
|
||||
IconData(0xe90d, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData calculator =
|
||||
IconData(0xe940, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
|
||||
static const IconData calendar =
|
||||
IconData(0xe953, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user