diff --git a/app/client/packages/icons/src/components/CustomIcons/EmptyStateIllustrationCustomIcon.tsx b/app/client/packages/icons/src/components/CustomIcons/EmptyStateIllustrationCustomIcon.tsx new file mode 100644 index 0000000000..13628af52a --- /dev/null +++ b/app/client/packages/icons/src/components/CustomIcons/EmptyStateIllustrationCustomIcon.tsx @@ -0,0 +1,4 @@ +import * as React from "react"; +import type { SVGProps } from "react"; +const EmptyStateIllustrationCustomIcon = (props: SVGProps) => ; +export { EmptyStateIllustrationCustomIcon }; \ No newline at end of file diff --git a/app/client/packages/icons/src/icons/CustomIcons/EmptyStateIllustration.svg b/app/client/packages/icons/src/icons/CustomIcons/EmptyStateIllustration.svg new file mode 100644 index 0000000000..6159ec7948 --- /dev/null +++ b/app/client/packages/icons/src/icons/CustomIcons/EmptyStateIllustration.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/client/packages/icons/src/index.ts b/app/client/packages/icons/src/index.ts index 33bcc103db..601ca261d8 100644 --- a/app/client/packages/icons/src/index.ts +++ b/app/client/packages/icons/src/index.ts @@ -29,6 +29,7 @@ export { TableThumbnail } from "./components/Thumbnails/TableThumbnail"; export { ToolbarButtonsThumbnail } from "./components/Thumbnails/ToolbarButtonsThumbnail"; export { ZoneThumbnail } from "./components/Thumbnails/ZoneThumbnail"; export { AIAvatarCustomIcon } from "./components/CustomIcons/AIAvatarCustomIcon"; +export { EmptyStateIllustrationCustomIcon } from "./components/CustomIcons/EmptyStateIllustrationCustomIcon"; export { AIChatIcon } from "./components/Icons/AIChatIcon"; export { AudioIcon } from "./components/Icons/AudioIcon"; export { ButtonIcon } from "./components/Icons/ButtonIcon"; diff --git a/app/client/packages/icons/src/stories/CustomIcons.mdx b/app/client/packages/icons/src/stories/CustomIcons.mdx index ac38a04a29..8d72abbe1b 100644 --- a/app/client/packages/icons/src/stories/CustomIcons.mdx +++ b/app/client/packages/icons/src/stories/CustomIcons.mdx @@ -1,6 +1,7 @@ import { Meta } from "@storybook/addon-docs"; import { Flex } from "@appsmith/wds"; import { AIAvatarCustomIcon } from "../components/CustomIcons/AIAvatarCustomIcon"; +import { EmptyStateIllustrationCustomIcon } from "../components/CustomIcons/EmptyStateIllustrationCustomIcon"; @@ -12,6 +13,7 @@ export const Icons = () => { return ( + ); };