react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 412 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgKickLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3 2h8v2h2V2h8v8h-2v4h2v8h-8v-2h-2v2H3zm10 16h2v2h4v-4h-2v-2h-2v-4h2V8h2V4h-4v2h-2v2H9V4H5v16h4v-4h4z" />
</Svg>
);
export default SvgKickLine;