We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684fd12 commit 39b1c6eCopy full SHA for 39b1c6e
packages/gatsby-image/withIEPolyfill/index.d.ts
@@ -0,0 +1,12 @@
1
+import * as React from "react"
2
+
3
+import GatsbyImage, { GatsbyImageProps } from "../index"
4
5
+interface GatsbyImageWithIEPolyfillProps extends GatsbyImageProps {
6
+ objectFit?: `fill` | `contain` | `cover` | `none` | `scale-down`
7
+ objectPosition?: string
8
+}
9
10
+export default class GatsbyImageWithIEPolyfill extends React.Component<
11
+ GatsbyImageWithIEPolyfillProps
12
+> {}
0 commit comments