import { memo } from "preact/compat"; import { twMerge } from "tailwind-merge"; import { SearchHeadless } from "."; import type { SearchProps } from "./SearchHeadless"; /** * This compoennt only define defult classNames for the Search component. * * Since the Search component could be used in different places (with or without toolbar), * but the logic behind stays the same, we separate the logic and the styles in 2 components. */ function Search({ childrenContainerClassName, className, inputContainerClassName, resultClassName, resultsContainerClassName, withResultsClassName, ...props }: SearchProps) { return ( ); } export default memo(Search);