22 lines
490 B
JavaScript
22 lines
490 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 Rainbow = [
|
|
"svg",
|
|
defaultAttributes,
|
|
[
|
|
["path", { d: "M22 17a10 10 0 0 0-20 0" }],
|
|
["path", { d: "M6 17a6 6 0 0 1 12 0" }],
|
|
["path", { d: "M10 17a2 2 0 0 1 4 0" }]
|
|
]
|
|
];
|
|
|
|
export { Rainbow as default };
|
|
//# sourceMappingURL=rainbow.js.map
|