import { HStack, SpanBox, VStack } from './LayoutPrimitives'
import { theme } from '../tokens/stitches.config'
import { Button } from './Button'
import { CloseIcon } from './icons/CloseIcon'
import { HelpfulSlothImage } from './images/HelpfulSlothImage'
import { ArrowSquareOut } from '@phosphor-icons/react'
import { useEffect, useState } from 'react'
type FeatureHelpBoxProps = {
helpTitle: string
helpMessage: string
helpCTAText?: string
onClickCTA?: () => void
docsMessage: string
docsDestination: string
onDismiss: () => void
}
export const FeatureHelpBox = (props: FeatureHelpBoxProps) => {
const [display, setDisplay] = useState(false)
useEffect(() => {
setDisplay(true)
}, [])
if (!display) {
return <>>
}
return (
)
}
const HelpSection = (props: FeatureHelpBoxProps) => {
return (
{props.helpTitle}
{props.helpMessage}
{props.helpCTAText && props.onClickCTA && (
)}
)
}