@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 369 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTestTubeFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M17 2v2h-1v14a4 4 0 0 1-8 0V4H7V2h10Zm-4 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2-3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm3-8h-4v4h4V4Z" />
</Svg>
);
export default SvgTestTubeFill;