@jinshuju/field-icons-react-native
Version:
React Native icons for Jinshuju fields
10 lines • 1.06 kB
JavaScript
import * as React from "react";
import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg";
function FieldIconPersonalWork({
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="M13.25 14a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z" /><Path d="M12 16.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z" /><Path fillRule="evenodd" d="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12Zm-6 1.5h6A1.5 1.5 0 0 1 19.5 6v12a1.5 1.5 0 0 1-1.5 1.5H6A1.5 1.5 0 0 1 4.5 18V6A1.5 1.5 0 0 1 6 4.5v4.691a.5.5 0 0 0 .724.447l1.829-.914a1 1 0 0 1 .894 0l1.83.914A.5.5 0 0 0 12 9.191V4.5Zm-1.5 0h-3v3.073l.382-.191a2.5 2.5 0 0 1 2.236 0l.382.19V4.5Z" clipRule="evenodd" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>;
}
export default FieldIconPersonalWork;