styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 817 B
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: "M5 22h14a2 2 0 002-2V9a1 1 0 00-1-1h-3v-.777c0-2.609-1.903-4.945-4.5-5.198A5.005 5.005 0 007 7v1H4a1 1 0 00-1 1v11a2 2 0 002 2zm12-12v2h-2v-2h2zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v1H9V7zm-2 3h2v2H7v-2z", key: "k0" })));
});
ShoppingBag.displayName = 'ShoppingBag';
export var ShoppingBagDimensions = { height: 24, width: 24 };