antd-mobile-alita
Version:
基于 React 的移动设计规范实现
15 lines (14 loc) • 435 B
TypeScript
import * as React from 'react';
import { RangePropsType } from './PropsType';
export interface RangeProps extends RangePropsType {
prefixCls?: string;
handleStyle?: React.CSSProperties[];
trackStyle?: React.CSSProperties[];
railStyle?: React.CSSProperties;
}
export default class Range extends React.Component<RangeProps, any> {
static defaultProps: {
prefixCls: string;
};
render(): JSX.Element;
}