import * as React from "react"; import { Badge, Box, Drawer, DrawerBody, DrawerCloseButton, DrawerContent, DrawerHeader, DrawerOverlay, FormControl, FormHelperText, FormLabel, Link, Select, } from "@chakra-ui/core"; import { ExternalLinkIcon } from "@chakra-ui/icons"; /** * ItemSupportDrawer shows Support UI for the item when open. * * This component controls the drawer element. The actual content is imported * from another lazy-loaded component! */ function ItemSupportDrawer({ item, isOpen, onClose }) { return ( {item.name} Support ); } function SpecialColorFields({ item }) { return ( Special color This controls which previews we show on the{" "} item page . ); } export default ItemSupportDrawer;