24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { CustomSVGProps } from '../type';
|
|
import '../index.less';
|
|
|
|
const Noticesel = (props: CustomSVGProps) => (
|
|
<span className={'icon'}>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
|
|
<g fill="none" fillRule="evenodd">
|
|
<path
|
|
fill="#09F"
|
|
d="M8 6a2 2 0 0 1 .501 3.937L8.5 12h-1V9.937A2 2 0 0 1 8 6Zm0 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"
|
|
/>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="nonzero"
|
|
d="M8 3a4.5 4.5 0 0 1 4.5 4.5V12a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3V7.5A4.5 4.5 0 0 1 8 3Zm4.5 10h-9a.5.5 0 1 0 0 1h9a.5.5 0 1 0 0-1ZM8 4a3.5 3.5 0 0 0-3.5 3.5V12h7V7.5A3.5 3.5 0 0 0 8 4ZM2 7a.5.5 0 0 1 0 1H1a.5.5 0 0 1 0-1h1Zm13 0a.5.5 0 1 1 0 1h-1a.5.5 0 1 1 0-1h1Zm-1.343-4.657a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 0 1-.707-.707l.707-.707a.5.5 0 0 1 .707 0Zm-10.607 0 .707.707a.5.5 0 1 1-.707.707l-.707-.707a.5.5 0 1 1 .707-.707ZM8 0a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 8 0Z"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
</span>
|
|
);
|
|
|
|
export default Noticesel;
|