react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 474 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgKickFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3 3h18v18H3zm7.564 2.536h-4.31v12.928h4.31V15.59H12v1.436h1.436v1.436h4.31v-4.309h-1.437v-1.436h-1.436v-1.436h1.436V9.845h1.436V5.536h-4.309v1.436H12V8.41h-1.436z" />
</Svg>
);
export default SvgKickFill;