import * as React from "react"; import { Button, Box, HStack, Modal, ModalBody, ModalCloseButton, ModalContent, ModalHeader, ModalOverlay, } from "@chakra-ui/core"; import { ExternalLinkIcon } from "@chakra-ui/icons"; function ItemSupportAppearanceLayerModal({ item, itemLayer, isOpen, onClose }) { return ( Layer {itemLayer.id}: {item.name} ID: {itemLayer.id} Zone: {itemLayer.zone.label} ({itemLayer.zone.id}) Assets: {itemLayer.svgUrl ? ( ) : ( )} {itemLayer.imageUrl ? ( ) : ( )} ); } export default ItemSupportAppearanceLayerModal;