UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 952 B
const React = require("react"); import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconPictureRadio({ 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="M8.5 6.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM7.75 8.5a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Z" /><Path d="M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm12 1.5A1.5 1.5 0 0 1 19.5 6v6.37l-3.64-3.883a.75.75 0 0 0-1.095 0l-9.87 10.528A1.495 1.495 0 0 1 4.5 18V6A1.5 1.5 0 0 1 6 4.5h12Zm0 15H6.497l8.816-9.403 4.14 4.416a.787.787 0 0 0 .047.046V18a1.5 1.5 0 0 1-1.5 1.5Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } module.exports = FieldIconPictureRadio;