@bytedance/mona-client-web
Version:
web for mona
18 lines (17 loc) • 408 B
TypeScript
import React from 'react';
export type TabBarProps = {
color: string;
selectedColor: string;
backgroundColor: string;
borderStyle?: 'black' | 'white';
list: {
pagePath: string;
iconPath?: string;
selectedIconPath?: string;
text: string;
}[];
};
declare const _default: (props: {
tab?: TabBarProps;
}) => React.ReactPortal;
export default _default;