18 lines
992 B
TypeScript
18 lines
992 B
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Night = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="nonzero"
|
|
d="m9.666 2.02.046.139C9.902 2.744 10 3.365 10 4c0 1.613-.64 3.124-1.757 4.243A5.979 5.979 0 0 1 4 10c-.68 0-1.345-.113-1.975-.333a.5.5 0 0 0-.637.637c.348.997.917 1.9 1.662 2.646A6.978 6.978 0 0 0 8 15a6.978 6.978 0 0 0 4.95-2.05A6.978 6.978 0 0 0 15 8a6.978 6.978 0 0 0-2.05-4.95 7.002 7.002 0 0 0-2.646-1.662.5.5 0 0 0-.638.632Zm1.22.72.176.099c.429.255.826.563 1.18.918A5.979 5.979 0 0 1 14 8c0 1.613-.64 3.124-1.757 4.243A5.979 5.979 0 0 1 8 14a5.979 5.979 0 0 1-4.243-1.757l-.207-.218a6.02 6.02 0 0 1-.711-.963l-.099-.177.252.043A6.978 6.978 0 0 0 8.95 8.95a6.978 6.978 0 0 0 1.987-5.891l-.051-.319Z"
|
|
/>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Night;
|