2022-10-05 14:55:04 +00:00
|
|
|
import { library, icon, config, dom } from "@fortawesome/fontawesome-svg-core";
|
|
|
|
import {
|
|
|
|
faBook,
|
|
|
|
faBrowser,
|
|
|
|
faComment,
|
|
|
|
faEllipsis,
|
|
|
|
faFileAlt,
|
|
|
|
faFileSignature,
|
|
|
|
faGraduationCap,
|
|
|
|
faHome,
|
|
|
|
faNotebook,
|
|
|
|
faPodium,
|
|
|
|
faPresentation,
|
|
|
|
faUniversity,
|
|
|
|
faUserAstronaut,
|
|
|
|
faVideo,
|
|
|
|
faW,
|
|
|
|
} from "@fortawesome/pro-duotone-svg-icons";
|
|
|
|
import {
|
|
|
|
faDiscord,
|
|
|
|
faGithub,
|
|
|
|
faGitlab,
|
|
|
|
faGolang,
|
|
|
|
faHtml5,
|
|
|
|
faOrcid,
|
|
|
|
faStackOverflow,
|
|
|
|
faSteam,
|
|
|
|
faVimeo,
|
|
|
|
} from "@fortawesome/free-brands-svg-icons";
|
|
|
|
|
|
|
|
config.familyDefault = "duotone";
|
|
|
|
config.styleDefault = "duotone";
|
|
|
|
|
|
|
|
const faBullSperm = {
|
|
|
|
prefix: "fax",
|
|
|
|
iconName: "bull-sperm",
|
2022-03-27 02:23:35 +00:00
|
|
|
icon: [
|
|
|
|
512,
|
|
|
|
512,
|
|
|
|
[],
|
|
|
|
null,
|
2022-10-05 14:55:04 +00:00
|
|
|
"M96 32c-6.691.363-12.375 4.062-15.375 7.062l-64 64c-12.8 12.8-5.333 26.667 0 32l96 64c10.3 10.301 22.938 4.887 37.563-7.812 8.635 9.735 16.63 18.38 23.125 24.875 8.33 8.33 23.436 16.284 41.75 24.313 18.313 8.028 39.82 16.065 60.812 24.062 20.992 7.997 41.474 15.986 57.625 23.938 16.15 7.95 27.882 16.013 31.5 23.25 6.52 13.038 26.468 44.939 48.875 79.75 22.32 34.674 46.99 72.043 63 96.062.02.029.042.096.064.125.045.064.144.185.189.25l2.812-1.5c-10.685-26.697-28.285-68.26-46.44-106.437-18.155-38.179-36.666-72.792-49.937-86.063-16.566-16.566-56.5-32.375-96.5-48.375s-80.066-32.19-95.5-47.625c-6.45-6.45-14.409-15.11-23.063-24.875 12.926-14.779 18.51-27.552 8.125-37.938-16-26.666-51.2-83.2-64-96-5.6-5.6-11.42-7.345-16.625-7.062zm372.688 436.75c.201.487.488 1.079.687 1.563-.291-.44-.644-.995-.937-1.438.023-.012.06.001.064 0 .002 0 .185-.06.188-.064.002-.001-.011-.038 0-.064z",
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faBook,
|
|
|
|
faBrowser,
|
|
|
|
faBullSperm,
|
|
|
|
faComment,
|
|
|
|
faDiscord,
|
|
|
|
faEllipsis,
|
|
|
|
faFileAlt,
|
|
|
|
faFileSignature,
|
|
|
|
faGithub,
|
|
|
|
faGitlab,
|
|
|
|
faGolang,
|
|
|
|
faGraduationCap,
|
|
|
|
faHome,
|
|
|
|
faHtml5,
|
|
|
|
faNotebook,
|
|
|
|
faOrcid,
|
|
|
|
faPodium,
|
|
|
|
faPresentation,
|
|
|
|
faStackOverflow,
|
|
|
|
faSteam,
|
|
|
|
faUniversity,
|
|
|
|
faUserAstronaut,
|
|
|
|
faVideo,
|
|
|
|
faVimeo,
|
|
|
|
faW
|
|
|
|
);
|
2022-03-27 02:23:35 +00:00
|
|
|
|
2022-10-05 14:55:04 +00:00
|
|
|
dom.i2svg();
|