import { render_and_copy } from "./common.tsx"; const Drop = ({ color = "red", i }: { color?: string; i: number }) => (
); const Water = ({ color = "red", duration_s, }: { color?: string; duration_s: number; }) => (
); const Rain = ({ duration_s, color = "red", drops = 100, }: { duration_s: number; color?: string; drops?: number; }) => (
{...Array.from({ length: drops }, (_, i) => ( ))}
); render_and_copy();