UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 594 B
import * as React from "react"; import Svg, { Path, Circle } from "react-native-svg"; function SvgBadge(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M14.25 8.75l4-4H5.75l4 4" }), React.createElement(Circle, { cx: 12, cy: 14, r: 5.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }))); } export default SvgBadge;