CloseRemind.tsx 1.9 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file CloseRemind 关闭提醒
 * @author Auto Generated by IconPark
 */

/* tslint:disable: max-line-length */
/* eslint-disable max-len */
import React from 'react';
import {ISvgIconProps, IconWrapper} from '../runtime';

export default IconWrapper(
    'close-remind',
    true,
    (props: ISvgIconProps) => (
        <svg
            width={props.size}
            height={props.size}
            viewBox="0 0 48 48"
            fill="none"
        >
21
            <path
22
                d="M7 6.5L41 44.5"
23
24
25
26
27
28
                stroke={props.colors[0]}
                strokeWidth={props.strokeWidth}
                strokeLinecap={props.strokeLinecap}
                strokeLinejoin={props.strokeLinejoin}
            />
            <path
29
30
31
32
33
                d="M24 2C21.7909 2 20 3.79086 20 6H28C28 3.79086 26.2091 2 24 2Z"
                fill={props.colors[0]}
            />
            <path
                d="M17.0703 38C17.5555 41.3923 20.473 44 23.9994 44C27.5259 44 30.4433 41.3923 30.9285 38H17.0703Z"
34
35
                stroke={props.colors[0]}
                strokeWidth={props.strokeWidth}
36
37
                strokeLinecap={props.strokeLinecap}
                strokeLinejoin={props.strokeLinejoin}
38
39
            />
            <path
40
41
42
43
44
                d="M30 38H6C6 38 11.5692 33.359 11.9765 20.5"
                stroke={props.colors[0]}
                strokeWidth={props.strokeWidth}
                strokeLinecap={props.strokeLinecap}
                strokeLinejoin={props.strokeLinejoin}
45
46
            />
            <path
47
                d="M41.9994 38C41.9994 38 35.9994 33 35.9994 19C35.9994 12.3726 30.6268 7 23.9994 7C21.4594 7 19.1036 7.78918 17.1641 9.13571"
48
49
50
51
52
                stroke={props.colors[0]}
                strokeWidth={props.strokeWidth}
                strokeLinecap={props.strokeLinecap}
                strokeLinejoin={props.strokeLinejoin}
            />
53
54
55
        </svg>
    )
);