PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.13.0
Code Block Pro – Beautiful Syntax Highlighting v1.13.0
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
← All changes | src/icons.tsx +28 -30 1.28.01.13.0 View file →
@@ -1,34 +1,32 @@
1 1 export const blockIcon = () => (
2 - <svg
3 - xmlns="http://www.w3.org/2000/svg"
4 - style={{ width: 24, height: 24 }}
5 - fill="none"
6 - viewBox="0 0 24 24"
7 - stroke="#1e1e1e"
8 - strokeWidth="2"
9 - >
10 - <path
11 - fill="none"
12 - strokeLinecap="round"
13 - strokeLinejoin="round"
14 - d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
15 - />
16 - </svg>
2 + <svg
3 + xmlns="http://www.w3.org/2000/svg"
4 + style={{ width: 24, height: 24 }}
5 + fill="none"
6 + viewBox="0 0 24 24"
7 + stroke="#1e1e1e"
8 + strokeWidth="2">
9 + <path
10 + fill="none"
11 + strokeLinecap="round"
12 + strokeLinejoin="round"
13 + d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
14 + />
15 + </svg>
17 16 );
18 17 export const languageIcon = () => (
19 - <svg
20 - xmlns="http://www.w3.org/2000/svg"
21 - style={{ width: 24, height: 24 }}
22 - fill="none"
23 - viewBox="0 0 24 24"
24 - stroke="#1e1e1e"
25 - strokeWidth={1.5}
26 - >
27 - <path
28 - fill="none"
29 - strokeLinecap="round"
30 - strokeLinejoin="round"
31 - d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5"
32 - />
33 - </svg>
18 + <svg
19 + xmlns="http://www.w3.org/2000/svg"
20 + style={{ width: 24, height: 24 }}
21 + fill="none"
22 + viewBox="0 0 24 24"
23 + stroke="#1e1e1e"
24 + strokeWidth={1.5}>
25 + <path
26 + fill="none"
27 + strokeLinecap="round"
28 + strokeLinejoin="round"
29 + d="M17.25 6.75L22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3l-4.5 16.5"
30 + />
31 + </svg>
34 32 );