feat(dashboard, js-sdk, types): receive return e2e (#8305)

**What**
- receive return flow
- order summary section adjustments
- fix received item in summary
- activity event

---

CLOSES TRI-79 CC-256
This commit is contained in:
Frane Polić
2024-08-01 18:29:11 +00:00
committed by GitHub
parent 7ae1d80380
commit 2280d31396
21 changed files with 1536 additions and 167 deletions
@@ -0,0 +1,37 @@
import * as React from "react"
import type { IconProps } from "../types"
const HeartBroken = React.forwardRef<SVGSVGElement, IconProps>(
({ color = "currentColor", ...props }, ref) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={16}
height={16}
fill="none"
ref={ref}
{...props}
>
<g id="heart-broken">
<path
d="M8.24998 3.47314L6.4722 5.72203L10.0278 7.49981L8.24998 9.27759"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
/>
<path
d="M7.83132 13.0306C8.09532 13.1683 8.40376 13.1683 8.66776 13.0306C10.0633 12.3026 14.4713 9.66434 14.4713 5.37456C14.4784 3.49011 12.9567 1.95589 11.0704 1.94434C9.93532 1.95856 8.88021 2.531 8.24998 3.47322C7.61887 2.531 6.56376 1.95856 5.42954 1.94434C3.54243 1.95589 2.02154 3.49011 2.02865 5.37456C2.02865 9.66434 6.43576 12.3026 7.83132 13.0306Z"
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
/>
</g>
</svg>
)
}
)
HeartBroken.displayName = "HeartBroken"
export default HeartBroken
@@ -164,6 +164,7 @@ export { default as GridList } from "./grid-list"
export { default as HandTruck } from "./hand-truck"
export { default as Hashtag } from "./hashtag"
export { default as Heart } from "./heart"
export { default as HeartBroken } from "./heart-broken"
export { default as History } from "./history"
export { default as InboxSolid } from "./inbox-solid"
export { default as InformationCircle } from "./information-circle"