tdesign-react
Version:
TDesign Component for React
19 lines (18 loc) • 485 B
TypeScript
import React from 'react';
import { StyledProps } from '../common';
import { TdRowProps } from './type';
/**
* Row 组件支持的属性。
*/
export interface RowProps extends TdRowProps, StyledProps {
/**
* 默认子元素内容
*/
children: React.ReactNode;
}
export declare const RowContext: React.Context<{
gutter: any;
size: any;
}>;
declare const Row: React.ForwardRefExoticComponent<RowProps & React.RefAttributes<HTMLElement>>;
export default Row;