@lateralus-ai/shipping-ui 2.0.0-dev.27 → 2.0.0-dev.29
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/dist/index.cjs +3 -3
- package/dist/index.esm.js +588 -585
- package/package.json +1 -1
- package/src/primitives/Logo.tsx +15 -4
package/package.json
CHANGED
package/src/primitives/Logo.tsx
CHANGED
|
@@ -8,18 +8,29 @@ export type LogoProps = {
|
|
|
8
8
|
muted?: boolean;
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
+
// The "A" body only — no topper. Technical adds a straight bar; Compliance
|
|
12
|
+
// adds a curved arc. Previously the bar lived inside this shared path, so the
|
|
13
|
+
// Compliance glyph rendered the technical bar (plus a faint arc) and looked
|
|
14
|
+
// identical to Technical.
|
|
11
15
|
const ASK_CHIEF_A =
|
|
12
|
-
"M9.89258 5.62793L13.2041 14.625H11.9316L9.20117 11.8926H9.03223L6.29785 14.623C6.29785 14.623 6.29573 14.6211 6.29395 14.6211V14.625H5.0625L8.38867 5.62793H9.89258ZM9.01172 7.12305L7.16016 12.2334L8.87109 10.5234H9.36133L11.0762 12.2402L9.23828 7.12305H9.
|
|
16
|
+
"M9.89258 5.62793L13.2041 14.625H11.9316L9.20117 11.8926H9.03223L6.29785 14.623C6.29785 14.623 6.29573 14.6211 6.29395 14.6211V14.625H5.0625L8.38867 5.62793H9.89258ZM9.01172 7.12305L7.16016 12.2334L8.87109 10.5234H9.36133L11.0762 12.2402L9.23828 7.12305H9.01172Z";
|
|
13
17
|
|
|
14
|
-
const
|
|
18
|
+
const TECHNICAL_BAR = "M12.6904 3.375V4.64355H5.61328V3.375H12.6904Z";
|
|
19
|
+
|
|
20
|
+
const TechnicalGlyph = () => (
|
|
21
|
+
<>
|
|
22
|
+
<path d={ASK_CHIEF_A} fill="currentColor" />
|
|
23
|
+
<path d={TECHNICAL_BAR} fill="currentColor" />
|
|
24
|
+
</>
|
|
25
|
+
);
|
|
15
26
|
|
|
16
27
|
const ComplianceGlyph = () => (
|
|
17
28
|
<>
|
|
18
29
|
<path d={ASK_CHIEF_A} fill="currentColor" />
|
|
19
30
|
<path
|
|
20
|
-
d="M6.2
|
|
31
|
+
d="M6.2 4.64355C7.4 3.54355 10.6 3.54355 11.8 4.64355"
|
|
21
32
|
stroke="currentColor"
|
|
22
|
-
strokeWidth="
|
|
33
|
+
strokeWidth="1.1"
|
|
23
34
|
fill="none"
|
|
24
35
|
strokeLinecap="round"
|
|
25
36
|
/>
|