2
0
Files
bot/apps/builder/src/features/graph/components/Nodes/ItemNode/ItemNodeOverlay.tsx
Baptiste Arnaud 3394fa5e0a Add dark mode (#191)
Closes #189
2022-12-20 16:55:43 +01:00

27 lines
613 B
TypeScript

import { Flex, FlexProps, useColorModeValue } from '@chakra-ui/react'
import { Item } from 'models'
import React, { ReactNode } from 'react'
type Props = {
item: Item
} & FlexProps
export const ItemNodeOverlay = ({ item, ...props }: Props) => {
return (
<Flex
px="4"
py="2"
rounded="md"
bgColor={useColorModeValue('white', 'gray.850')}
borderWidth="1px"
borderColor={useColorModeValue('gray.200', 'gray.700')}
w="212px"
pointerEvents="none"
shadow="lg"
{...props}
>
{(item.content ?? 'Click to edit') as ReactNode}
</Flex>
)
}