( props: React.SVGProps<SVGSVGElement> )
| 1 | import React from 'react'; |
| 2 | export function IconJsonMode( |
| 3 | props: React.SVGProps<SVGSVGElement> |
| 4 | ) { |
| 5 | return ( |
| 6 | <svg |
| 7 | {...props} |
| 8 | xmlns="http://www.w3.org/2000/svg" |
| 9 | width="24" |
| 10 | height="24" |
| 11 | viewBox="0 0 24 24" |
| 12 | fill="none" |
| 13 | > |
| 14 | <path |
| 15 | fillRule="evenodd" |
| 16 | clipRule="evenodd" |
| 17 | d="M3 3H21V21H3V3ZM19 9H5V19H19V9ZM9 11.0858L11.9142 14L9 16.9142L7.58579 15.5L9.08579 14L7.58579 12.5L9 11.0858ZM13.75 11.0858L16.6642 14L13.75 16.9142L12.3358 15.5L13.8358 14L12.3358 12.5L13.75 11.0858Z" |
| 18 | fill="currentColor" |
| 19 | /> |
| 20 | </svg> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected