Skip to content

Commit a4ff84f

Browse files
committed
0.1.2
1 parent bc36d35 commit a4ff84f

File tree

11 files changed

+296
-853
lines changed

11 files changed

+296
-853
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "logicline"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Serhij S. <div@altertech.com>"]
66
license = "Apache-2.0"

ll-default-view/dist/index.html

Lines changed: 24 additions & 13 deletions
Large diffs are not rendered by default.

ll-default-view/package-lock.json

Lines changed: 47 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ll-default-view/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13+
"bmat": "^0.1.32",
1314
"logicline-view": "file:/opt/logicline/logicline-view",
1415
"react": "^19.0.0",
1516
"react-dom": "^19.0.0"
Lines changed: 15 additions & 0 deletions
Loading
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
const Icons = {
2+
copy: (
3+
<svg
4+
xmlns="http://www.w3.org/2000/svg"
5+
viewBox="0 0 115.77 122.88"
6+
width="22"
7+
height="22"
8+
fill="currentColor"
9+
>
10+
<path
11+
fillRule="evenodd"
12+
clipRule="evenodd"
13+
d="M89.62,13.96v7.73h12.19h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02v0.02
14+
v73.27v0.01h-0.02c-0.01,3.84-1.57,7.33-4.1,9.86c-2.51,2.5-5.98,4.06-9.82,4.07v0.02h-0.02h-61.7H40.1v-0.02
15+
c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82h-0.02v-0.02V92.51H13.96h-0.01v-0.02
16+
c-3.84-0.01-7.34-1.57-9.86-4.1c-2.5-2.51-4.06-5.98-4.07-9.82H0v-0.02V13.96v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86
17+
c2.51-2.5,5.98-4.06,9.82-4.07V0h0.02h61.7h0.01v0.02c3.85,0.01,7.34,1.57,9.86,4.1c2.5,2.51,4.06,5.98,4.07,9.82h0.02V13.96
18+
L89.62,13.96z M79.04,21.69v-7.73v-0.02h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02h-0.01h-61.7h-0.02
19+
v-0.02c-0.91,0-1.75,0.39-2.37,1.01c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v64.59v0.02h-0.02c0,0.91,0.39,1.75,1.01,2.37
20+
c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h12.19V35.65v-0.01h0.02c0.01-3.85,1.58-7.34,4.1-9.86c2.51-2.5,5.98-4.06,9.82-4.07
21+
v-0.02h0.02H79.04L79.04,21.69z M105.18,108.92V35.65v-0.02h0.02c0-0.91-0.39-1.75-1.01-2.37c-0.61-0.61-1.46-1-2.37-1v0.02
22+
h-0.01h-61.7h-0.02v-0.02c-0.91,0-1.75,0.39-2.37,1.01c-0.61,0.61-1,1.46-1,2.37h0.02v0.01v73.27v0.02h-0.02
23+
c0,0.91,0.39,1.75,1.01,2.37c0.61,0.61,1.46,1,2.37,1v-0.02h0.01h61.7h0.02v0.02c0.91,0,1.75-0.39,2.37-1.01
24+
c0.61-0.61,1-1.46,1-2.37h-0.02V108.92L105.18,108.92z"
25+
/>
26+
</svg>
27+
),
28+
close: (
29+
<svg
30+
xmlns="http://www.w3.org/2000/svg"
31+
x="0px"
32+
y="0px"
33+
width="25"
34+
height="25"
35+
viewBox="0 0 48 48"
36+
fill="currentColor"
37+
>
38+
<path
39+
d="M21.5 4.5H26.501V43.5H21.5z"
40+
transform="rotate(45.001 24 24)"
41+
></path>
42+
<path
43+
d="M21.5 4.5H26.5V43.501H21.5z"
44+
transform="rotate(135.008 24 24)"
45+
></path>
46+
</svg>
47+
),
48+
};
49+
50+
export default Icons;

0 commit comments

Comments
 (0)