react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 482 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTumblrFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M6.27 7.63A5.76 5.76 0 0 0 10.817 2h3.03v5.152h3.637v3.636h-3.637v5.454c0 .515.198 1.207.91 1.667q.711.46 3.03.455V22h-4.243a4.546 4.546 0 0 1-4.545-4.546v-6.666H6.27z" />
</Svg>
);
export default SvgTumblrFill;