import * as React from "react"; import { GatsbyImage, GatsbyImageProps } from "gatsby-plugin-image"; import { getGatsbyImageData, GetGatsbyImageDataConfig, } from "./getGatsbyImageData"; export type ImgixGatsbyImageProps = GetGatsbyImageDataConfig & Omit; export const ImgixGatsbyImage = (props: ImgixGatsbyImageProps): JSX.Element => { const data = getGatsbyImageData(props); return ; };