UNPKG

quantumai-design-system

Version:

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

15 lines (14 loc) 575 B
import { ReactNode } from 'react'; import { SizeType, SpacingType, TypographyType } from '../../../types/styleType'; export interface ITextProps extends React.HTMLAttributes<HTMLElement>, SizeType, SpacingType { className?: string; children?: ReactNode; type?: TypographyType; display?: 'inline' | 'block'; align?: 'left' | 'center' | 'right'; line?: 'over' | 'mid' | 'under'; wrap?: number; color?: string; } declare const Text: import("react").ForwardRefExoticComponent<ITextProps & import("react").RefAttributes<any>>; export default Text;