@orca-fe/antd-plus
Version:
Transformer Container
13 lines (12 loc) • 448 B
TypeScript
import React from 'react';
export interface TimeTipProps extends React.HTMLAttributes<HTMLDivElement> {
/** 当日时间,请传入百分比,比如 10点 = 10 / 24 */
time?: number;
visible?: boolean;
color?: string;
textLeft?: string | number;
lineLeft?: string | number;
lineWidth?: string | number;
}
declare const TimeTip: (props: TimeTipProps) => import("react/jsx-runtime").JSX.Element;
export default TimeTip;