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 | 3x | import React from 'react'; function PhotoShotIcon({ className, onClick }: { className?: string; onClick?: () => void }) { return ( <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className} onClick={onClick} > <circle cx="12" cy="12" r="12" fill="black" /> </svg> ); } export default PhotoShotIcon; |