diff --git a/example/storybook-nativewind/package.json b/example/storybook-nativewind/package.json
index 7c8806bc2..7cf54d602 100644
--- a/example/storybook-nativewind/package.json
+++ b/example/storybook-nativewind/package.json
@@ -52,6 +52,7 @@
"@react-native-community/slider": "4.2.4",
"@react-stately/collections": "^3.6.0",
"@react-stately/tree": "^3.5.0",
+ "@unitools/image": "^0.0.5",
"expo": "^47.0.0",
"expo-linear-gradient": "^12.3.0",
"expo-status-bar": "~1.4.2",
diff --git a/example/storybook-nativewind/src/components/Image/index.nw.stories.mdx b/example/storybook-nativewind/src/components/Image/index.nw.stories.mdx
index d012fef85..e07938aa6 100644
--- a/example/storybook-nativewind/src/components/Image/index.nw.stories.mdx
+++ b/example/storybook-nativewind/src/components/Image/index.nw.stories.mdx
@@ -17,6 +17,7 @@ import { Meta } from '@storybook/addon-docs';
import { Image } from '../../core-components/nativewind';
import { transformedCode } from '../../utils';
import Wrapper from '../../core-components/nativewind/Wrapper';
+import UnitoolsImageEg from '../../extra-components/nativewind/UnitoolsImage';
import {
AppProvider,
@@ -28,6 +29,7 @@ import {
Tabs
} from '@gluestack/design-system';
import { CollapsibleCode } from '@gluestack/design-system';
+import UnitoolsImage from '@unitools/image';
This is an illustration of **Image** component.
@@ -136,17 +138,42 @@ It inherits all the properties of React Native's [Image](https://reactnative.dev
Image component is created using Image component from react-native. It extends all the props supported by [React Native Image](https://reactnative.dev/docs/image#props).
-
+#### Basic Unitools Image
+
+The below example will run for both Expo and Next.js projects. For installation steps, refer to the [Installation](https://unitools.geekyants.com/packages/image/) section of ```@unitools/image```.
+
+```jsx
+import Image from '@unitools/image';
+```
+
+