react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 493 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgHtml5Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m12 18.178 4.62-1.256.623-6.778H9.026L8.822 7.89h8.626l.227-2.211H6.325l.636 6.678h7.82l-.261 2.866-2.52.667-2.52-.667-.158-1.844h-2.27l.329 3.544zM3 2h18l-1.623 18L12 22l-7.377-2z" />
</Svg>
);
export default SvgHtml5Fill;