UNPKG
@clive-cudi/geist-ui
Version:
latest (1.0.0)
1.0.0
Modern and minimalist React UI library.
geist-ui.dev
clive-cudi/geist-ui
@clive-cudi/geist-ui
/
esm
/
select
/
select-multiple-value.d.ts
8 lines
(7 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
interface
Props
{
disabled
:
boolean
;
onClear
: (
() =>
void
) |
null
; }
declare
const
SelectMultipleValue
:
React
.
FC
<
React
.
PropsWithChildren
<
Props
>>;
export
default
SelectMultipleValue
;