Example of incorrect code for this rule:
import { Box } from "@chakra-ui/react";
<Box display="flex" margin="2" paddingTop={4}>
Hello
</Box>;
Example of correct code for this rule:
import { Box, Flex } from "@chakra-ui/react";
<Flex margin="2" paddingTop={4}>
Hello
</Flex>;
This rule enforces the usage of specific Chakra components instead of Box components with an attribute.
N/A