UNPKG

@jinshuju/field-icons-react-native

Version:

React Native icons for Jinshuju fields

10 lines 2.62 kB
import * as React from "react"; import Svg, { G, Path, Defs, ClipPath, Rect } from "react-native-svg"; function FieldIconTelephone({ 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="M10.226 4.69c-.29-.288-.55-.563-.797-.823l-.005-.004a28.119 28.119 0 0 0-.7-.721c-.436-.426-.918-.837-1.493-1.028-.632-.21-1.263-.123-1.911.209-.616.315-1.28.865-2.051 1.636a.766.766 0 0 0-.043.047l-.005.005a4.206 4.206 0 0 1-.038.037l-.007.006c-.04.04-.097.096-.161.163a3.692 3.692 0 0 0-.47.607c-.331.536-.598 1.291-.536 2.31.122 1.993 1.49 4.873 5.74 9.122 4.25 4.248 7.129 5.614 9.121 5.735 1.02.062 1.774-.206 2.31-.537.262-.162.462-.333.606-.47.067-.064.123-.121.163-.161l.006-.007.037-.038.005-.005a.761.761 0 0 0 .047-.043c.77-.769 1.319-1.432 1.633-2.048.332-.648.42-1.279.21-1.91-.19-.575-.6-1.059-1.026-1.495-.22-.225-.468-.461-.724-.706l-.012-.01c-.256-.244-.527-.502-.813-.788-.729-.728-1.44-1.03-2.189-1.01-.345.009-.66.086-.93.17a11.11 11.11 0 0 0-.39.13l-.036.013-.038.013c-.097.034-.189.066-.281.096-.45.145-.839.219-1.303.105-.481-.118-1.144-.463-2.056-1.375-.912-.912-1.258-1.575-1.376-2.056a1.893 1.893 0 0 1-.054-.37c-.014-.314.053-.608.158-.934.034-.104.07-.207.11-.319l.012-.036c.043-.122.089-.255.13-.39.083-.271.16-.585.17-.93.018-.75-.284-1.46-1.013-2.19Zm-5.96.451c.023-.023.068-.066.11-.114.73-.728 1.251-1.133 1.644-1.334.364-.186.565-.173.726-.12.217.073.487.262.902.669.201.196.416.422.665.684l.005.005c.244.258.517.544.82.848.505.505.568.83.562 1.06a1.945 1.945 0 0 1-.101.518c-.032.105-.07.213-.113.336l-.013.037c-.038.109-.08.23-.12.353-.04.125-.08.257-.114.397a3.539 3.539 0 0 0-.02 1.746c.209.85.756 1.751 1.782 2.777 1.026 1.026 1.927 1.573 2.778 1.781.867.213 1.579.047 2.143-.136.123-.04.243-.082.352-.12l.037-.013c.123-.043.231-.08.336-.113.21-.065.372-.098.517-.102a.918.918 0 0 1 .352.059c.188.068.418.212.708.502.3.3.583.569.837.81l.015.015c.262.249.488.464.683.665.406.416.595.686.668.904.053.162.066.364-.12.727-.2.392-.605.913-1.331 1.64-.048.043-.09.087-.114.111l-.007.008-.004.004a4.59 4.59 0 0 1-.125.124 2.157 2.157 0 0 1-.355.277c-.284.175-.726.35-1.408.31-1.41-.086-3.945-1.108-8.126-5.288C4.654 10.986 3.63 8.45 3.545 7.04c-.042-.682.133-1.125.309-1.41.09-.146.188-.262.276-.354.044-.046.083-.085.125-.125l.003-.004.007-.007Z" /></G><Defs><ClipPath id="a"><Rect width={24} height={24} /></ClipPath></Defs></Svg>; } export default FieldIconTelephone;