styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ShoppingBag = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M17 4H7C5.346 4 4 5.346 4 7v11c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3V7c0-1.654-1.346-3-3-3zm1 14c0 .551-.448 1-1 1H7c-.552 0-1-.449-1-1v-7.28c.296.174.635.28 1 .28h1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5H17c.365 0 .704-.106 1-.279V18zm-8.5-7h5c0 1.378-1.121 2.5-2.5 2.5S9.5 12.378 9.5 11zM18 9c0 .551-.448 1-1 1H7c-.552 0-1-.449-1-1V7c0-.551.448-1 1-1h10c.552 0 1 .449 1 1v2z", key: "k0" })));
});
ShoppingBag.displayName = 'ShoppingBag';
export var ShoppingBagDimensions = { height: 24, width: 24 };