({ size, testID }: { size: number; testID: string })
| 6 | import ScreenWrapper from '../ScreenWrapper'; |
| 7 | |
| 8 | const AssetIcon = ({ size, testID }: { size: number; testID: string }) => ( |
| 9 | <Image |
| 10 | accessibilityIgnoresInvertColors |
| 11 | source={require('../../assets/images/paper-icon.png')} |
| 12 | style={{ width: size, height: size }} |
| 13 | testID={testID} |
| 14 | /> |
| 15 | ); |
| 16 | |
| 17 | const IconExample = () => { |
| 18 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…