-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiconic-salmon-svg-icons.typ
58 lines (33 loc) · 2.41 KB
/
iconic-salmon-svg-icons.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/// A function that creates a box with the associated icon of the web page
///
/// - file (str): The file of the associated icon
/// - height (float): The height of the icon
/// -> content
#let icon(file, height) = box(image(file, height: height))
//
// icon definitions
//
#let facebook-icon(file: "svg/Facebook_Logo_Primary.svg", height: 1.1em) = icon(file, height)
#let instagram-icon(file: "svg/Instagram_logo_2022.svg", height: 0.9em) = icon(file, height)
#let tiktok-icon(file: "svg/TikTok_Icon_Black.svg", height: 0.9em) = icon(file, height)
#let youtube-icon(file: "svg/YouTube_full-color_icon_(2017).svg", height: 0.9em) = icon(file, height)
#let vimeo-icon(file: "svg/vimeo-tile.svg", height: 0.9em) = icon(file, height)
#let linkedin-icon(file: "svg/LinkedIn_icon.svg", height: 0.9em) = icon(file, height)
#let xing-icon(file: "svg/xing-icon.svg", height: 0.9em) = icon(file, height)
#let github-icon(file: "svg/github-mark.svg", height: 0.9em) = icon(file, height)
#let gitlab-icon(file: "svg/GitLab_icon.svg", height: 0.9em) = icon(file, height)
#let bitbucket-icon(file: "svg/mark-gradient-blue-bitbucket.svg", height: 0.9em) = icon(file, height)
#let codeberg-icon(file: "svg/codeberg-logo_icon_blue.svg", height: 0.9em) = icon(file, height)
#let sourceforge-icon(file: "svg/sourceforge-seeklogo.svg", height: 0.9em) = icon(file, height)
#let docker-icon(file: "svg/docker-mark-blue.svg", height: 0.9em) = icon(file, height)
#let stackoverflow-icon(file: "svg/Stack_Overflow_icon.svg", height: 0.9em) = icon(file, height)
#let stackexchange-icon(file: "svg/Stack_Exchange_icon.svg", height: 0.9em) = icon(file, height)
#let skype-icon(file: "svg/skype-icon.svg", height: 0.9em) = icon(file, height)
#let discord-icon(file: "svg/Discord_icon_clyde_blurple_RGB.svg", height: 0.9em) = icon(file, height)
#let twitter-icon(file: "svg/Logo_of_Twitter.svg", height: 0.9em) = icon(file, height)
#let x-twitter-icon(file: "svg/X_logo_2023.svg", height: 0.9em) = icon(file, height)
#let orcid-icon(file: "svg/ORCID_iD.svg", height: 0.9em) = icon(file, height)
#let tryhackme-icon(file: "svg/tryhackme.com.svg", height: 0.9em) = icon(file, height)
#let mastodon-icon(file: "svg/mastodon-logo-purple.svg", height: 0.9em) = icon(file, height)
#let researchgate-icon(file: "svg/ResearchGate_icon_SVG.svg", height: 0.9em) = icon(file, height)
#let google-scholar-icon(file: "svg/Google_Scholar_logo.svg", height: 0.9em) = icon(file, height)