@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 970 B
JavaScript
const React = require("react");
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconName({
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 fillRule="evenodd" clipPath="url(#a)" clipRule="evenodd"><Path d="M12 2.25a4.75 4.75 0 1 0 0 9.5 4.75 4.75 0 0 0 0-9.5ZM8.75 7a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Z" /><Path d="M7.75 13.75A4.75 4.75 0 0 0 3 18.5V20c0 .966.784 1.75 1.75 1.75h14.5A1.75 1.75 0 0 0 21 20v-1.5a4.75 4.75 0 0 0-4.75-4.75h-8.5Zm-2.298 2.452a3.25 3.25 0 0 1 2.298-.952h8.5a3.25 3.25 0 0 1 3.25 3.25V20a.25.25 0 0 1-.25.25H4.75A.25.25 0 0 1 4.5 20v-1.5c0-.862.342-1.689.952-2.298Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
module.exports = FieldIconName;