ant-design/components/pagination/Select.tsx
2022-06-22 14:57:09 +08:00

16 lines
516 B
TypeScript

import * as React from 'react';
import type { SelectProps } from '../select';
import Select from '../select';
interface MiniOrMiddleSelectInterface extends React.FC<SelectProps> {
Option: typeof Select.Option;
}
const MiniSelect: MiniOrMiddleSelectInterface = props => <Select {...props} size="small" />;
const MiddleSelect: MiniOrMiddleSelectInterface = props => <Select {...props} size="middle" />;
MiniSelect.Option = Select.Option;
MiddleSelect.Option = Select.Option;
export { MiniSelect, MiddleSelect };