24 lines
554 B
JavaScript
24 lines
554 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 ListCollapse = [
|
|
"svg",
|
|
defaultAttributes,
|
|
[
|
|
["path", { d: "m3 10 2.5-2.5L3 5" }],
|
|
["path", { d: "m3 19 2.5-2.5L3 14" }],
|
|
["path", { d: "M10 6h11" }],
|
|
["path", { d: "M10 12h11" }],
|
|
["path", { d: "M10 18h11" }]
|
|
]
|
|
];
|
|
|
|
export { ListCollapse as default };
|
|
//# sourceMappingURL=list-collapse.js.map
|