UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 369 B
import React from 'react'; import { SiteType } from "../../../interfaces/types"; import { LOCALE } from "../../../interfaces/types/Locale"; export type ShareContainerProps = { url: string; onCopied?: VoidFunction; locale: LOCALE; siteType?: SiteType; }; declare const ShareContainer: React.FC<ShareContainerProps>; export { ShareContainer };