Components
Loading preview...
Here is animated Input component
npx shadcn@latest add https://21st.dev/r/berlix/input"use client";
import { useState } from "react";
import { Input } from "@/components/ui/input";
const InputPreview = () => {
const [value, setValue] = useState("");
return (
<Input
label="Email Address"
value={value}
onChange={(e) => setValue(e.target.value)}
/>
);
};
export default InputPreview;