@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
11 lines (8 loc) • 433 B
JavaScript
import { defaultBaseConfig } from './preset-base.js';
import { mergeConfigs } from './styled-system/config.js';
import { createSystem } from './styled-system/system.js';
import { defaultThemeConfig } from './theme/index.js';
const defaultConfig = mergeConfigs(defaultBaseConfig, defaultThemeConfig);
const defaultSystem = createSystem(defaultConfig);
export { defaultConfig, defaultSystem, defaultSystem as system };
;