2023-11-28 13:15:19 -05:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2023-11-15 15:23:15 -05:00
|
|
|
import cx from "classnames"
|
|
|
|
import React, { forwardRef, InputHTMLAttributes } from "react"
|
2023-11-16 14:27:01 -05:00
|
|
|
import { ReactComponent as Search } from "src/assets/icons/search.svg"
|
2023-11-15 15:23:15 -05:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
className?: string
|
|
|
|
inputClassName?: string
|
|
|
|
} & InputHTMLAttributes<HTMLInputElement>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchInput is a standard input with a search icon.
|
|
|
|
*/
|
|
|
|
const SearchInput = forwardRef<HTMLInputElement, Props>((props, ref) => {
|
|
|
|
const { className, inputClassName, ...rest } = props
|
|
|
|
return (
|
|
|
|
<div className={cx("relative", className)}>
|
|
|
|
<Search className="absolute w-[1.25em] h-full ml-2" />
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
className={cx("input px-8", inputClassName)}
|
|
|
|
ref={ref}
|
|
|
|
{...rest}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
})
|
|
|
|
SearchInput.displayName = "SearchInput"
|
|
|
|
export default SearchInput
|