1234567891011121314151617181920212223242526272829import { Select, SelectItem, SelectLabel, SelectPopover, useSelectState, } from "ariakit/select"; import "./style.css"; export default function Example() { const select = useSelectState({ defaultValue: "Apple", sameWidth: true, gutter: 4, }); return ( <div className="wrapper"> <SelectLabel state={select}>Favorite fruit</SelectLabel> <Select state={select} className="select" /> <SelectPopover state={select} className="popover"> <SelectItem className="select-item" value="Apple" /> <SelectItem className="select-item" value="Banana" /> <SelectItem className="select-item" value="Grape" disabled /> <SelectItem className="select-item" value="Orange" /> </SelectPopover> </div> ); }