import { MessageSquare } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Text } from './Text'; export interface FeedEmptyStateProps { message?: string; } export const FeedEmptyState = ({ message = 'No activity yet.' }: FeedEmptyStateProps) => { return ( {message} ); };