@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 324 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
trackingCategory?: string;
className?: string;
shareUrl?: string;
title?: string;
style?: CSSProperties;
};
export declare const ShareBox: ({ className, trackingCategory, style, shareUrl, title, }: Props) => React.JSX.Element;