UNPKG

@ozen-ui/kit

Version:

React component library

11 lines (10 loc) 406 B
import type { ChipColorVariant, ChipOnClick, ChipSizeVariant } from '../ChipNext'; import type { ChipGroupValue } from './types'; export type ChipGroupContextValue = { onClick: ChipOnClick; disabled?: boolean; value?: ChipGroupValue; size?: ChipSizeVariant; color?: ChipColorVariant; }; export declare const ChipGroupContext: import("react").Context<ChipGroupContextValue | undefined>;