mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import Icon from "./Icon";
|
|
|
|
const Empty = () => {
|
|
return (
|
|
<div className="mx-auto">
|
|
<Icon.Bird strokeWidth={1} className="w-24 h-auto text-gray-500 dark:text-gray-400" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Empty;
|