@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 363 B
TypeScript
import { GetStylesApi } from '../../core';
import type { ListFactory } from './List';
export interface ListContextValue {
getStyles: GetStylesApi<ListFactory>;
center: boolean | undefined;
icon: React.ReactNode | undefined;
}
export declare const ListProvider: import("react").Context<ListContextValue | null>, useListContext: () => ListContextValue;