UNPKG
react-bootstrap-v5
Version:
latest (1.4.0)
next (2.0.0-beta.0)
2.0.0-beta.0
1.4.0
Bootstrap 4 components built with React
react-bootstrap.github.io
react-bootstrap/react-bootstrap
react-bootstrap-v5
/
lib
/
esm
/
CloseButton.d.ts
7 lines
(6 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
React
from
'react'
;
export
interface
CloseButtonProps
extends
React
.
ButtonHTMLAttributes
<
HTMLButtonElement
> {
label
?:
string
; }
declare
const
CloseButton
:
React
.
ForwardRefExoticComponent
<
CloseButtonProps
&
React
.
RefAttributes
<
HTMLButtonElement
>>;
export
default
CloseButton
;