import { HStack, SpanBox, VStack } from './LayoutPrimitives' import { theme } from '../tokens/stitches.config' import { Button } from './Button' import { CloseIcon } from './icons/CloseIcon' import { HelpfulOwlImage } from './images/HelpfulOwlImage' import { ArrowSquareOut } from 'phosphor-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) }, []) return ( ) } const HelpSection = (props: FeatureHelpBoxProps) => { return ( {props.helpTitle} {props.helpMessage} {props.helpCTAText && props.onClickCTA && ( )} ) }