react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 596 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPenNibFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M4.929 21.485l5.846-5.846a2 2 0 10-1.414-1.414l-5.846 5.846-1.06-1.06c2.827-3.3 3.888-6.954 5.302-13.082l6.364-.707 5.657 5.657-.707 6.364c-6.128 1.414-9.782 2.475-13.081 5.303l-1.061-1.06zM16.596 2.04l6.347 6.346a.5.5 0 01-.277.848l-1.474.23-5.656-5.656.212-1.485a.5.5 0 01.848-.283z" />
</Svg>
);
}
export default SvgPenNibFill;