shineout
Version:
A components library for React
5 lines (4 loc) • 318 B
TypeScript
import { ArgProps, RateProps, BaseRateProps } from './rate.type';
type InnerProps = Omit<BaseRateProps, keyof ArgProps>;
declare const _default: (background: ArgProps['background'], front: ArgProps['front'], opts?: InnerProps) => (props: RateProps) => import("react/jsx-runtime").JSX.Element;
export default _default;