@linkdesign/screen
Version:
屏组件库,但使用场景又不局限于屏。主要用于BI、大盘和屏
38 lines (37 loc) • 637 B
TypeScript
import React from 'react';
interface IProps {
/**
* 类名
*/
className?: string;
/**
* 文案
*/
label?: React.ReactNode;
/**
* 是否显示时间
*/
withTimer?: boolean;
/**
* 是否点
*/
withDot?: boolean;
/**
* 时间格式 同monentjs
*/
timeFormat?: string;
/**
* 雷达背景图
*/
backgroundImage?: string;
/**
* 雷达旋转图
*/
rotateImage?: string;
}
/**
* 实时感知(雷达动画)
* @param props IProps
*/
declare const RadarTip: (props: IProps) => JSX.Element;
export default RadarTip;