Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
577 Bytes
"use client"
import {
type HTMLChakraProps,
type RecipeProps,
type UnstyledProp,
createRecipeContext,
} from "../../styled-system"
const { withContext, PropsProvider } = createRecipeContext({
key: "container",
})
export interface ContainerBaseProps
extends RecipeProps<"container">,
UnstyledProp {}
export interface ContainerProps
extends HTMLChakraProps<"div", ContainerBaseProps> {}
export const Container = withContext<HTMLDivElement, ContainerProps>("div")
export const ContainerPropsProvider =
PropsProvider as React.Provider<ContainerBaseProps>