fix(FloatButton): type prompt error (#7576)

This commit is contained in:
selicens 2024-06-04 15:57:40 +08:00 committed by GitHub
parent 014e86bd27
commit 9c27414cd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ export const floatButtonProps = () => {
shape: stringType<FloatButtonShape>('circle'),
tooltip: PropTypes.any,
href: String,
target: functionType<() => Window | HTMLElement | null>(),
target: stringType<'_self' | '_blank' | '_parent' | '_top'>(),
badge: objectType<FloatButtonBadgeProps>(),
onClick: functionType<MouseEventHandler>(),
};