quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
11 lines (10 loc) • 388 B
TypeScript
import React from 'react';
import { MarginType } from '../../types/styleType';
interface ILineProps extends React.HTMLAttributes<HTMLSpanElement>, MarginType {
color?: string;
size?: number | string;
borderSize?: number;
isHorizontal?: boolean;
}
declare const Line: React.ForwardRefExoticComponent<ILineProps & React.RefAttributes<HTMLSpanElement>>;
export default Line;