UNPKG

@ovine/core

Version:

Build flexible admin system with json.

22 lines (21 loc) 536 B
/** * App头部工具 ICON 按钮 */ import { RendererProps } from 'amis/lib/factory'; import React from 'react'; import { JumpToOption } from "../../routes/exports"; declare type HeadItemProps = JumpToOption & { className?: string; icon?: string; faIcon?: string; children?: any; tip?: string; onClick?: any; href?: string; body?: any; }; declare type Props = Partial<RendererProps> & { itemProps: HeadItemProps; }; declare const _default: React.FunctionComponent<Props>; export default _default;