plasod
Version:
An enterprise-class UI design language and React components implementation
9 lines (8 loc) • 728 B
TypeScript
import type { CSSInterpolation, CSSObject } from '@ant-design/cssinjs';
import { type AliasToken } from '../../theme/internal';
import type { TokenWithCommonCls } from '../../theme/util/genComponentStyleHook';
import type { SelectToken } from './token';
type SelectItemToken = Pick<SelectToken, 'multipleSelectItemHeight' | 'multipleSelectorBgDisabled' | 'multipleItemColorDisabled' | 'multipleItemBorderColorDisabled' | 'selectHeight' | 'lineWidth' | 'calc' | 'inputPaddingHorizontalBase'>;
export declare const genSelectionStyle: (token: TokenWithCommonCls<AliasToken> & SelectItemToken, suffix?: string) => CSSObject;
declare const genMultipleStyle: (token: SelectToken) => CSSInterpolation;
export default genMultipleStyle;