react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 531 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgFigmaFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M5.333 5.333A3.333 3.333 0 0 1 8.666 2h6.667a3.333 3.333 0 1 1 0 6.667H12v10a3.333 3.333 0 1 1-3.334-3.334 3.333 3.333 0 1 1 0-6.666 3.333 3.333 0 0 1-3.333-3.334M12 12a3.333 3.333 0 1 0 6.666 0A3.333 3.333 0 0 0 12 12" />
</Svg>
);
export default SvgFigmaFill;