react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 633 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEmpathizeLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M18.364 10.98a4 4 0 0 1 0 5.656l-5.657 5.657a1 1 0 0 1-1.414 0l-5.657-5.657a4 4 0 1 1 5.657-5.657l.707.707.707-.707a4 4 0 0 1 5.657 0M7.051 12.392a2 2 0 0 0 0 2.829l4.95 4.95 4.95-4.95a2 2 0 1 0-2.83-2.827l-2.123 2.118-2.119-2.12a2 2 0 0 0-2.828 0M12 1a4 4 0 1 1 0 8 4 4 0 0 1 0-8m0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4" />
</Svg>
);
export default SvgEmpathizeLine;