UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 1.02 kB
import * as React from "react"; import Svg, { Path, Rect } from "react-native-svg"; function SvgBarbellOutline(props) { return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Path fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} d="M48 256h416" /><Rect x={384} y={128} width={32} height={256} rx={16} ry={16} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Rect x={96} y={128} width={32} height={256} rx={16} ry={16} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Rect x={32} y={192} width={16} height={128} rx={8} ry={8} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Rect x={464} y={192} width={16} height={128} rx={8} ry={8} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>; } export default SvgBarbellOutline;