react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 500 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgStickyNoteAddFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M4 1v3H1v2h3v3h2V6h3V4H6V1zm7 4a6 6 0 0 1-8 5.659v9.348c0 .548.447.993.998.993H14v-6c0-.55.45-1 1-1h6V3.999A.996.996 0 0 0 20.007 3h-9.348A6 6 0 0 1 11 5m10 11-5 4.997V16z" />
</Svg>
);
export default SvgStickyNoteAddFill;