-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add submit app button, refactor theme accent colors
- Loading branch information
1 parent
7ff1ec1
commit 885cd0f
Showing
21 changed files
with
102 additions
and
45 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from 'react' | ||
|
||
interface IIconProps { | ||
fillColor?: string | ||
className?: string | ||
} | ||
|
||
const ExternalLinkIcon: React.FC<IIconProps> = props => { | ||
return ( | ||
<svg | ||
className={props.className} | ||
width="12" | ||
height="12" | ||
viewBox="0 0 12 12" | ||
fill="currentcolor" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g> | ||
<path d="M1.99989 1.75C1.99989 1.33579 2.33567 1 2.74989 1H9.49989C10.3283 1 10.9999 1.67157 10.9999 2.5V9.25C10.9999 9.66421 10.6641 10 10.2499 10C9.83567 10 9.49989 9.66421 9.49989 9.25V4.16433C9.49989 3.9416 9.2306 3.83006 9.07311 3.98755L1.5606 11.5001C1.26771 11.7929 0.792837 11.7929 0.499944 11.5001C0.207051 11.2072 0.20705 10.7323 0.499943 10.4394L8.01256 2.92678C8.17005 2.76929 8.05851 2.5 7.83579 2.5H2.74989C2.33567 2.5 1.99989 2.16421 1.99989 1.75Z" /> | ||
</g> | ||
</svg> | ||
) | ||
} | ||
|
||
export default ExternalLinkIcon |
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
Oops, something went wrong.