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

44 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
3 export const Headlights = ({ bgColor }: Partial<Attributes>) => (
4 <span
5 style={{
6 display: 'block',
7 padding: '16px 0 0 16px',
8 marginBottom: '-1px',
9 width: '100%',
10 textAlign: 'left',
11 backgroundColor: bgColor,
12 }}>
13 <svg
14 xmlns="http://www.w3.org/2000/svg"
15 width={54}
16 height={14}
17 viewBox="0 0 54 14">
18 <g fill="none" fillRule="evenodd" transform="translate(1 1)">
19 <circle
20 cx="6"
21 cy="6"
22 r="6"
23 fill="#FF5F56"
24 stroke="#E0443E"
25 strokeWidth=".5"></circle>
26 <circle
27 cx="26"
28 cy="6"
29 r="6"
30 fill="#FFBD2E"
31 stroke="#DEA123"
32 strokeWidth=".5"></circle>
33 <circle
34 cx="46"
35 cy="6"
36 r="6"
37 fill="#27C93F"
38 stroke="#1AAB29"
39 strokeWidth=".5"></circle>
40 </g>
41 </svg>
42 </span>
43 );
44