22 lines
517 B
JavaScript
22 lines
517 B
JavaScript
|
/**
|
||
|
* @license lucide v0.331.0 - ISC
|
||
|
*
|
||
|
* This source code is licensed under the ISC license.
|
||
|
* See the LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
import defaultAttributes from '../defaultAttributes.js';
|
||
|
|
||
|
const ShoppingBag = [
|
||
|
"svg",
|
||
|
defaultAttributes,
|
||
|
[
|
||
|
["path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }],
|
||
|
["path", { d: "M3 6h18" }],
|
||
|
["path", { d: "M16 10a4 4 0 0 1-8 0" }]
|
||
|
]
|
||
|
];
|
||
|
|
||
|
export { ShoppingBag as default };
|
||
|
//# sourceMappingURL=shopping-bag.js.map
|