PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.27.3
Code Block Pro – Beautiful Syntax Highlighting v1.27.3
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.27.3, at src/editor/components/headers/Headlights.tsx

45 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { 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 <svg
15 xmlns="http://www.w3.org/2000/svg"
16 width={54}
17 height={14}
18 viewBox="0 0 54 14">
19 <g fill="none" fillRule="evenodd" transform="translate(1 1)">
20 <circle
21 cx="6"
22 cy="6"
23 r="6"
24 fill="#FF5F56"
25 stroke="#E0443E"
26 strokeWidth=".5"></circle>
27 <circle
28 cx="26"
29 cy="6"
30 r="6"
31 fill="#FFBD2E"
32 stroke="#DEA123"
33 strokeWidth=".5"></circle>
34 <circle
35 cx="46"
36 cy="6"
37 r="6"
38 fill="#27C93F"
39 stroke="#1AAB29"
40 strokeWidth=".5"></circle>
41 </g>
42 </svg>
43 </span>
44 );
45