ant-design/components/pagination/MiniSelect.tsx

13 lines
303 B
TypeScript
Raw Normal View History

import * as React from 'react';
import Select from '../select';
2016-03-31 17:46:35 +08:00
interface MiniSelectInterface extends React.FC<any> {
Option: typeof Select.Option;
2016-03-31 17:46:35 +08:00
}
const MiniSelect: MiniSelectInterface = props => <Select size="small" {...props} />;
MiniSelect.Option = Select.Option;
export default MiniSelect;