UNPKG

@onesy/ui-react

Version:
19 lines (18 loc) 553 B
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;