Search
    Preparing search index...

    Свойства панели фильтров в сайдбаре меню.

    interface MenuSiderFilterPanelProps {
        filters: ReactNode;
        filtersText: string;
        onSwitcherChange?: (isExpand: boolean) => void;
    }
    Index

    Properties

    filters: ReactNode

    Контент фильтров.

    filtersText: string

    Текст для раздела фильтров.

    onSwitcherChange?: (isExpand: boolean) => void

    Обработчик изменения состояния переключателя.

    Type declaration

      • (isExpand: boolean): void
      • Parameters

        • isExpand: boolean

          Текущее состояние переключателя.

        Returns void