ultraman-shop
Version:
A React component library for building e-commerce interfaces
11 lines (10 loc) • 322 B
TypeScript
import { FC, CSSProperties } from 'react';
import { SelectProps } from 'antd';
type ThemeType = 'pc' | 'screen';
interface IXGraySelect extends SelectProps<any> {
theme?: ThemeType;
className?: string;
style?: CSSProperties;
}
declare const XGraySelect: FC<IXGraySelect>;
export default XGraySelect;