@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 369 B
TypeScript
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 };