UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

9 lines (8 loc) 332 B
import * as React from 'react'; import type { RateRef, RateProps as RcRateProps } from 'rc-rate/lib/Rate'; export interface RateProps extends RcRateProps { rootClassName?: string; tooltips?: Array<string>; } declare const Rate: React.ForwardRefExoticComponent<RateProps & React.RefAttributes<RateRef>>; export default Rate;