|
1 | 1 | export function DevEnvironmentIcon({ className }: { className?: string }) {
|
2 | 2 | return (
|
3 |
| - <svg className={className} viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> |
4 |
| - <g clipPath="url(#clip0_15347_71059)"> |
5 |
| - <circle cx="7" cy="7" r="2" fill="currentColor" /> |
6 |
| - <path |
7 |
| - d="M4.5 0.75H2.75C1.64543 0.75 0.75 1.64543 0.75 2.75V4.5" |
8 |
| - stroke="currentColor" |
9 |
| - strokeWidth="1.5" |
10 |
| - strokeLinecap="round" |
11 |
| - strokeLinejoin="round" |
12 |
| - /> |
13 |
| - <path |
14 |
| - d="M13.25 4.5L13.25 2.75C13.25 1.64543 12.3546 0.75 11.25 0.75L9.5 0.75" |
15 |
| - stroke="currentColor" |
16 |
| - strokeWidth="1.5" |
17 |
| - strokeLinecap="round" |
18 |
| - strokeLinejoin="round" |
19 |
| - /> |
20 |
| - <path |
21 |
| - d="M9.5 13.25L11.25 13.25C12.3546 13.25 13.25 12.3546 13.25 11.25L13.25 9.5" |
22 |
| - stroke="currentColor" |
23 |
| - strokeWidth="1.5" |
24 |
| - strokeLinecap="round" |
25 |
| - strokeLinejoin="round" |
26 |
| - /> |
27 |
| - <path |
28 |
| - d="M0.75 9.5L0.75 11.25C0.75 12.3546 1.64543 13.25 2.75 13.25L4.5 13.25" |
29 |
| - stroke="currentColor" |
30 |
| - strokeWidth="1.5" |
31 |
| - strokeLinecap="round" |
32 |
| - strokeLinejoin="round" |
33 |
| - /> |
34 |
| - </g> |
35 |
| - <defs> |
36 |
| - <clipPath id="clip0_15347_71059"> |
37 |
| - <rect width="14" height="14" fill="currentColor" /> |
38 |
| - </clipPath> |
39 |
| - </defs> |
| 3 | + <svg className={className} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 4 | + <circle cx="12" cy="12" r="3" fill="currentColor" /> |
| 5 | + <path |
| 6 | + d="M8.35714 3H5C3.89543 3 3 3.89543 3 5V8.35714" |
| 7 | + stroke="currentColor" |
| 8 | + strokeWidth="2" |
| 9 | + strokeLinecap="round" |
| 10 | + strokeLinejoin="round" |
| 11 | + /> |
| 12 | + <path |
| 13 | + d="M21 8.35714L21 5C21 3.89543 20.1046 3 19 3L15.6429 3" |
| 14 | + stroke="currentColor" |
| 15 | + strokeWidth="2" |
| 16 | + strokeLinecap="round" |
| 17 | + strokeLinejoin="round" |
| 18 | + /> |
| 19 | + <path |
| 20 | + d="M15.6429 21L19 21C20.1046 21 21 20.1046 21 19L21 15.6429" |
| 21 | + stroke="currentColor" |
| 22 | + strokeWidth="2" |
| 23 | + strokeLinecap="round" |
| 24 | + strokeLinejoin="round" |
| 25 | + /> |
| 26 | + <path |
| 27 | + d="M3 15.6429L3 19C3 20.1046 3.89543 21 5 21L8.35714 21" |
| 28 | + stroke="currentColor" |
| 29 | + strokeWidth="2" |
| 30 | + strokeLinecap="round" |
| 31 | + strokeLinejoin="round" |
| 32 | + /> |
| 33 | + </svg> |
| 34 | + ); |
| 35 | +} |
| 36 | + |
| 37 | +export function DevEnvironmentIconSmall({ className }: { className?: string }) { |
| 38 | + return ( |
| 39 | + <svg className={className} viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 40 | + <circle cx="10" cy="10" r="2" fill="currentColor" /> |
| 41 | + <path |
| 42 | + d="M7 3H5C3.89543 3 3 3.89543 3 5V7" |
| 43 | + stroke="currentColor" |
| 44 | + strokeWidth="2" |
| 45 | + strokeLinecap="round" |
| 46 | + strokeLinejoin="round" |
| 47 | + /> |
| 48 | + <path |
| 49 | + d="M17 7L17 5C17 3.89543 16.1046 3 15 3L13 3" |
| 50 | + stroke="currentColor" |
| 51 | + strokeWidth="2" |
| 52 | + strokeLinecap="round" |
| 53 | + strokeLinejoin="round" |
| 54 | + /> |
| 55 | + <path |
| 56 | + d="M13 17L15 17C16.1046 17 17 16.1046 17 15L17 13" |
| 57 | + stroke="currentColor" |
| 58 | + strokeWidth="2" |
| 59 | + strokeLinecap="round" |
| 60 | + strokeLinejoin="round" |
| 61 | + /> |
| 62 | + <path |
| 63 | + d="M3 13L3 15C3 16.1046 3.89543 17 5 17L7 17" |
| 64 | + stroke="currentColor" |
| 65 | + strokeWidth="2" |
| 66 | + strokeLinecap="round" |
| 67 | + strokeLinejoin="round" |
| 68 | + /> |
40 | 69 | </svg>
|
41 | 70 | );
|
42 | 71 | }
|
43 | 72 |
|
44 | 73 | export function ProdEnvironmentIcon({ className }: { className?: string }) {
|
45 | 74 | return (
|
46 |
| - <svg className={className} viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 75 | + <svg className={className} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 76 | + <path |
| 77 | + d="M12.5037 7.33603C12.3174 6.88799 11.6827 6.88799 11.4963 7.33603L10.4338 9.89064L7.6759 10.1117C7.1922 10.1505 6.99606 10.7542 7.36459 11.0698L9.46583 12.8698L8.82387 15.561C8.71128 16.033 9.22477 16.4061 9.63888 16.1532L12 14.711L14.3612 16.1532C14.7753 16.4061 15.2888 16.0331 15.1762 15.561L14.5343 12.8698L16.6355 11.0698C17.004 10.7542 16.8079 10.1505 16.3242 10.1117L13.5663 9.89064L12.5037 7.33603Z" |
| 78 | + fill="white" |
| 79 | + /> |
47 | 80 | <rect
|
48 |
| - x="0.75" |
49 |
| - y="0.75" |
50 |
| - width="12.5" |
51 |
| - height="12.5" |
52 |
| - rx="3.25" |
| 81 | + x="3" |
| 82 | + y="3" |
| 83 | + width="18" |
| 84 | + height="18" |
| 85 | + rx="2" |
53 | 86 | stroke="currentColor"
|
54 |
| - strokeWidth="1.5" |
| 87 | + strokeWidth="2" |
55 | 88 | strokeLinecap="round"
|
56 | 89 | strokeLinejoin="round"
|
57 | 90 | />
|
58 |
| - <g clipPath="url(#clip0_15515_83281)"> |
59 |
| - <path |
60 |
| - fillRule="evenodd" |
61 |
| - clipRule="evenodd" |
62 |
| - d="M7.34731 4.15348C7.21887 3.84467 6.78141 3.84467 6.65298 4.15348L5.92066 5.91419L4.01982 6.06658C3.68644 6.0933 3.55126 6.50935 3.80526 6.72693L5.2535 7.96749L4.81104 9.82238C4.73344 10.1477 5.08735 10.4048 5.37277 10.2305L7.00014 9.23651L8.62752 10.2305C8.91294 10.4048 9.26685 10.1477 9.18925 9.82238L8.74679 7.96749L10.195 6.72693C10.449 6.50935 10.3138 6.0933 9.98046 6.06658L8.07963 5.91419L7.34731 4.15348Z" |
63 |
| - fill="currentColor" |
64 |
| - /> |
65 |
| - </g> |
66 |
| - <defs> |
67 |
| - <clipPath id="clip0_15515_83281"> |
68 |
| - <rect width="8" height="8" fill="currentColor" transform="translate(3 3)" /> |
69 |
| - </clipPath> |
70 |
| - </defs> |
| 91 | + </svg> |
| 92 | + ); |
| 93 | +} |
| 94 | + |
| 95 | +export function ProdEnvironmentIconSmall({ className }: { className?: string }) { |
| 96 | + return ( |
| 97 | + <svg className={className} viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 98 | + <rect |
| 99 | + x="3" |
| 100 | + y="3" |
| 101 | + width="14" |
| 102 | + height="14" |
| 103 | + rx="3" |
| 104 | + stroke="currentColor" |
| 105 | + strokeWidth="2" |
| 106 | + strokeLinecap="round" |
| 107 | + strokeLinejoin="round" |
| 108 | + /> |
| 109 | + <path |
| 110 | + d="M10.4174 6.23514C10.263 5.86384 9.73701 5.86384 9.58258 6.23514L8.70207 8.35213L6.4166 8.53536C6.01575 8.56749 5.85322 9.06773 6.15862 9.32934L7.89991 10.8209L7.36792 13.0512C7.27461 13.4423 7.70014 13.7515 8.04332 13.5419L10 12.3467L11.9567 13.5419C12.2999 13.7515 12.7254 13.4423 12.6321 13.0512L12.1001 10.8209L13.8414 9.32934C14.1468 9.06773 13.9842 8.56749 13.5834 8.53536L11.2979 8.35213L10.4174 6.23514Z" |
| 111 | + fill="currentColor" |
| 112 | + /> |
71 | 113 | </svg>
|
72 | 114 | );
|
73 | 115 | }
|
74 | 116 |
|
75 | 117 | export function DeployedEnvironmentIcon({ className }: { className?: string }) {
|
76 | 118 | return (
|
77 |
| - <svg className={className} viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 119 | + <svg className={className} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 120 | + <circle cx="12" cy="12" r="3" fill="currentColor" /> |
| 121 | + <rect |
| 122 | + x="3" |
| 123 | + y="3" |
| 124 | + width="18" |
| 125 | + height="18" |
| 126 | + rx="2" |
| 127 | + stroke="currentColor" |
| 128 | + strokeWidth="2" |
| 129 | + strokeLinecap="round" |
| 130 | + strokeLinejoin="round" |
| 131 | + /> |
| 132 | + </svg> |
| 133 | + ); |
| 134 | +} |
| 135 | + |
| 136 | +export function DeployedEnvironmentIconSmall({ className }: { className?: string }) { |
| 137 | + return ( |
| 138 | + <svg className={className} viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 139 | + <circle cx="10" cy="10" r="2" fill="currentColor" /> |
78 | 140 | <rect
|
79 |
| - x="0.75" |
80 |
| - y="0.75" |
81 |
| - width="12.5" |
82 |
| - height="12.5" |
83 |
| - rx="3.25" |
| 141 | + x="3" |
| 142 | + y="3" |
| 143 | + width="14" |
| 144 | + height="14" |
| 145 | + rx="3" |
84 | 146 | stroke="currentColor"
|
85 |
| - strokeWidth="1.5" |
| 147 | + strokeWidth="2" |
86 | 148 | strokeLinecap="round"
|
87 | 149 | strokeLinejoin="round"
|
88 | 150 | />
|
89 |
| - <circle cx="7" cy="7" r="2" fill="currentColor" /> |
90 | 151 | </svg>
|
91 | 152 | );
|
92 | 153 | }
|
0 commit comments