UNPKG
acres-ui-test2
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
Acres React component library
acres-ui-test2
/
build
/
components
/
search
/
Search.d.ts
10 lines
(9 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
'./Search.scss'
;
interface
SearchProps
{
ariaLabel
?:
undefined
|
string
;
handleSearch
:
(
e
:
string
) =>
void
;
placeholder
:
string
; }
export
declare
const
Search
:
React
.
FC
<
SearchProps
>;
export
{};