@mijadesign/mjui-react-taro
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
13 lines (12 loc) • 421 B
TypeScript
import { NoticeBarProps as NutNoticeBarProps } from '@nutui/nutui-react-taro';
import { FC } from 'react';
type NoticeBarType = 'primary' | 'warning' | 'danger' | 'success';
interface NoticeBarProps extends NutNoticeBarProps {
/**
* 公告栏类型
* @default primary
*/
type: NoticeBarType
}
export declare const NoticeBar: FC<Partial<NoticeBarProps>>;
export type { NoticeBarProps, NoticeBarType };