forked from alibaba/lowcode-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicon.tsx
More file actions
43 lines (41 loc) · 3.12 KB
/
icon.tsx
File metadata and controls
43 lines (41 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import * as React from 'react';
export const IconQuestion = (
<svg
viewBox="0 0 1024 1024"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
>
<path fill='currentColor' d="M512 784.352m-48 0a1.5 1.5 0 1 0 96 0 1.5 1.5 0 1 0-96 0Z"></path>
<path fill='currentColor' d="M512 960C264.96 960 64 759.04 64 512S264.96 64 512 64s448 200.96 448 448S759.04 960 512 960zM512 128.288C300.416 128.288 128.288 300.416 128.288 512c0 211.552 172.128 383.712 383.712 383.712 211.552 0 383.712-172.16 383.712-383.712C895.712 300.416 723.552 128.288 512 128.288z"></path>
<path fill='currentColor' d="M512 673.696c-17.664 0-32-14.336-32-32l0-54.112c0-52.352 40-92.352 75.328-127.648C581.216 434.016 608 407.264 608 385.92c0-53.344-43.072-96.736-96-96.736-53.824 0-96 41.536-96 94.56 0 17.664-14.336 32-32 32s-32-14.336-32-32c0-87.424 71.776-158.56 160-158.56s160 72.096 160 160.736c0 47.904-36.32 84.192-71.424 119.296C572.736 532.992 544 561.728 544 587.552l0 54.112C544 659.328 529.664 673.696 512 673.696z"></path>
</svg>
);
export const IconLink = (
<svg
viewBox="0 0 1024 1024"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
style={{ verticalAlign: 'middle', marginRight: 4 }}
width="16"
height="16"
>
<path d="M618.24 439.381333a152.746667 152.746667 0 0 1 0 216l-135.893333 135.893334a163.370667 163.370667 0 1 1-231.04-231.04l66.922666-66.944 45.269334 45.269333-66.944 66.944a99.370667 99.370667 0 1 0 140.522666 140.522667l135.893334-135.893334a88.746667 88.746667 0 0 0 0-125.482666z m182.528-197.589333a163.370667 163.370667 0 0 1 0 231.04L733.866667 539.776l-45.269334-45.248 66.944-66.944a99.370667 99.370667 0 1 0-140.522666-140.522667l-135.893334 135.893334a88.746667 88.746667 0 0 0 0 125.482666l-45.269333 45.269334a152.746667 152.746667 0 0 1 0-216l135.893333-135.893334a163.370667 163.370667 0 0 1 231.04 0z"></path>
</svg>
)
export const IconBug = (
<svg
style={{ verticalAlign: 'middle', marginRight: 4 }}
xmlns="http://www.w3.org/2000/svg"
width="14"
height="14"
className="icon"
viewBox="0 0 1024 1024"
>
<path
d="M810.667 597.333H896A42.667 42.667 0 00896 512h-85.333v-42.667a219.733 219.733 0 00-8.96-58.026 213.333 213.333 0 00136.96-197.974 42.667 42.667 0 00-85.334 0 128 128 0 01-91.306 122.454 213.333 213.333 0 00-79.36-62.72 110.08 110.08 0 000-17.067 170.667 170.667 0 00-341.334 0 110.08 110.08 0 000 17.067 213.333 213.333 0 00-81.066 62.72 128 128 0 01-89.6-122.454 42.667 42.667 0 00-85.334 0 213.333 213.333 0 00136.96 197.974 219.733 219.733 0 00-8.96 58.026V512H128a42.667 42.667 0 000 85.333h85.333V640a298.667 298.667 0 005.974 58.88A213.333 213.333 0 0085.333 896a42.667 42.667 0 0085.334 0 128 128 0 0177.226-116.907 298.667 298.667 0 00528.214 0A128 128 0 01853.333 896a42.667 42.667 0 0085.334 0 213.333 213.333 0 00-133.974-197.12 298.667 298.667 0 005.974-58.88zM469.333 849.067A213.333 213.333 0 01298.667 640V469.333a128 128 0 01128-128h42.666zM426.667 256a85.333 85.333 0 01170.666 0zm298.666 384a213.333 213.333 0 01-170.666 209.067V341.333h42.666a128 128 0 01128 128z"
fill="currentColor"
></path>
</svg>
)