UNPKG
my-antd-custom
Version:
latest (1.0.1)
1.0.1
1.0.0
Custom Ant Design UI components with theme overrides and extra features
my-antd-custom
/
dist
/
types
/
Button.d.ts
9 lines
(8 loc)
•
237 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
"react"
;
import
{
ButtonProps
}
from
"antd"
;
import
"./theme.less"
;
interface
MyButtonProps
extends
ButtonProps
{
dangerConfirm
?:
boolean
; }
declare
const
MyButton
:
React
.
FC
<
MyButtonProps
>;
export
default
MyButton
;