Browse Source

fix(FloatButton): type error (#7632)

pull/7636/head
Aaron-zon 6 months ago committed by GitHub
parent
commit
5c7aaf0dd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      components/float-button/interface.ts

2
components/float-button/interface.ts

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

Loading…
Cancel
Save