@theguild/components
Version:
15 lines (12 loc) • 484 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { StaticImageData } from 'next/image';
interface GraphQLConfCardProps {
image: StaticImageData;
href?: string;
title?: string;
details?: string;
description?: string;
callToAction?: string;
}
declare function GraphQLConfCard({ image, href, title, details, description, callToAction, }: GraphQLConfCardProps): react_jsx_runtime.JSX.Element;
export { GraphQLConfCard, type GraphQLConfCardProps };