Hiyve Components - v1.0.0
    Preparing search index...

    Variable RoomSearchBarConst

    RoomSearchBar: NamedExoticComponent<RoomSearchBarProps> = ...

    RoomSearchBar provides search, sort, and filter controls for the stored rooms list.

    All values and change handlers are passed via props.

    Controls:

    • Search field: Text input with search icon and clear button
    • Sort dropdown: Newest, Oldest, Name A-Z, Name Z-A
    • Filter dropdown: All, Active, Expired, Password Protected, Waiting Room, Offline Enabled, Static, Link-based
    • Clear button: Resets all filters (shown when filters are active)
    <RoomSearchBar
    searchQuery={query}
    sortBy="newest"
    filterBy="all"
    onSearchChange={setQuery}
    onSortChange={setSort}
    onFilterChange={setFilter}
    onClear={resetFilters}
    activeFiltersCount={2}
    />