UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 464 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgMicFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M12 1a5 5 0 015 5v4a5 5 0 01-10 0V6a5 5 0 015-5zM3.055 11H5.07a7.002 7.002 0 0013.858 0h2.016A9.004 9.004 0 0113 18.945V23h-2v-4.055A9.004 9.004 0 013.055 11z" /> </Svg> ); } export default SvgMicFill;