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) 460 B
import React from "react"; import "./style"; export interface IColProps { [key: string]: any; /** * 子节点 */ children?: React.ReactNode; /** * 附加类名 */ className?: string; /** * 栅格占位格数 */ span?: 0 | 1 | 2 | 3 | 4 | 6 | 8 | 12; /** * 附加样式 */ style?: React.CSSProperties; } /** * 栅格列 */ declare const Col: React.FC<IColProps>; export default Col;