UNPKG

@lvxiaowu/antd4

Version:

antd4-components

16 lines (14 loc) 432 B
import { FC } from 'react' import { ButtonProps } from 'antd' import { LocationDescriptorObject } from 'history' export interface SdButtonProps extends ButtonProps { to?: string | LocationDescriptorObject /** * 按钮权限标识 */ auth?: string | number | Array<any> target?: '_blank' | '_self' | '_parent' | '_top' href?: string } declare const SdButton: FC<SdButtonProps> export default SdButton