@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 392 B
TypeScript
import React from 'react';
import { DrawerProps } from "../../atoms/drawer";
import { LOCALE } from "../../../interfaces/types/Locale";
export type ShareDrawerProps = {
url: string;
title?: string;
onCopied?: VoidFunction;
onShared?: VoidFunction;
locale: LOCALE;
} & DrawerProps;
declare const ShareDrawer: React.FC<ShareDrawerProps>;
export { ShareDrawer };