aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/planet.js
blob: 3351a68ca7f39dc4cfc3086d43394190eee8a0f7 (plain)
1
2
3
4
5
import * as React from "react";

const IconPlanet = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-planet" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M17.905 13.057c2.208 1.756 3.436 3.308 3.012 4.035-.67 1.146-5.204-.204-10.129-3.016-4.924-2.812-8.374-6.022-7.705-7.168.418-.716 2.347-.458 4.936.524" /><circle cx={12} cy={12} r={6} /></svg>;

export default IconPlanet;