react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 538 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDropboxFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m17.285 10.668 5.215 3.323-5.252 3.346L12 13.993l-5.248 3.344L1.5 13.99l5.215-3.323L1.5 7.346 6.752 4 12 7.343 17.248 4 22.5 7.346zm-.074 0L12 7.348l-5.211 3.32L12 13.988zM6.786 18.446l5.252-3.346 5.252 3.346-5.252 3.346z" />
</Svg>
);
export default SvgDropboxFill;