23 lines
494 B
JavaScript
23 lines
494 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 BarChart3 = [
|
||
|
"svg",
|
||
|
defaultAttributes,
|
||
|
[
|
||
|
["path", { d: "M3 3v18h18" }],
|
||
|
["path", { d: "M18 17V9" }],
|
||
|
["path", { d: "M13 17V5" }],
|
||
|
["path", { d: "M8 17v-3" }]
|
||
|
]
|
||
|
];
|
||
|
|
||
|
export { BarChart3 as default };
|
||
|
//# sourceMappingURL=bar-chart-3.js.map
|