npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tsaddict/react-social-share

v0.1.6

Published

Lightweight React social share buttons with Tailwind animations and React Icons.

Readme

@tsaddict/react-social-share

A lightweight, modern React component library for social media sharing with beautiful Tailwind CSS animations and React Icons integration.

🚀 Features

  • 9 Social Platforms: Facebook, X (Twitter), LinkedIn, WhatsApp, Telegram, Reddit, Email, Messenger, and Discord
  • Beautiful Animations: Smooth hover effects with scale transforms and color transitions
  • Tailwind CSS Ready: Built with Tailwind CSS for easy customization (requires Tailwind CSS setup)
  • TypeScript Support: Full TypeScript support with proper type definitions
  • Accessibility: ARIA labels and semantic HTML for screen readers
  • Responsive Design: Mobile-friendly with proper touch targets
  • Customizable: Extensive customization options for styling and behavior
  • Lightweight: Minimal bundle size with tree-shaking support
  • Custom Icons: Support for custom icon components and props

📦 Installation

npm install @tsaddict/react-social-share

Tailwind CSS Setup

Since this package uses Tailwind CSS utility classes, you need to have Tailwind CSS configured in your project:

For Tailwind CSS v3 (Stable)

  1. Install Tailwind CSS:

    npm install -D tailwindcss postcss autoprefixer
    npx tailwindcss init -p
  2. Configure your tailwind.config.js:

    /** @type {import('tailwindcss').Config} */
    module.exports = {
      content: [
        "./src/**/*.{js,jsx,ts,tsx}",
        "./node_modules/@tsaddict/react-social-share/**/*.{js,jsx,ts,tsx}"
      ],
      theme: {
        extend: {},
      },
      plugins: [],
    }
  3. Import Tailwind in your CSS:

    @tailwind base;
    @tailwind components;
    @tailwind utilities;

For Tailwind CSS v4 (Alpha/Beta)

  1. Install Tailwind CSS v4:

    npm install -D tailwindcss@next
  2. Create tailwind.config.ts:

    import type { Config } from 'tailwindcss'
       
    export default {
      content: [
        "./src/**/*.{js,jsx,ts,tsx}",
        "./node_modules/@tsaddict/react-social-share/**/*.{js,jsx,ts,tsx}"
      ],
    } satisfies Config
  3. Import Tailwind in your CSS:

    @import "tailwindcss";

Note: Tailwind v4 is still in development. For production apps, we recommend using v3.

Peer Dependencies

This package requires the following peer dependencies:

{
  "react": "^19.1.1",
  "react-dom": "^19.1.1",
  "react-icons": ">=4.0.0",
  "tailwindcss": ">=3.0.0 || ^4.0.0-alpha"
}

Important: You must have Tailwind CSS configured in your project for the styling to work. The components use Tailwind utility classes that need to be processed by Tailwind CSS.

Make sure you have these installed in your project.

🎯 Quick Start

Basic Usage

import { SocialButton, SocialShareGroup } from "@tsaddict/react-social-share";

function App() {
  return (
    <div>
      {/* Single social share button */}
      <SocialButton
        platform="twitter"
        url="https://example.com"
        text="Check out this amazing article!"
      />

      {/* Group of social share buttons */}
      <SocialShareGroup
        url="https://example.com"
        text="Amazing content to share!"
      />
    </div>
  );
}

🧩 Components

SocialButton

Individual social media share button component.

Props

| Prop | Type | Required | Default | Description | | --------------- | ---------- | -------- | ---------------- | --------------------------------------- | | platform | Platform | ✅ | - | Social media platform to share to | | url | string | ✅ | - | URL to share | | text | string | ❌ | - | Optional text to include with the share | | label | string | ❌ | Platform default | Custom label text | | className | string | ❌ | "" | Additional CSS classes for styling | | iconClassName | string | ❌ | "" | Additional CSS classes for the icon |

Platform Values

type Platform = 
  | "facebook" 
  | "X" 
  | "linkedin" 
  | "whatsapp" 
  | "telegram" 
  | "reddit"
  | "email"
  | "messenger"
  | "discord";

Example

<SocialButton
  platform="linkedin"
  url="https://mycompany.com/careers"
  text="We're hiring! Check out our open positions."
  label="Share on LinkedIn"
  className="text-sm px-6 py-3"
  iconClassName="text-xl"
/>

SocialShareGroup

Container component that renders multiple social share buttons.

Props

| Prop | Type | Required | Default | Description | | ----------------- | ----------------------------------- | -------- | ------------------------------------- | ------------------------------------ | | url | string | ✅ | - | URL to share | | text | string | ❌ | - | Optional text to include with shares | | platforms | Platform[] | ❌ | All platforms | Specific platforms to show | | wrapClassName | string | ❌ | "flex flex-wrap items-center gap-3" | Container CSS classes | | buttonClassName | string | ❌ | - | CSS classes applied to all buttons | | iconClassName | string | ❌ | - | CSS classes applied to all icons | | labels | Partial<Record<Platform, string>> | ❌ | {} | Custom labels per platform |

Example

<SocialShareGroup
  url="https://myblog.com/post-123"
  text="Amazing blog post about React!"
  platforms={["twitter", "linkedin", "reddit"]}
  wrapClassName="flex flex-col gap-2"
  buttonClassName="w-full justify-center"
  labels={{
    twitter: "Tweet this",
    linkedin: "Share on LinkedIn",
    reddit: "Post to Reddit",
  }}
/>

🎨 Customization

Styling with Tailwind CSS

The components use Tailwind CSS classes and can be easily customized:

// Custom button styling
<SocialButton
  platform="facebook"
  url="https://example.com"
  className="bg-purple-600 hover:bg-purple-700 rounded-full px-6 py-3"
/>

// Custom group layout
<SocialShareGroup
  url="https://example.com"
  wrapClassName="grid grid-cols-2 md:grid-cols-3 gap-4"
  buttonClassName="text-sm font-bold"
/>

Platform-Specific Colors

Each platform has its brand colors by default:

  • Facebook: Blue (bg-blue-600)
  • X (Twitter): Black (bg-black)
  • LinkedIn: Blue (bg-blue-700)
  • WhatsApp: Green (bg-green-500)
  • Telegram: Sky (bg-sky-400)
  • Reddit: Orange (bg-orange-500)
  • Email: Gray (bg-gray-500)
  • Messenger: Blue (bg-blue-500)
  • Discord: Purple (bg-purple-500)

Animation Classes

The components include smooth animations:

  • Hover: Scale up (hover:scale-110)
  • Active: Scale down (active:scale-95)
  • Transitions: Smooth duration (transition-all duration-300)

Custom Icons

You can override the default icons with custom ones:

import { FaCustomIcon } from 'react-icons/fa';

<SocialButton
  platform="facebook"
  url="https://example.com"
  icon={FaCustomIcon}
  iconProps={{ size: 24, color: "white" }}
/>

🔧 Advanced Usage

Conditional Rendering

function ShareSection({ article, user }) {
  const platforms = user.isPremium 
    ? ["facebook", "X", "linkedin", "whatsapp", "telegram", "reddit", "email", "messenger", "discord"]
    : ["facebook", "X"];
    
  return (
    <SocialShareGroup
      url={article.url}
      text={article.title}
      platforms={platforms}
    />
  );
}

Dynamic Labels

function ShareButtons({ post }) {
  const labels = {
    X: `Share "${post.title}" on X`,
    linkedin: `Share "${post.title}" on LinkedIn`,
    facebook: `Share "${post.title}" on Facebook`,
    email: `Email "${post.title}" to friends`,
    messenger: `Send "${post.title}" via Messenger`
  };

  return <SocialShareGroup url={post.url} text={post.title} labels={labels} />;
}

Custom Share URLs

import { getShareUrl } from "@tsaddict/react-social-share";

function CustomShareButton({ platform, url, text }) {
  const shareUrl = getShareUrl(platform, url, text);

  const handleClick = () => {
    // Custom logic before sharing
    analytics.track("share_clicked", { platform, url });
    window.open(shareUrl, "_blank");
  };

  return <button onClick={handleClick}>Share on {platform}</button>;
}

📱 Mobile Support

The components are fully responsive and mobile-optimized:

  • Touch Targets: Proper sizing for mobile devices
  • WhatsApp Integration: Uses wa.me for mobile and desktop compatibility
  • Responsive Layout: Flexible grid/flexbox layouts that work on all screen sizes

♿ Accessibility

  • ARIA Labels: Proper labeling for screen readers
  • Semantic HTML: Uses anchor tags for sharing functionality
  • Keyboard Navigation: Full keyboard support
  • Focus Indicators: Clear focus states for keyboard users

🚀 Performance

  • Tree Shaking: Only import what you use
  • Minimal Dependencies: Lightweight bundle size
  • Efficient Rendering: Optimized React components
  • Lazy Loading: Icons are loaded only when needed

🧪 Testing

The components are designed to be easily testable:

import { render, screen } from "@testing-library/react";
import { SocialButton } from "@tsaddict/react-social-share";

test("renders social button with correct platform", () => {
  render(<SocialButton platform="X" url="https://example.com" />);

  expect(screen.getByLabelText("Share on X")).toBeInTheDocument();
});

🔍 Browser Support

  • Modern Browsers: Chrome, Firefox, Safari, Edge (latest versions)
  • Mobile Browsers: iOS Safari, Chrome Mobile, Samsung Internet
  • IE: Not supported (uses modern ES6+ features)

📄 License

MIT License - see LICENSE file for details.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📞 Support

If you encounter any issues or have questions:

  1. Check the Issues page
  2. Create a new issue with detailed information
  3. Include your React version, browser, and reproduction steps

🔄 Changelog

v0.1.5

  • Added 3 new platforms: Email, Messenger, and Discord
  • Renamed "twitter" to "X" to match current branding
  • Added custom icon support with icon and iconProps props
  • Enhanced accessibility with data-testid attributes
  • Improved TypeScript types and component props

v0.1.0

  • Initial release
  • Support for 6 social platforms
  • Tailwind CSS integration
  • TypeScript support
  • Responsive design
  • Accessibility features

📚 Examples

Blog Post Sharing

function BlogPost({ post }) {
  return (
    <article>
      <h1>{post.title}</h1>
      <p>{post.excerpt}</p>

      <div className="mt-8">
        <h3>Share this post:</h3>
        <SocialShareGroup
          url={post.url}
          text={post.title}
          platforms={["twitter", "linkedin", "facebook"]}
          wrapClassName="flex gap-3 mt-4"
        />
      </div>
    </article>
  );
}

Product Page Sharing

function ProductPage({ product }) {
  return (
    <div>
      <h1>{product.name}</h1>
      <p>{product.description}</p>

      <SocialShareGroup
        url={product.url}
        text={`Check out ${product.name} - ${product.description}`}
        labels={{
          twitter: "Tweet this product",
          facebook: "Share on Facebook",
          whatsapp: "Share via WhatsApp",
        }}
        buttonClassName="bg-gray-800 hover:bg-gray-900"
      />
    </div>
  );
}

Newsletter Signup

function NewsletterSignup() {
  return (
    <div className="bg-blue-50 p-6 rounded-lg">
      <h3>Stay updated!</h3>
      <p>Share our newsletter with your network:</p>

      <SocialShareGroup
        url="https://mycompany.com/newsletter"
        text="Subscribe to our amazing newsletter!"
        platforms={["twitter", "linkedin"]}
        wrapClassName="flex gap-2 mt-4"
        buttonClassName="text-sm px-3 py-2"
      />
    </div>
  );
}

Built with ❤️ using React, TypeScript, and Tailwind CSS