import React, { ReactElement } from "react"; import { Link } from "react-router-dom"; import Select, { components, DropdownIndicatorProps, IndicatorSeparatorProps, } from "react-select"; const Navbar: React.FunctionComponent = (props) => { const DropdownIndicator = ( props: DropdownIndicatorProps, ) => { return ( <> ); }; const IndicatorSeparator = ({ innerProps, }: IndicatorSeparatorProps) => { return <>; }; const searchPlaceholder = (): ReactElement => ( <> Search Library...{" "} ); const customStyles = { control: () => ({ width: 250, marginTop: 0, border: "1px solid #CCC", height: 40, borderRadius: 8, }), }; return (