import React from 'react'; interface PostItIconProps { className?: string; size?: number; } const PostItIcon: React.FC = ({ className = '', size = 16 }) => { return ( {/* Gradient for sticky note */} {/* Main sticky note body - square shape */} {/* Folded top-right corner */} {/* Text lines to show it's a note */} ); }; export default PostItIcon;