import Link from "@docusaurus/Link"; import clsx from "clsx"; import React, { FC, PropsWithChildren, SVGProps } from "react"; type Props = { className?: string; icon?: React.ReactNode; to?: string; onClick?: () => void; }; export const LandingSectionCtaButton: FC> = ({ children, className, to, onClick, icon, }) => { return ( {children} {icon || }
); }; export const LandingSectionCtaButtonAlt: FC> = ({ children, className, to, onClick, icon, }) => { return ( {children} {icon || }
); }; const DefaultIcon = (props: SVGProps) => ( );