UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 455 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgH5 = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M22 8v2h-4.323l-.464 2.636A4.006 4.006 0 0 1 22.25 16.5a4 4 0 0 1-7.846 1.103l1.923-.551a2 2 0 1 0 .363-1.804l-1.81-.904L16 8zM4 4v7h7V4h2v16h-2v-7H4v7H2V4z" /> </Svg> ); export default SvgH5;