14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
|
|
import { Rabbit } from 'lucide-react';
|
|
|
|
|
|
const EmptyProject = () => {
|
|
return (
|
|
<div className="">
|
|
<Rabbit className=" h-[200px] w-[200px] text-default-400 " strokeWidth={1} />
|
|
<div className=' text-sm text-default-500 text-center'>No tasks</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmptyProject; |