Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /** * ImageIcon - Image/picture icon * Commonly used for image placeholders and media uploads */ export default function ImageIcon({ width = 16, height = 16, className = 'fill-current', ...props }: React.SVGProps<SVGSVGElement>) { return ( <svg {...props} className={className} width={width} height={height} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" > <path fillRule="evenodd" clipRule="evenodd" d="M2 3C2 2.44772 2.44772 2 3 2H13C13.5523 2 14 2.44772 14 3V13C14 13.5523 13.5523 14 13 14H3C2.44772 14 2 13.5523 2 13V3ZM13 3H3V10.5858L5.29289 8.29289C5.68342 7.90237 6.31658 7.90237 6.70711 8.29289L9 10.5858L10.2929 9.29289C10.6834 8.90237 11.3166 8.90237 11.7071 9.29289L13 10.5858V3ZM3 13V12.4142L5.5 9.91421L7.79289 12.2071C7.97386 12.388 8.21965 12.4875 8.47487 12.4875C8.73008 12.4875 8.97587 12.388 9.15685 12.2071L10.5 10.8639L13 13H3ZM10 5.5C10 4.67157 10.6716 4 11.5 4C12.3284 4 13 4.67157 13 5.5C13 6.32843 12.3284 7 11.5 7C10.6716 7 10 6.32843 10 5.5Z" fill="currentColor" /> </svg> ); } |