@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 623 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
trackingCategory?: string;
className?: string;
style?: CSSProperties;
url?: string;
avatar?: string;
text?: string;
onClose?: () => void;
};
export declare const SharePopup: ({ trackingCategory, className, style, url, text, onClose, }: Props) => React.JSX.Element;
export declare const StyledSharePopup: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme;
as?: React.ElementType<any>;
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;