react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 415 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgGuideFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M13 8v8a3 3 0 01-3 3H7.83a3.001 3.001 0 110-2H10a1 1 0 001-1V8a3 3 0 013-3h3V2l5 4-5 4V7h-3a1 1 0 00-1 1z" />
</Svg>
);
}
export default SvgGuideFill;