@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
13 lines (10 loc) • 365 B
JavaScript
;
"use client";
import { createRecipeContext } from '../../styled-system/create-recipe-context.js';
const { withContext, PropsProvider } = createRecipeContext({
key: "container"
});
const Container = withContext("div");
Container.displayName = "Container";
const ContainerPropsProvider = PropsProvider;
export { Container, ContainerPropsProvider };