react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 526 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBallPenFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M17.849 11.808l-.707-.707-9.9 9.9H3v-4.243L14.313 5.444l5.657 5.657a1 1 0 010 1.414l-7.07 7.071-1.415-1.414 6.364-6.364zm.707-9.192l2.829 2.828a1 1 0 010 1.414L19.97 8.273 15.728 4.03l1.414-1.414a1 1 0 011.414 0z" />
</Svg>
);
}
export default SvgBallPenFill;