@dxos/brand 0.8.3-main.7f5a14c → 0.8.3

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.
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill-rule: evenodd;
7
+ fill: currentColor;
8
+ }
9
+ </style>
10
+ </defs>
11
+ <path class="cls-1" d="M155.28,81.9c-25.43,0-46.12,20.69-46.1,46.13s21.16,46.08,46.5,46.08h34.97c1.98,0,3.72-1.28,4.32-3.16l7.74-24.37c.93-2.92-1.25-5.91-4.32-5.91h-42.89c-6.93,0-12.74-5.48-12.87-12.42s5.6-12.91,12.66-12.91h.1c1.98,0,3.73-1.28,4.32-3.17l7.68-24.37c.92-2.92-1.26-5.9-4.32-5.9h-7.78Z"/>
12
+ <path class="cls-1" d="M155.28,40.41c-11.82,0-23.29,2.32-34.1,6.89-10.43,4.41-19.8,10.73-27.84,18.76-8.04,8.04-14.35,17.4-18.76,27.84-4.57,10.81-6.89,22.28-6.89,34.1s2.32,23.29,6.89,34.1c4.41,10.43,10.73,19.8,18.76,27.84,8.04,8.04,17.4,14.35,27.84,18.76,10.81,4.57,22.28,6.89,34.1,6.89h22.06c1.98,0,3.72-1.28,4.32-3.16l7.74-24.37c.93-2.92-1.25-5.91-4.32-5.91h-29.33c-29.77,0-54.6-24.35-54.62-54.12-.01-29.87,24.28-54.18,54.15-54.18h13.04c1.98,0,3.73-1.28,4.32-3.17l7.68-24.37c.92-2.92-1.26-5.9-4.32-5.9h-20.72Z"/>
13
+ <path class="cls-1" d="M155.28.34c-17.23,0-33.95,3.38-49.7,10.04-15.2,6.43-28.86,15.63-40.57,27.35-11.72,11.72-20.92,25.37-27.35,40.57-6.66,15.75-10.04,32.47-10.04,49.7s3.38,33.95,10.04,49.7c6.43,15.2,15.63,28.86,27.35,40.57,11.72,11.72,25.37,20.92,40.57,27.35,15.75,6.66,32.47,10.04,49.7,10.04h9.48c1.98,0,3.72-1.28,4.32-3.16l7.74-24.37c.93-2.92-1.25-5.91-4.32-5.91h-17.22c-25.17,0-48.83-9.8-66.62-27.6-17.73-17.73-27.52-41.27-27.6-66.33s9.61-48.6,26.94-66.26,41.8-28.26,67.28-28.26h25.81c1.98,0,3.73-1.28,4.32-3.17l7.68-24.37c.92-2.92-1.26-5.9-4.32-5.9h-33.49Z"/>
14
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/brand",
3
- "version": "0.8.3-main.7f5a14c",
3
+ "version": "0.8.3",
4
4
  "description": "DXOS brand assets.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -33,15 +33,15 @@
33
33
  "@types/d3": "^7.4.3",
34
34
  "react": "~18.2.0",
35
35
  "react-dom": "~18.2.0",
36
- "@dxos/react-ui-theme": "0.8.3-main.7f5a14c",
37
- "@dxos/storybook-utils": "0.8.3-main.7f5a14c",
38
- "@dxos/react-ui": "0.8.3-main.7f5a14c"
36
+ "@dxos/react-ui": "0.8.3",
37
+ "@dxos/react-ui-theme": "0.8.3",
38
+ "@dxos/storybook-utils": "0.8.3"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@phosphor-icons/react": "^2.1.5",
42
42
  "react": "~18.2.0",
43
43
  "react-dom": "~18.2.0",
44
- "@dxos/react-ui": "0.8.3-main.7f5a14c",
45
- "@dxos/react-ui-theme": "0.8.3-main.7f5a14c"
44
+ "@dxos/react-ui": "0.8.3",
45
+ "@dxos/react-ui-theme": "0.8.3"
46
46
  }
47
47
  }
@@ -20,7 +20,7 @@ export default {
20
20
  };
21
21
 
22
22
  const Cell: FC<{ children: ReactNode; dark?: boolean }> = ({ children, dark }) => (
23
- <div className={mx('flex p-4 justify-center rounded-lg', dark ? 'bg-zinc-800 fill-zinc-50' : 'bg-white')}>
23
+ <div className={mx('flex p-4 justify-center rounded-md', dark ? 'bg-zinc-800 fill-zinc-50' : 'bg-white')}>
24
24
  {children}
25
25
  </div>
26
26
  );