import clsx from "clsx" type SearchHitGroupNameProps = { name: string } const SearchHitGroupName = ({ name }: SearchHitGroupNameProps) => { return ( {name} ) } export default SearchHitGroupName