mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 14:04:08 +01:00
13 lines
308 B
TypeScript
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;
|