mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import * as React from 'react';
|
|
import Select, { OptionProps } from '../select';
|
|
|
|
export default class MiniSelect extends React.Component<any, any> {
|
|
static Option = Select.Option as React.ClassicComponentClass<OptionProps>;
|
|
|
|
render() {
|
|
return <Select size="small" {...this.props} />;
|
|
}
|
|
}
|