UNPKG

react-native-feather

Version:
11 lines (10 loc) 459 B
import * as React from "react"; import Svg, { Rect, Circle, Path } from "react-native-svg"; function SvgSpeaker(props) { return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}> <Rect x={4} y={2} width={16} height={20} rx={2} ry={2}/> <Circle cx={12} cy={14} r={4}/> <Path d="M12 6h.01"/> </Svg>); } export default SvgSpeaker;