import { COLORS, Div, Text } from "cherag-ui"'
<Div
bg={COLORS.errorIcon}
w={200}
h={100}
p={10}
m={10}
style={{
justifyContent: "center",
alignItems: "center",
}}
>
<Text
fontSize="xl"
style={{
color: COLORS.white,
}}
>
Div Commponent
</Text>
</Div>