UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 571 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgCapsuleLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M19.778 4.222a6 6 0 010 8.485l-7.07 7.071a6.001 6.001 0 01-8.486-8.485l7.07-7.071a6.001 6.001 0 018.486 0zm-5.656 11.313L8.465 9.878l-2.829 2.83a4 4 0 105.657 5.656l2.829-2.83zm4.242-9.899a4 4 0 00-5.657 0L9.88 8.464l5.657 5.657 2.828-2.828a4 4 0 000-5.657z" /> </Svg> ); } export default SvgCapsuleLine;