UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 669 B
import * as React from "react"; import Svg, { Circle, Path } from "react-native-svg"; function SvgAtSign(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Circle, { cx: 12, cy: 12, r: 3.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 19.25a7.25 7.25 0 110-14.5c6.813 0 7.25 4.375 7.25 7.25v1.25a2 2 0 01-2 2v0a2 2 0 01-2-2v-4.5" }))); } export default SvgAtSign;