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 / buttons / copy / TwoSquares.tsx

TwoSquares.tsx in Code Block Pro – Beautiful Syntax Highlighting 1.28.0, at src/editor/components/buttons/copy/TwoSquares.tsx

25 lines 652 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export const TwoSquares = () => (
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="currentColor"
8 strokeWidth="2"
9 >
10 <path
11 className="with-check"
12 strokeLinecap="round"
13 strokeLinejoin="round"
14 d="M4.5 12.75l6 6 9-13.5"
15 />
16
17 <path
18 className="without-check"
19 strokeLinecap="round"
20 strokeLinejoin="round"
21 d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"
22 />
23 </svg>
24 );
25