@amaui/ui-react
Version:
UI for React
18 lines (17 loc) • 533 B
TypeScript
import React from 'react';
import { ISurface } from '../Surface/Surface';
import { ISize, IElement } from '../types';
export interface IList extends ISurface {
size?: ISize;
menu?: IElement;
menuOpen?: boolean;
noMaxWidth?: boolean;
noChildrenTransform?: boolean;
indent?: number;
paddingHorizontal?: 'both' | 'start' | 'end' | 'none';
paddingVertical?: 'both' | 'start' | 'end' | 'none';
noBackground?: boolean;
SurfaceProps?: any;
}
declare const List: React.FC<IList>;
export default List;