UNPKG

quantumai-design-system

Version:

퀀텀에이아이의 디자인 시스템

7 lines (6 loc) 312 B
import React, { ReactNode } from 'react'; export interface IDropDownDisplayProps extends React.HTMLAttributes<HTMLDivElement> { children: ReactNode; } declare const DropDownDisplay: React.ForwardRefExoticComponent<IDropDownDisplayProps & React.RefAttributes<HTMLDivElement>>; export default DropDownDisplay;