@prezly/theme-kit-ui
Version:
UI components for Prezly themes
13 lines (12 loc) • 532 B
TypeScript
import type { StoryShareLinksLayout } from './types';
export declare function StoryShareLinks({ className, iconClassName, shareUrl, onUrlCopied, withScrollToTopButton, layout, }: StoryShareLinks.Props): import("react/jsx-runtime").JSX.Element | null;
export declare namespace StoryShareLinks {
interface Props {
shareUrl: string | null;
onUrlCopied?: () => void;
withScrollToTopButton?: boolean;
className?: string;
iconClassName?: string;
layout?: StoryShareLinksLayout;
}
}