UNPKG
@canes/ecb-tas-feature
Version:
latest (2.3.3)
rc (2.3.0-rc6)
2.3.3
2.3.2
2.3.1
2.3.0
2.3.0-rc6
2.3.0-rc5
2.3.0-rc4
2.3.0-rc3
2.3.0-rc2
2.3.0-rc1
Tas Feature
github.com/ecobavn/tas-feature
ecobavn/tas-feature
@canes/ecb-tas-feature
/
dist
/
TasFeature
/
components
/
DownloadButton.d.ts
10 lines
(9 loc)
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="react" />
declare
type
DownloadButtonProps
= {
url
:
string
;
filename
:
string
;
label
?:
string
;
variant
?:
"text"
|
"contained"
; };
export
default
function
DownloadButton
(
{ filename, url, label, variant, }:
DownloadButtonProps
):
JSX
.
Element
;
export
{};