diff --git a/components/empty-view/src/constants.ts b/components/empty-view/src/constants.ts index cd1a09bc..06478b30 100644 --- a/components/empty-view/src/constants.ts +++ b/components/empty-view/src/constants.ts @@ -23,11 +23,15 @@ import { NoContentDark, NoContentLight, NoMatchDark, + NoMatchGeneralDark, + NoMatchGeneralLight, NoMatchLight, NoSitesDark, NoSitesLight, NotFoundDark, NotFoundLight, + ProhibitedDark, + ProhibitedLight, SettingsDark, SettingsLight, SuccessDark, @@ -58,8 +62,13 @@ export const Illustration: Record< "no-connection": bundleIllustrationSmart(NoConnectionDark, NoConnectionLight), "no-content": bundleIllustrationSmart(NoContentDark, NoContentLight), "no-match": bundleIllustrationSmart(NoMatchDark, NoMatchLight), + "no-match-general": bundleIllustrationSmart( + NoMatchGeneralDark, + NoMatchGeneralLight + ), "no-sites": bundleIllustrationSmart(NoSitesDark, NoSitesLight), "not-found": bundleIllustrationSmart(NotFoundDark, NotFoundLight), + prohibited: bundleIllustrationSmart(ProhibitedDark, ProhibitedLight), settings: bundleIllustrationSmart(SettingsDark, SettingsLight), success: bundleIllustrationSmart(SuccessDark, SuccessLight), team: bundleIllustrationSmart(TeamDark, TeamLight), diff --git a/components/empty-view/src/types.ts b/components/empty-view/src/types.ts index 2cd1314f..288cf2b1 100644 --- a/components/empty-view/src/types.ts +++ b/components/empty-view/src/types.ts @@ -13,8 +13,10 @@ export type IllustrationKind = | "no-connection" | "no-content" | "no-match" + | "no-match-general" | "no-sites" | "not-found" + | "prohibited" | "settings" | "success" | "team"