UNPKG

rsuite

Version:

A suite of react components

10 lines (9 loc) 364 B
import { WithAsProps, RsRefForwardingComponent } from '../@types/common'; export interface FlexboxGridItemProps extends WithAsProps { /** spacing between grids */ colspan?: number; /** grid orders for sorting */ order?: number; } declare const FlexboxGridItem: RsRefForwardingComponent<'div', FlexboxGridItemProps>; export default FlexboxGridItem;