26 lines
601 B
JavaScript
26 lines
601 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 TrainTrack = [
|
|
"svg",
|
|
defaultAttributes,
|
|
[
|
|
["path", { d: "M2 17 17 2" }],
|
|
["path", { d: "m2 14 8 8" }],
|
|
["path", { d: "m5 11 8 8" }],
|
|
["path", { d: "m8 8 8 8" }],
|
|
["path", { d: "m11 5 8 8" }],
|
|
["path", { d: "m14 2 8 8" }],
|
|
["path", { d: "M7 22 22 7" }]
|
|
]
|
|
];
|
|
|
|
export { TrainTrack as default };
|
|
//# sourceMappingURL=train-track.js.map
|