Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
<SocialNetworksList
  itemsObjects={[
    { name: "twitter", to: "http://www.twitter.com" },
    { name: "linkedin", to: "http://www.linkedin.com" },
  ]}
/>

As buttons

<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

<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>,
  ]}
/>