react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 431 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMessage3Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M2 8.994A5.99 5.99 0 0 1 8 3h8c3.313 0 6 2.695 6 5.994V21H8c-3.313 0-6-2.695-6-5.994zM14 11v2h2v-2zm-6 0v2h2v-2z" />
</Svg>
);
export default SvgMessage3Fill;