-
Notifications
You must be signed in to change notification settings - Fork 27.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port LeftIcon RightIcon from ErrorPagination (#74098)
Ported LeftIcon and RightIcon used in the pagination.
- Loading branch information
1 parent
b40e1a2
commit f5912f7
Showing
3 changed files
with
32 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...s/next/src/client/components/react-dev-overlay/_experimental/internal/icons/LeftArrow.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export function LeftArrow({ title }: { title: string }) { | ||
return ( | ||
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<title>{title}</title> | ||
<path | ||
d="M6.99996 1.16666L1.16663 6.99999L6.99996 12.8333M12.8333 6.99999H1.99996H12.8333Z" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
) | ||
} |
14 changes: 14 additions & 0 deletions
14
.../next/src/client/components/react-dev-overlay/_experimental/internal/icons/RightArrow.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export function RightArrow({ title }: { title: string }) { | ||
return ( | ||
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<title>{title}</title> | ||
<path | ||
d="M6.99996 1.16666L12.8333 6.99999L6.99996 12.8333M1.16663 6.99999H12H1.16663Z" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
) | ||
} |