@molecule/app-social-share-buttons-react
v1.0.1
Published
Twitter/LinkedIn/Facebook/copy share button group
Maintainers
Readme
@molecule/app-social-share-buttons-react
Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit
src/index.tsJSDoc, not this file.
Social share buttons row.
Exports <SocialShareButtons> — Twitter(X)/LinkedIn/Facebook/Reddit/
email/copy button group, plus the SocialPlatform union. Each network
button opens that platform's share URL in a new tab; 'copy' writes
the URL to the clipboard with "Copied!" feedback. 'x' is an alias
of 'twitter' (same intent URL). Default platforms:
twitter, linkedin, facebook, copy.
Quick Start
import { SocialShareButtons } from '@molecule/app-social-share-buttons-react'
;<SocialShareButtons
url="https://example.com/blog/my-post"
title="Check out this article"
platforms={['twitter', 'linkedin', 'reddit', 'email', 'copy']}
size="sm"
/>Type
feature
Installation
npm install @molecule/app-social-share-buttons-react @molecule/app-react @molecule/app-ui @molecule/app-ui-react react
npm install -D @types/reactAPI
Interfaces
SocialShareButtonsProps
Props for the {@link SocialShareButtons} component.
interface SocialShareButtonsProps {
/** URL to share. */
url: string
/** Optional share text / title. */
title?: string
/** Platforms to include (order = display order). */
platforms?: SocialPlatform[]
/** Visual size. */
size?: 'sm' | 'md'
/** Extra classes. */
className?: string
}Types
SocialPlatform
Supported social/sharing platforms for the share-buttons widget.
type SocialPlatform = 'twitter' | 'x' | 'linkedin' | 'facebook' | 'reddit' | 'email' | 'copy'Functions
SocialShareButtons(props)
Row of share buttons — opens each platform's share sheet in a new
tab. 'copy' copies the URL to the clipboard with "Copied!"
feedback. Keep the component itself cosmetic-only; apps override
icons via className on the wrapping element.
function SocialShareButtons({
url,
title,
platforms = DEFAULT_PLATFORMS,
size = 'sm',
className,
}: SocialShareButtonsProps): React.JSX.Elementprops— Component props (see {@link SocialShareButtonsProps}).
Injection Notes
Requirements
Peer dependencies:
@molecule/app-react^1.0.1@molecule/app-ui^1.0.1@molecule/app-ui-react^1.0.1react^18.0.0 || ^19.0.0
Runtime Dependencies
@molecule/app-react@molecule/app-ui@molecule/app-ui-reactreactMust render inside the app's i18n provider and with a ClassMap bond wired (
useTranslation()/getClassMap()throw otherwise).'copy'usesnavigator.clipboard, which exists only in secure contexts (HTTPS or localhost). On plain HTTP the button silently does nothing — hide it or serve over HTTPS.Sharing uses fixed platform intent URLs opened in a new tab; there is no Web Share API integration and no per-platform SDKs.
Button icons are plain text glyphs (𝕏, "in", "f", ✉, ⧉), not brand SVG logos — restyle via
classNameif brand marks are required.Only
share.copiedships in the companion locale bond today; the per-platformshare.<platform>aria-label keys fall back to the raw platform id in every language.
Translations
Translation strings are provided by @molecule/app-locales-social-share-buttons.
