File size: 690 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
```jsx
<SocialNetworksList
  itemsObjects={[
    { name: "twitter", to: "http://www.twitter.com" },
    { name: "linkedin", to: "http://www.linkedin.com" },
  ]}
/>
```

#### As buttons

```jsx
<SocialNetworksList
  itemsObjects={[
    { name: "twitter", label: "Follow", to: "http://www.twitter.com"},
    { name: "linkedin", label: "Connect", color: "blue", to: "http://www.linkedin.com" },
  ]}
  prefix="fa"
  asButtons
/>
```

#### Items as components

```jsx
<SocialNetworksList
  items={[
    <a href="http://www.twitter.com">
      <Icon prefix="fa" name="twitter" />
    </a>,
    <a href="http://www.facebook.com">
      <Icon prefix="fa" name="facebook" />
    </a>,
  ]}
/>
```