ant-design/components/pagination/MiniSelect.tsx

11 lines
299 B
TypeScript
Raw Normal View History

import * as React from 'react';
import Select, { OptionProps } from '../select';
2016-03-31 17:46:35 +08:00
export default class MiniSelect extends React.Component<any, any> {
static Option = Select.Option as React.ClassicComponentClass<OptionProps>;
2016-03-31 17:46:35 +08:00
render() {
return <Select size="small" {...this.props} />;
}
}