UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 766 B
const React = require("react"); import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconPhone({ 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="M12 19a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" /><Path d="M4 5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V5Zm3-1.5A1.5 1.5 0 0 0 5.5 5v14A1.5 1.5 0 0 0 7 20.5h10a1.5 1.5 0 0 0 1.5-1.5V5A1.5 1.5 0 0 0 17 3.5H7Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } module.exports = FieldIconPhone;