@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
16 lines (11 loc) • 427 B
JavaScript
'use client';
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const createContext = require('../../utils/create-context.cjs');
const [SwitchProvider, useSwitchContext] = createContext.createContext({
name: "SwitchContext",
hookName: "useSwitchContext",
providerName: "<SwitchProvider />"
});
exports.SwitchProvider = SwitchProvider;
exports.useSwitchContext = useSwitchContext;