You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
423 B
12 lines
423 B
import * as React from 'react';
|
|
export interface ItemProps {
|
|
className: string;
|
|
children: React.ReactNode;
|
|
index: number;
|
|
direction?: 'horizontal' | 'vertical';
|
|
marginDirection: 'marginLeft' | 'marginRight';
|
|
split?: string | React.ReactNode;
|
|
wrap?: boolean;
|
|
}
|
|
export default function Item({ className, direction, index, marginDirection, children, split, wrap, }: ItemProps): JSX.Element | null;
|