Skip to content

Commit

Permalink
fix: build missing component
Browse files Browse the repository at this point in the history
  • Loading branch information
vdhieu committed Dec 19, 2023
1 parent 2eff161 commit 0540371
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,3 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

components/icons/*.tsx
components/icons/*.ts
20 changes: 20 additions & 0 deletions components/icons/ArrowLink.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export default function ArrowLink({ className }: { className?: string }) {
return (
<svg
width="20"
height="21"
viewBox="0 0 20 21"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<g id="link">
<path
id="Vector"
d="M13.4127 7.8228L6.36905 14.8863C6.21032 15.045 6.02169 15.1244 5.80317 15.1244C5.58519 15.1244 5.39683 15.045 5.2381 14.8863C5.07936 14.7276 5 14.5389 5 14.3204C5 14.1024 5.07936 13.9141 5.2381 13.7553L12.3016 6.71169H6.26984C6.04497 6.71169 5.85635 6.63577 5.70397 6.48391C5.55212 6.33153 5.47619 6.14291 5.47619 5.91804C5.47619 5.69317 5.55212 5.50455 5.70397 5.35217C5.85635 5.20032 6.04497 5.12439 6.26984 5.12439H14.2063C14.4312 5.12439 14.6196 5.20032 14.7714 5.35217C14.9238 5.50455 15 5.69317 15 5.91804V13.8545C15 14.0794 14.9238 14.2678 14.7714 14.4196C14.6196 14.572 14.4312 14.6482 14.2063 14.6482C13.9815 14.6482 13.7931 14.572 13.6413 14.4196C13.4889 14.2678 13.4127 14.0794 13.4127 13.8545V7.8228Z"
fill="currentColor"
/>
</g>
</svg>
)
}

0 comments on commit 0540371

Please sign in to comment.