diff --git a/aries-site/src/examples/cardPreviews/emptystate.js b/aries-site/src/examples/cardPreviews/emptystate.js
index b53ff6fd0..52d7343b2 100644
--- a/aries-site/src/examples/cardPreviews/emptystate.js
+++ b/aries-site/src/examples/cardPreviews/emptystate.js
@@ -1,18 +1,16 @@
import React from 'react';
-import { Box, Button, Heading, Paragraph } from 'grommet';
+import { EmptyState } from 'aries-core';
+import { Button } from 'grommet';
import { CircleInformation } from 'grommet-icons';
-export const EmptyStatePreview = () => (
-
-
-
-
- No items exist
-
-
- Error message will be displayed here.
-
-
-
-
-);
+export const EmptyStatePreview = () => {
+ return (
+ }
+ actions={}
+ level={3}
+ />
+ );
+};