UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 664 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgMicrophone(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: "M8.75 8a3.25 3.25 0 016.5 0v3a3.25 3.25 0 01-6.5 0V8z" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5.75 12.75s.25 4.5 6.25 4.5 6.25-4.5 6.25-4.5M12 17.75v1.5" }))); } export default SvgMicrophone;