12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
import { InboxIllustration, SearchIllustration } from "./";
|
|
|
|
export const IllustrationMap = [
|
|
{
|
|
asset: <InboxIllustration className="w-20 h-20" />,
|
|
title: "Inbox",
|
|
},
|
|
{
|
|
asset: <SearchIllustration className="w-20 h-20" />,
|
|
title: "Search",
|
|
},
|
|
];
|