@rhavenside/baseline 2.0.3 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/base-line.css +1 -1
- package/dist/base-line.css.map +1 -1
- package/logo.svg +36 -0
- package/package.json +4 -2
package/logo.svg
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
width="32"
|
|
3
|
+
height="32"
|
|
4
|
+
viewBox="0 0 32 32"
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<rect width="32" height="32" rx="4" fill="#029adb"/>
|
|
9
|
+
<path
|
|
10
|
+
d="M8 12L16 8L24 12V20L16 24L8 20V12Z"
|
|
11
|
+
stroke="white"
|
|
12
|
+
stroke-width="1.5"
|
|
13
|
+
stroke-linecap="round"
|
|
14
|
+
stroke-linejoin="round"
|
|
15
|
+
fill="none"
|
|
16
|
+
/>
|
|
17
|
+
<line
|
|
18
|
+
x1="16"
|
|
19
|
+
y1="8"
|
|
20
|
+
x2="16"
|
|
21
|
+
y2="24"
|
|
22
|
+
stroke="white"
|
|
23
|
+
stroke-width="1.5"
|
|
24
|
+
stroke-linecap="round"
|
|
25
|
+
/>
|
|
26
|
+
<line
|
|
27
|
+
x1="8"
|
|
28
|
+
y1="12"
|
|
29
|
+
x2="24"
|
|
30
|
+
y2="12"
|
|
31
|
+
stroke="white"
|
|
32
|
+
stroke-width="1.5"
|
|
33
|
+
stroke-linecap="round"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rhavenside/baseline",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "A strict, layer-based design system with semantic tokens",
|
|
5
5
|
"main": "dist/base-line.css",
|
|
6
6
|
"module": "dist/js/index.js",
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
"./fonts/*": "./dist/fonts/*"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
|
-
"dist"
|
|
18
|
+
"dist",
|
|
19
|
+
"logo.svg",
|
|
20
|
+
"README.md"
|
|
19
21
|
],
|
|
20
22
|
"scripts": {
|
|
21
23
|
"build": "npm run build:css && npm run build:js && npm run copy:fonts",
|