@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.49 kB
JavaScript
const React = require("react");
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconDollar({
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 fillRule="evenodd" d="M12.204 2.216a.716.716 0 1 0-1.431 0v1.522c-1.119.17-2.134.579-2.94 1.165C6.748 5.692 6 6.842 6 8.182c0 1.34.748 2.49 1.833 3.279.806.586 1.821.994 2.94 1.165v6.184c-.82-.155-1.54-.465-2.098-.87-.816-.594-1.243-1.353-1.243-2.122a.716.716 0 1 0-1.432 0c0 1.34.748 2.49 1.833 3.279.806.586 1.821.994 2.94 1.165v1.522a.716.716 0 1 0 1.431 0V20.35c1.493-.044 2.865-.503 3.895-1.252 1.085-.789 1.833-1.939 1.833-3.279 0-1.34-.748-2.49-1.833-3.279-1.03-.749-2.402-1.207-3.895-1.251V5.084c1.217.044 2.288.42 3.053.977.816.593 1.243 1.352 1.243 2.12a.716.716 0 1 0 1.432 0c0-1.339-.748-2.49-1.833-3.278-1.03-.75-2.402-1.207-3.895-1.252V2.216ZM10.773 5.19c-.82.155-1.54.465-2.098.87-.816.594-1.243 1.353-1.243 2.122 0 .769.427 1.527 1.243 2.12.557.406 1.277.716 2.098.872V5.19Zm1.431 7.53v6.196c1.217-.044 2.288-.42 3.053-.977.816-.593 1.243-1.352 1.243-2.12 0-.77-.427-1.528-1.243-2.122-.765-.556-1.836-.933-3.053-.977Z" clipRule="evenodd" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
module.exports = FieldIconDollar;