UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 1.28 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconAge({ 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="M19.75 2.75a.75.75 0 0 0-1.5 0v1.5h-1.462a.75.75 0 0 0 0 1.5h1.462v1.5a.75.75 0 0 0 1.5 0v-1.5h1.5a.75.75 0 0 0 0-1.5h-1.5v-1.5Z" /><Path d="M12 2.75c0-.414-.337-.753-.75-.722C6.077 2.41 2 6.729 2 12c0 5.523 4.477 10 10 10 5.27 0 9.589-4.077 9.972-9.25.03-.413-.308-.75-.722-.75s-.747.337-.783.75a8.5 8.5 0 1 1-9.217-9.217c.413-.036.75-.369.75-.783Z" /><Path d="M15 7.919c-.838-.873-1.97-1.419-3.25-1.419C9.046 6.5 7 8.936 7 11.75S9.046 17 11.75 17c1.362 0 2.557-.618 3.408-1.591.119.384.304.707.554.964.47.482 1.06.627 1.538.627a.75.75 0 0 0 0-1.5.62.62 0 0 1-.462-.173c-.114-.117-.288-.402-.288-1.077v-6.5a.75.75 0 0 0-1.5 0v.169ZM11.75 8C13.464 8 15 9.593 15 11.75c0 2.156-1.536 3.75-3.25 3.75S8.5 13.906 8.5 11.75C8.5 9.593 10.036 8 11.75 8Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconAge;