32 lines
753 B
JavaScript
32 lines
753 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 Atom = [
|
||
|
"svg",
|
||
|
defaultAttributes,
|
||
|
[
|
||
|
["circle", { cx: "12", cy: "12", r: "1" }],
|
||
|
[
|
||
|
"path",
|
||
|
{
|
||
|
d: "M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
"path",
|
||
|
{
|
||
|
d: "M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
];
|
||
|
|
||
|
export { Atom as default };
|
||
|
//# sourceMappingURL=atom.js.map
|