@watheia/pwa.sections.support-page.support-developers
Version:
15 lines (14 loc) • 597 B
TypeScript
import { HTMLAttributes } from "react";
declare type SupportDevelopersProps = {} & HTMLAttributes<HTMLElement>;
/**
* Support section elaborating on the benefits of our support packages
* @name SupportDevelopers
*/
export declare function SupportDevelopers(props: SupportDevelopersProps): JSX.Element;
declare type SupportDevelopersCardProps = {
iconUrl: string;
alt: string;
title?: string;
} & HTMLAttributes<HTMLDivElement>;
export declare function SupportDevelopersCard({ iconUrl, title, alt, className, children, ...rest }: SupportDevelopersCardProps): JSX.Element;
export {};