import React from 'react'; interface TextGenerationIconProps { className?: string; } const TextGenerationIcon: React.FC = ({ className = '' }) => { return ( {/* Input prompt */} Prompt: Generate a story about... {/* Arrow */} {/* Generated text */} Once upon a time, in a land far away, there was a brave knight who... ); }; export default TextGenerationIcon;