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