@prezly/theme-kit-ui
Version:
UI components for Prezly themes
9 lines (8 loc) • 359 B
TypeScript
import type { ShareableSocialNetwork, StoryShareLinksLayout } from './types';
export interface Props {
network: ShareableSocialNetwork;
shareUrl: string;
layout?: StoryShareLinksLayout;
iconClassName?: string;
}
export declare function ShareButton({ network, shareUrl, layout, iconClassName }: Props): import("react/jsx-runtime").JSX.Element;