22 lines
576 B
TypeScript
22 lines
576 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import type { SVGProps } from 'react';
|
||
|
|
const Sun = (props: SVGProps<SVGSVGElement>) => (
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
width="1em"
|
||
|
|
height="1em"
|
||
|
|
fill="none"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
{...props}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
strokeWidth={2}
|
||
|
|
d="M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
export default Sun;
|