antd
Version:
An enterprise-class UI design language and React components implementation
12 lines (11 loc) • 488 B
TypeScript
import * as React from 'react';
import type { RateRef, RateProps as RcRateProps } from '@rc-component/rate/lib/Rate';
import type { SizeType } from '../config-provider/SizeContext';
import type { TooltipProps } from '../tooltip';
export interface RateProps extends RcRateProps {
rootClassName?: string;
tooltips?: (TooltipProps | string)[];
size?: SizeType;
}
declare const Rate: React.ForwardRefExoticComponent<RateProps & React.RefAttributes<RateRef>>;
export default Rate;