UNPKG

@xapp/chat-widget

Version:
11 lines (10 loc) 387 B
import 'rollup-plugin-inject-process-env'; import { FC, PropsWithChildren } from "react"; import { OpenUrlCallback } from "../../hooks/useOpenUrlCallback"; export interface OptionalLinkProps { readonly url?: string; readonly className?: string; onOpen: OpenUrlCallback; onClick: () => void; } export declare const OptionalLink: FC<PropsWithChildren<OptionalLinkProps>>;