1.0.10 • Published 1 year ago

jsx-social-icons v1.0.10

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 year ago

Jsx Social Icons with link

ss


Install

npm i jsx-social-icons
pnpm i jsx-social-icons
yarn add  jsx-social-icons

React

import ReactSocialIcon from "jsx-social-icons/react";

export function Home() {
  return (
    <main>
      <ReactSocialIcon
        name="github"
        href="https://github.com"
        size={36}
        fillColor="#673ab8"
        fillOpacity={0.9}
        title="Link to my github profile"
        target="_blank"
        className="My class"
      />
    </main>
  );
}

Preact

import PreactSocialIcon from "jsx-social-icons/preact";

export function Home() {
  return (
    <div>
      <PreactSocialIcon
        name="github"
        href="https://github.com"
        size={36}
        fillColor="#673ab8"
        fillOpacity={0.9}
        title="Link to my github profile"
        target="_blank"
        className="My class"
      />
    </div>
  );
}

Options

NameDescriptionDefault
nameName of icon
hrefHTML Anchor Element Attribute "href"" # "
targetHTML Anchor Element Attribute "target""_blank"
classNameHTML Anchor Element "className"" "
titleTooltip text for iconname of icon
sizeSize for icon24
fillColorColor for icon"currentcolor"
fillOpacityOpacity of icon. 0.1 to 10.7

All of these icons are from simple icons - https://simpleicons.org/ - https://github.com/simple-icons/simple-icons

License - https://github.com/simple-icons/simple-icons?tab=CC0-1.0-1-ov-file#cc0-10-universal

Legal Disclaimer : https://github.com/simple-icons/simple-icons/blob/develop/DISCLAIMER.md#disclaimer

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

0.0.1

1 year ago