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

const IconMoon = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-moon" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M16.2 4a9.03 9.03 0 1 0 3.9 12a6.5 6.5 0 1 1 -3.9 -12" /></svg>;

export default IconMoon;