@expofp/floorplan
Version:
Interactive floor plan library for expos and events
22 lines • 723 B
TypeScript
import './Share.scss';
export type SocialNetwork = 'facebook' | 'xcom' | 'linkedin';
export interface SocialLink {
network: SocialNetwork;
name: string;
url: string;
ariaLabel: string;
}
export interface ShareProps {
title: string;
url: string;
shareHeading: string;
socials: SocialLink[];
copyLinkSectionLabel: string;
directLinkAriaLabel: string;
copyButtonAriaLabel: string;
copyLabel: string;
copiedLabel: string;
}
declare const Share: ({ title, url, shareHeading, socials, copyLinkSectionLabel, directLinkAriaLabel, copyButtonAriaLabel, copyLabel, copiedLabel, }: ShareProps) => import("react").JSX.Element;
export default Share;
//# sourceMappingURL=Share.d.ts.map