"use client";
import MorphSelect, {
MorphSelectTrigger,
MorphSelectValue,
MorphSelectContent,
MorphSelectItem,
} from "@/components/ui/select-morph";
export default function SelectMorphDemo() {
return (
<div className="flex w-full max-w-xs items-center justify-center">
<MorphSelect defaultValue="apple" className="w-full">
<MorphSelectTrigger>
<MorphSelectValue placeholder="Select a fruit" />
</MorphSelectTrigger>
<MorphSelectContent>
<MorphSelectItem value="apple">Apple</MorphSelectItem>
<MorphSelectItem value="banana">Banana</MorphSelectItem>
<MorphSelectItem value="cherry">Cherry</MorphSelectItem>
<MorphSelectItem value="date">Date</MorphSelectItem>
</MorphSelectContent>
</MorphSelect>
</div>
);
}