PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.28.0
Code Block Pro – Beautiful Syntax Highlighting v1.28.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
code-block-pro / src / editor / components / headers / Headlights.tsx

Headlights.tsx in Code Block Pro – Beautiful Syntax Highlighting 1.28.0, at src/editor/components/headers/Headlights.tsx

50 lines 936 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import type { Attributes } from '../../../types';
2 import { findBackgroundColor } from '../../../util/colors';
3
4 export const Headlights = (attributes: Attributes) => (
5 <span
6 style={{
7 display: 'block',
8 padding: '16px 0 0 16px',
9 marginBottom: '-1px',
10 width: '100%',
11 textAlign: 'left',
12 backgroundColor: findBackgroundColor(attributes),
13 }}
14 >
15 <svg
16 xmlns="http://www.w3.org/2000/svg"
17 width={54}
18 height={14}
19 viewBox="0 0 54 14"
20 >
21 <g fill="none" fillRule="evenodd" transform="translate(1 1)">
22 <circle
23 cx="6"
24 cy="6"
25 r="6"
26 fill="#FF5F56"
27 stroke="#E0443E"
28 strokeWidth=".5"
29 ></circle>
30 <circle
31 cx="26"
32 cy="6"
33 r="6"
34 fill="#FFBD2E"
35 stroke="#DEA123"
36 strokeWidth=".5"
37 ></circle>
38 <circle
39 cx="46"
40 cy="6"
41 r="6"
42 fill="#27C93F"
43 stroke="#1AAB29"
44 strokeWidth=".5"
45 ></circle>
46 </g>
47 </svg>
48 </span>
49 );
50