@carrot-farm/mongsil-ui
Version:
react ui library
21 lines (20 loc) • 643 B
TypeScript
import * as React from 'react';
import { InputChange } from '../../types/components';
export interface SelectProps {
/** <Option /> 컴포넌트 */
children?: React.ReactNode[];
/** className */
className?: string;
/** name 속성 */
name?: string;
/** 값 */
value?: string;
/** 기본값 */
defaultValue?: string;
/** true 일 경우 비활성화 */
disabled?: boolean;
/** 변경 시 이벤트 */
onChange?: InputChange;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSpanElement>>>;
export default _default;