-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSocialList.tsx
More file actions
31 lines (31 loc) · 952 Bytes
/
SocialList.tsx
File metadata and controls
31 lines (31 loc) · 952 Bytes
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
import styles from './SocialList.module.css';
export default function SocialList() {
return (
<ul role="list" class={styles.socialList}>
<li>
<a href="https://github.com/solidjs/solid">
<span class="sr-only">Navigate to Github</span>
<i class="fa-brands fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.reddit.com/r/solidjs/">
<span class="sr-only">Navigate to Reddit</span>
<i class="fa-brands fa-reddit-square"></i>
</a>
</li>
<li>
<a href="https://discord.com/invite/solidjs">
<span class="sr-only">Navigate to Discord</span>
<i class="fa-brands fa-discord"></i>
</a>
</li>
<li>
<a href="https://twitter.com/solid_js">
<span class="sr-only">Navigate to Twitter</span>
<i class="fa-brands fa-twitter-square"></i>
</a>
</li>
</ul>
);
}