@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.02 kB
JavaScript
const React = require("react");
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconUrl({
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="M18.546 5.454a3.253 3.253 0 0 0-4.6 0l-2.83 2.83a.75.75 0 1 1-1.062-1.06l2.83-2.832a4.754 4.754 0 1 1 6.724 6.723l-2.831 2.831a.75.75 0 1 1-1.062-1.061l2.831-2.831a3.253 3.253 0 0 0 0-4.6Z" /><Path d="M5.454 18.546a3.253 3.253 0 0 0 4.6 0l2.83-2.83a.75.75 0 1 1 1.062 1.06l-2.83 2.832a4.754 4.754 0 0 1-6.724-6.723l2.831-2.831a.75.75 0 1 1 1.062 1.061l-2.831 2.831a3.253 3.253 0 0 0 0 4.6Z" /><Path d="M16.07 8.992a.75.75 0 0 0-1.062-1.061L7.93 15.008a.75.75 0 1 0 1.061 1.061l7.077-7.077Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
module.exports = FieldIconUrl;