UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

27 lines (26 loc) 506 B
import * as React from "react"; import "./style"; export interface IRowProps { [key: string]: any; /** * 子节点 */ children?: React.ReactNode; /** * 附加类名 */ className?: string; /** * 每列之间的间距 */ gutter?: number; /** * 附加样式,可以在这里设置 flex 相关样式,如 align-items */ style?: React.CSSProperties; } /** * 栅格行 */ declare const Row: React.FC<IRowProps>; export default Row;