import * as React from 'react' import { Box, Text } from '@anthropic/ink' import { Markdown } from '../Markdown.js' type Props = { addMargin: boolean planContent: string } export function UserPlanMessage({ addMargin, planContent, }: Props): React.ReactNode { return ( Plan to implement {planContent} ) }