react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 473 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgMixtralLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3 3h5.2v3.2h3.2v3.2h1.2V6.2h3.2V3H21v18h-5.2v-6.4h-1.2v3.2H9.4v-3.2H8.2V21H3zm2 2v14h1.2v-6.4h5.2v3.2h1.2v-3.2h5.2V19H19V5h-1.2v3.2h-3.2v3.2H9.4V8.2H6.2V5z" />
</Svg>
);
export default SvgMixtralLine;