ForFarm/frontend/app/signin/waterdrop.tsx
2025-02-12 15:58:54 +07:00

13 lines
308 B
TypeScript

import React from "react";
const WaterDrop = () => {
return (
<div className="relative w-6 h-[400px] overflow-hidden">
{/* Water Drop animation */}
<div className="absolute w-6 h-6 bg-blue-500 rounded-full animate-drop overflow-hidden"></div>
</div>
);
};
export default WaterDrop;