UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

10 lines (9 loc) 411 B
'use client'; import { jsx as _jsx } from "react/jsx-runtime"; import * as React from 'react'; const EMPTY = {}; export const PrivateDefaultPropsContext = React.createContext(EMPTY); export function PrivateDefaultPropsProvider({ value = EMPTY, children, }) { return (_jsx(PrivateDefaultPropsContext.Provider, { value: value, children: children })); } //# sourceMappingURL=PrivateDefaultPropsProvider.js.map