react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 524 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDislikeFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m2.808 1.393 18.385 18.385-1.415 1.414-3.746-3.747L12 21.485l-8.478-8.492a6 6 0 0 1 .033-8.023L1.394 2.808zm17.435 3.364a6 6 0 0 1 .236 8.236l-1.635 1.636L7.26 3.046a6 6 0 0 1 4.741 1.483 6 6 0 0 1 8.242.228" />
</Svg>
);
export default SvgDislikeFill;