'use client'
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'
type FeatureHelpBoxProps = {
helpTitle: string
helpMessage: string
helpCTAText?: string
onClickCTA?: () => void
docsMessage: string
docsDestination: string
onDismiss: () => void
}
export const FeatureHelpBox = (props: FeatureHelpBoxProps) => {
return (
)
}
const HelpSection = (props: FeatureHelpBoxProps) => {
return (
{props.helpTitle}
{props.helpMessage}
{props.helpCTAText && props.onClickCTA && (
)}
)
}