@teamsparta/blog-system
Version:
12 lines (11 loc) • 450 B
TypeScript
import React from "react";
type FloatingCtaProps = {
serviceType: string;
currentUrl: string;
goToApply: (e?: React.MouseEvent<HTMLAnchorElement, MouseEvent> | React.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
sendLog: (action: string, data: {
[dataName: string]: string;
}) => void;
};
export default function FloatingCta({ serviceType, currentUrl, goToApply, sendLog, }: FloatingCtaProps): JSX.Element;
export {};