package.lib.Option.d.ts Maven / Gradle / Ivy
The newest version!
import type * as React from 'react';
import type { DefaultOptionType } from './Select';
export interface OptionProps extends Omit {
children: React.ReactNode;
/** Save for customize data */
[prop: string]: any;
}
export interface OptionFC extends React.FC {
/** Legacy for check if is a Option Group */
isSelectOption: boolean;
}
/** This is a placeholder, not real render in dom */
declare const Option: OptionFC;
export default Option;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy