UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 392 B
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 };