UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

36 lines (35 loc) 627 B
import React from "react"; import { IconNames } from "../icon"; import "./style"; export interface ISubNavProps { [key: string]: any; /** * 子节点 */ children?: React.ReactNode; /** * 附加类名 */ className?: string; /** * 是否禁用 */ disabled?: boolean; /** * 设置图标 */ icon?: IconNames; /** * 独立的 index required */ index: React.ReactText; /** * subnav 标题 */ title?: React.ReactNode; } /** * 导航栏 - 子导航 */ declare const SubNav: React.FC<ISubNavProps>; export default SubNav;