@onesy/ui-react
Version:
UI for React
19 lines (18 loc) • 553 B
TypeScript
import React from 'react';
import { ISurface } from '../Surface/Surface';
import { IElement } from '../types';
export declare type IList = ISurface & {
gap?: any;
menu?: IElement;
menuOpen?: boolean;
onMenuDesktopClose?: any;
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;