23 lines
495 B
JavaScript
23 lines
495 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 Move3d = [
|
|
"svg",
|
|
defaultAttributes,
|
|
[
|
|
["path", { d: "M5 3v16h16" }],
|
|
["path", { d: "m5 19 6-6" }],
|
|
["path", { d: "m2 6 3-3 3 3" }],
|
|
["path", { d: "m18 16 3 3-3 3" }]
|
|
]
|
|
];
|
|
|
|
export { Move3d as default };
|
|
//# sourceMappingURL=move-3d.js.map
|