UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

10 lines (9 loc) 402 B
import { MantineSize } from '../../core'; export interface PillGroupContextValue { size: MantineSize | (string & {}) | undefined; disabled: boolean | undefined; } export declare const PillGroupProvider: ({ children, value }: { value: PillGroupContextValue; children: import("react").ReactNode; }) => import("react").JSX.Element, usePillGroupContext: () => PillGroupContextValue | null;