react-native-ios-list
Version:
iOS-styled List component
11 lines (10 loc) • 401 B
TypeScript
import React, { ReactElement } from 'react';
import { ListProps } from '../List';
declare type ListStyleProviderProps = {
dividerColor: string;
sideBar: boolean;
children: ReactElement<ListProps>;
};
export declare const ListStyleContext: React.Context<any>;
export declare const ListStyleProvider: ({ children, dividerColor, sideBar, }: ListStyleProviderProps) => JSX.Element;
export {};