An unfoldable select menu with gooey spring corner separation and staggered option reveal.
Installation
Usage
import {
Select,
SelectTrigger,
SelectValue,
SelectContent,
SelectItem,
} from "viora-ui";
import { useState } from "react";
export default function Demo() {
const [val, setVal] = useState("next");
return (
<Select value={val} onValueChange={setVal}>
<SelectTrigger>
<SelectValue placeholder="Select" />
</SelectTrigger>
<SelectContent>
<SelectItem value="next">Next.js</SelectItem>
<SelectItem value="react">React</SelectItem>
</SelectContent>
</Select>
);
}Built by Otis
Last updated: 9/13/2026