UNPKG
weavify
Version:
latest (1.28.0)
1.28.0
1.27.1
1.27.0
1.26.0
1.25.0
1.24.1
1.24.0
1.23.0
1.22.0
1.21.0
1.20.1
1.20.0
1.19.0
1.18.1
1.18.0
1.17.10
1.17.9
1.17.5
1.17.4
1.16.0
1.15.0
1.14.1
1.14.0
1.13.10
1.13.9
1.13.8
1.13.7
1.13.6
1.13.5
1.13.4
1.13.3
1.13.1
1.12.3
1.12.2
1.12.1
1.12.0
1.10.0
1.8.3
1.8.2
1.8.1
1.7.1
1.6.4
1.6.3
1.6.1
1.6.0
1.4.3
1.4.2
1.4.0
1.3.0
1.2.0
1.1.3
1.1.2
1.0.2
1.0.1
1.0.0
````markdown # **Weavify - Reusable UI Components**
weavify
/
dist
/
components
/
AddButton.d.ts
10 lines
(9 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ButtonProps
}
from
'@mui/material'
;
interface
CustomButtonProps
extends
ButtonProps
{
icon
?:
React
.
ReactNode
;
onClick
:
() =>
void
;
text
:
string
;
className
?:
string
; }
declare
const
CustomButton
:
React
.
FC
<
CustomButtonProps
>;
export
default
CustomButton
;