UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

10 lines (9 loc) 769 B
import * as React from "react"; import Svg, { Circle, Path } from "react-native-svg"; function SvgMusic(props) { return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props }, React.createElement(Circle, { cx: 7, cy: 17, r: 2.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.25 17V6.75a2 2 0 012-2h6a2 2 0 012 2V14" }), React.createElement(Circle, { cx: 17, cy: 14, r: 2.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }))); } export default SvgMusic;