UNPKG

@zh5/react-native-remix-icon

Version:
9 lines (8 loc) 390 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgCodeView = props => ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path d="m16.95 8.465 1.414-1.415 4.95 4.95-4.95 4.95-1.414-1.414L20.485 12 16.95 8.465Zm-9.9 0L3.515 12l3.535 3.536-1.414 1.414L.686 12l4.95-4.95L7.05 8.465Z" /> </Svg> ); export default SvgCodeView;