@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.27 kB
JavaScript
const React = require("react");
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconNps({
title,
titleId,
...props
}) {
return <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" data-slot="icon" width="1em" height="1em" aria-labelledby={titleId} {...props}>{title ? <title id={titleId}>{title}</title> : null}<G clipPath="url(#a)"><Path d="M11.453 2.5a.746.746 0 0 0-.68.441L7.31 10.4H4.965c-.65 0-1.276.255-1.739.713A2.443 2.443 0 0 0 2.5 12.85v6.2c0 .654.263 1.278.726 1.736a2.472 2.472 0 0 0 1.739.714h12.862c.589.005 1.162-.2 1.614-.58.454-.38.755-.914.845-1.5l1.186-7.9a2.435 2.435 0 0 0-.58-1.982 2.463 2.463 0 0 0-1.88-.838h-4.46l.225-2.9c0-.88-.353-1.72-.978-2.338a3.336 3.336 0 0 0-2.346-.962Zm.387 1.707a.186.186 0 0 1 .228-.103c.256.09.49.235.685.427.342.339.532.795.532 1.269l-.226 3.65c0 .414.334.75.747.75h5.218a.99.99 0 0 1 .75.33.944.944 0 0 1 .223.76l-1.186 7.9a.944.944 0 0 1-.327.58.986.986 0 0 1-.645.23H8.537V11.31l3.303-7.104ZM7.045 11.9V20h-2.08a.984.984 0 0 1-.692-.283.939.939 0 0 1-.28-.667v-6.2c0-.248.099-.489.28-.668a.984.984 0 0 1 .692-.282h2.08Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
module.exports = FieldIconNps;