import CompCommon from '../../common/type'; export interface GridProps extends CompCommon { columnNum?: number; iconSize?: number; border?: boolean; direction?: 'top' | 'bottom' | 'left' | 'right'; clickable?: boolean; } export interface GridItemProps extends CompCommon { url?: string; icon?: string; text?: string; direction?: 'top' | 'bottom' | 'left' | 'right'; border?: boolean; columnNum?: number; length?: number; index?: number; iconSize?: number; onClick?: Function; }