UNPKG

@ray-js/smart-ui

Version:

轻量、可靠的智能小程序 UI 组件库

10 lines (9 loc) 354 B
import { SmartBaseExternalClassName, SmartComponent } from '../base'; export interface SmartRowProps { /** * 列元素之间的间距(单位为 px) */ gutter?: string | number; } export type SmartRowExternalClassName = SmartBaseExternalClassName; export type SmartRow = SmartComponent<SmartRowProps, {}, SmartRowExternalClassName>;