can add karyawan

This commit is contained in:
kicap1992
2021-05-01 10:38:01 +08:00
parent 7c09b4a7f6
commit 6fb6596e75
1457 changed files with 634291 additions and 1003 deletions

View File

@ -0,0 +1,16 @@
@function char($character-code) {
@if function-exists("selector-append") {
@return unquote("\"\\#{$character-code}\"");
}
@if "\\#{'x'}" == "\\x" {
@return str-slice("\x", 1, 1) + $character-code;
}
@else {
@return #{"\"\\"}#{$character-code + "\""};
}
}
@function mdi($name) {
@return char(map-get($mdi-icons, $name));
}