UNPKG

kylin-ui-component

Version:

A React UI library for some developers to develop quickly

12 lines (11 loc) 409 B
import React from 'react'; export interface ItemProps { className: string; children: React.ReactNode; index: number; direction?: 'horizontal' | 'vertical'; marginDirection: 'marginLeft' | 'marginRight'; split?: React.ReactNode; wrap?: boolean; } export default function Item({ className, direction, index, marginDirection, children, split, wrap, }: ItemProps): JSX.Element | null;