react-native-unicons
Version:
Unicons icons for React Native
9 lines (8 loc) • 602 B
JavaScript
import * as React from 'react';
import Svg, { Path } from 'react-native-svg';
function SvgShoppingCartAlt(props) {
return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}>
<Path d="M21.5 15a3 3 0 00-1.9-2.78l1.87-7a1 1 0 00-.18-.87A1 1 0 0020.5 4H6.8l-.33-1.26A1 1 0 005.5 2h-2v2h1.23l2.48 9.26a1 1 0 001 .74H18.5a1 1 0 010 2h-13a1 1 0 000 2h1.18a3 3 0 105.64 0h2.36a3 3 0 105.82 1 2.94 2.94 0 00-.4-1.47A3 3 0 0021.5 15zm-3.91-3H9L7.34 6H19.2zM9.5 20a1 1 0 111-1 1 1 0 01-1 1zm8 0a1 1 0 111-1 1 1 0 01-1 1z" fill="currentColor"/>
</Svg>);
}
export default SvgShoppingCartAlt;