UNPKG

@carrot-farm/mongsil-ui

Version:
15 lines (14 loc) 578 B
import * as React from 'react'; import { breakPointsStringifyParam } from '../../utils/grid'; export interface CollectionProps extends React.HTMLAttributes<HTMLUListElement> { /** 리스트 사이의 갭 */ gap?: React.CSSProperties['gap']; /** 브레이크 포인트 */ breakPoints?: breakPointsStringifyParam[]; /** 기본 컬럼 */ defaultColumn?: number; /** style */ style?: React.CSSProperties; } declare const Collection: React.ForwardRefExoticComponent<CollectionProps & React.RefAttributes<HTMLUListElement>>; export default Collection;