UNPKG

@gizwits/vantui

Version:

机智云组件库

19 lines (15 loc) 467 B
import { FunctionComponent, ReactNode } from 'react' import { ButtonProps } from './button' export interface GoodsActionIconProps extends Omit<ButtonProps, 'square' | 'children'> { url?: string linkType?: 'navigateTo' | 'reLaunch' | 'redirectTo' text?: string dot?: boolean info?: string icon?: string renderIcon?: ReactNode children?: ReactNode } declare const GoodsActionIcon: FunctionComponent<GoodsActionIconProps> export { GoodsActionIcon }