diff --git a/docs/api-reference/next/image.md b/docs/api-reference/next/image.md index 7424a6e92198fa54ff2b67c817bc04ea12f97001..4fdac8e230e56b97a604d289c399674aa2812b1e 100644 --- a/docs/api-reference/next/image.md +++ b/docs/api-reference/next/image.md @@ -139,7 +139,11 @@ When true, the source image will be served as-is instead of changing quality, si ## Other Props -All other properties on the `Image` component will be passed to the underlying `img` element, except for `style`. Use `className` instead. +Other properties on the `Image` component will be passed to the underlying `img` element with the exception of the following: + +- `style`. Use `className` instead. +- `srcSet`. Use [Device Sizes](/docs/basic-features/image-optimization.md#device-sizes) instead. +- `decoding`. It is always `"async"`. ## Related