UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 424 B
import React from 'react'; import { TypeSearch } from "../types"; type Props = { currentTab: TypeSearch; isMobile: boolean; hideTabBookingSearch?: string[]; hideSpecialtyTab?: boolean; setCurrentTab: (val: TypeSearch) => void; }; declare const TabSearch: ({ currentTab, hideTabBookingSearch, hideSpecialtyTab, isMobile, setCurrentTab, }: Props) => React.JSX.Element; export default TabSearch;