import React, { forwardRef } from 'react'; import { Input, InputProps } from '@material-tailwind/react'; const SearchBar: React.ForwardRefRenderFunction< HTMLInputElement, InputProps > = ({ value, onChange, placeholder = 'Search', ...props }, ref) => { return (