@lateralus-ai/shipping-ui 2.0.0-dev.29 → 2.0.0-dev.30
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 +14 -14
- package/dist/index.esm.js +1082 -1079
- package/package.json +1 -1
- package/src/primitives/Logo.tsx +7 -6
package/package.json
CHANGED
package/src/primitives/Logo.tsx
CHANGED
|
@@ -24,15 +24,16 @@ const TechnicalGlyph = () => (
|
|
|
24
24
|
</>
|
|
25
25
|
);
|
|
26
26
|
|
|
27
|
+
// Exact Figma export (Logo → Compliance): filled "A" body + filled crescent.
|
|
27
28
|
const ComplianceGlyph = () => (
|
|
28
29
|
<>
|
|
29
|
-
<path d={ASK_CHIEF_A} fill="currentColor" />
|
|
30
30
|
<path
|
|
31
|
-
d="
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
d="M8.30335 5.84666L5.18335 14.2917H6.33835V14.2883C6.34002 14.2883 6.34168 14.29 6.34168 14.29L8.90668 11.7267H9.06668L11.6283 14.2917H12.8233L9.71668 5.84666H8.30502H8.30335ZM9.21502 10.4433H8.75668L7.15168 12.0483L8.89002 7.25166H9.10168L10.825 12.055L9.21668 10.4433H9.21502Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M8.98839 4.85833C9.87172 4.85833 10.6817 5.23 11.3117 5.84666H12.7967C11.9251 4.54666 10.5434 3.70667 8.98839 3.70667C7.43339 3.70667 6.05172 4.54666 5.18005 5.84666H6.66505C7.29339 5.23 8.10505 4.85833 8.98839 4.85833Z"
|
|
36
|
+
fill="currentColor"
|
|
36
37
|
/>
|
|
37
38
|
</>
|
|
38
39
|
);
|