@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 404 B
TypeScript
import { MantineSize } from '../../core';
export interface PillGroupContextValue {
size: MantineSize | (string & {}) | undefined;
disabled: boolean | undefined;
}
export declare const PillGroupProvider: ({ children, value }: {
value: PillGroupContextValue;
children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, usePillGroupContext: () => PillGroupContextValue | null;