@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
8 lines (7 loc) • 313 B
TypeScript
export interface CheckboxCardContextValue {
checked: boolean;
}
export declare const CheckboxCardProvider: ({ children, value }: {
value: CheckboxCardContextValue;
children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useCheckboxCardContext: () => CheckboxCardContextValue | null;