Skip to content

Commit

Permalink
[uma-bridge] ConfirmQuoteTransferDetails (#13374)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 3c7c9127089992a46a4966df93632aea0dd4e5c9
  • Loading branch information
coreymartin authored and Lightspark Eng committed Nov 20, 2024
1 parent 5882602 commit 561d3f8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions packages/ui/src/icons/ChevronDown.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { type PathProps } from "./types.js";

export function ChevronDown({
strokeWidth = "1.5",
strokeLinecap = "round",
strokeLinejoin = "round",
}: PathProps) {
return (
<svg
width="100%"
viewBox="0 0 11 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.5 1L5.5 5L9.5 1"
stroke="currentColor"
strokeWidth={strokeWidth}
strokeLinecap={strokeLinecap}
strokeLinejoin={strokeLinejoin}
/>
</svg>
);
}
1 change: 1 addition & 0 deletions packages/ui/src/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export { CheckmarkCircleTier1 } from "./CheckmarkCircleTier1.js";
export { CheckmarkCircleTier2 } from "./CheckmarkCircleTier2.js";
export { CheckmarkCircleTier3 } from "./CheckmarkCircleTier3.js";
export { Chevron } from "./Chevron.js";
export { ChevronDown } from "./ChevronDown.js";
export { ChevronLeft } from "./ChevronLeft.js";
export { ChevronRight } from "./ChevronRight.js";
export { CircleCheck } from "./CircleCheck.js";
Expand Down

0 comments on commit 561d3f8

Please sign in to comment.