react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 661 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSwordFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m7.048 13.406 3.535 3.536-1.413 1.414 1.415 1.415-1.414 1.414-2.475-2.475-2.829 2.829-1.414-1.414 2.829-2.83-2.475-2.474 1.414-1.414 1.414 1.413zM3 3l3.546.003 11.817 11.818 1.415-1.414 1.415 1.414-2.475 2.475 2.828 2.829-1.414 1.414-2.829-2.829-2.474 2.475-1.415-1.414 1.414-1.415L3.002 6.531zm14.457 0L21 3.003l.002 3.523-4.053 4.052-3.536-3.535z" />
</Svg>
);
export default SvgSwordFill;