How to use the @chakra-ui/system.chakra.div function in @chakra-ui/system

To help you get started, weโ€™ve selected a few @chakra-ui/system examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github chakra-ui / chakra-ui / packages / chakra-ui-layout / src / Box / Box.tsx View on Github external
import * as React from "react";
import { chakra, PropsOf } from "@chakra-ui/system";

const Box = chakra.div;

export type BoxProps = PropsOf;

export default Box;