2023-06-19 18:41:00 +02:00
|
|
|
import { Box, BoxProps, Image } from '@chakra-ui/react'
|
2022-03-17 14:37:00 +01:00
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
|
|
export const BackgroundSpotlight = (props: BoxProps) => (
|
|
|
|
|
<Box {...props}>
|
2023-06-19 18:41:00 +02:00
|
|
|
<Image src="https://s3.typebot.io/spotlight.png" alt="spotlight" />
|
2022-03-17 14:37:00 +01:00
|
|
|
</Box>
|
|
|
|
|
)
|