-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Production Release of Patch issues (#681)
- Loading branch information
Showing
21 changed files
with
4,920 additions
and
7,704 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
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
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
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
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
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ on: | |
branches: [next] | ||
types: | ||
- closed | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_api: | ||
|
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
12 changes: 7 additions & 5 deletions
12
apps/web/assets/icons/Upgrade.icon.tsx → apps/web/assets/icons/OutLink.icon.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 |
---|---|---|
@@ -1,21 +1,23 @@ | ||
import { IconType } from '@types'; | ||
import { IconSizes } from 'config'; | ||
|
||
export const UpgradeIcon = ({ size = 'sm', color }: IconType) => { | ||
export const OutLinkIcon = ({ size = 'sm', color }: IconType) => { | ||
return ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={IconSizes[size]} | ||
height={IconSizes[size]} | ||
color={color} | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
className="lucide lucide-trending-up" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
> | ||
<polyline points="22 7 13.5 15.5 8.5 10.5 2 17" /> | ||
<polyline points="16 7 22 7 22 13" /> | ||
<path d="M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6" /> | ||
<path d="m21 3-9 9" /> | ||
<path d="M15 3h6v6" /> | ||
</svg> | ||
); | ||
}; |
Oops, something went wrong.