UNPKG

quantumai-design-system

Version:

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

10 lines (9 loc) 444 B
import { ReactNode } from 'react'; import { FlexType, SizeType, SpacingType } from '../../../types/styleType'; export interface IFlexProps extends React.HTMLAttributes<HTMLElement>, FlexType, SizeType, SpacingType { as?: React.ElementType<any> | undefined; children?: ReactNode; bgColor?: string; } declare const Flex: import("react").ForwardRefExoticComponent<IFlexProps & import("react").RefAttributes<any>>; export default Flex;