ant-design/components/pagination/Select.tsx
afc163 c0304cca55
fix: Pagination should display middle size Select when ConfigProvider componentSize is large (#34756)
* fix: Pagination should display middle size Select
when ConfigProvider componentSize is large

close #34744

* fix snapshot
2022-03-30 16:38:08 +08:00

17 lines
517 B
TypeScript

import * as React from 'react';
import Select from '../select';
import type { SelectProps } 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 };