-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app): fetchX issues solve and type selecting new UI
- Loading branch information
Showing
8 changed files
with
123 additions
and
58 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
'use client'; | ||
|
||
import React from 'react'; | ||
|
||
type Props = {}; | ||
|
||
// eslint-disable-next-line no-unused-vars | ||
export const ModernSVG: React.FC<Props> = (_props) => { | ||
return ( | ||
<svg | ||
className='fill-inherit w-16 p-2' | ||
viewBox='0 0 256 256' | ||
fill='none' | ||
xmlns='http://www.w3.org/2000/svg'> | ||
<path | ||
fillRule='evenodd' | ||
clipRule='evenodd' | ||
d='M36.9999 200.555L36.9999 53.5382C36.9999 45.7881 37.8456 38.1462 40.4754 31.5932C43.2491 24.6819 48.7293 17.5261 58.1536 14.9272C66.7205 12.5646 74.6932 15.1117 80.3278 17.9146C86.177 20.8242 91.9096 25.1867 97.3719 30.1754L206.802 127.18L206.831 127.206C215.513 134.974 218.973 146.852 219.249 156.193C219.499 164.624 217.043 180.451 202.058 186.721C196.233 189.158 189.241 189.409 184.872 189.517C182.271 189.581 179.47 189.583 176.75 189.585L176.669 189.585C173.855 189.587 171.035 189.589 168.123 189.644C156.173 189.87 144.847 191.009 135.657 195.155C126.54 199.268 118.368 206.962 110.329 215.834C108.932 217.375 107.289 219.24 105.619 221.136C103.29 223.779 100.909 226.483 99.0674 228.453C95.9771 231.761 91.0028 236.908 84.9645 239.632C76.991 243.229 69.1452 242.016 63.3611 239.571C57.7622 237.204 53.1818 233.389 49.7415 229.65C43.3127 222.664 37.1632 211.771 37.0017 200.679L36.9999 200.555ZM85.9973 42.81C66.4624 24.9296 53.9998 26.4621 53.9999 53.5382L53.9999 200.431C54.1607 211.478 67.8509 228.703 77.9736 224.136C81.9089 222.361 86.6634 216.95 92.4759 210.336C101.615 199.936 113.369 186.56 128.666 179.659C144.291 172.61 162.649 172.596 176.614 172.585C185.015 172.579 191.827 172.574 195.496 171.038C205.263 166.951 203.758 147.267 195.496 139.875L85.9973 42.81Z' | ||
/> | ||
</svg> | ||
); | ||
}; |
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,22 @@ | ||
'use client'; | ||
|
||
import React from 'react'; | ||
|
||
type Props = {}; | ||
|
||
// eslint-disable-next-line no-unused-vars | ||
export const OriginalSVG: React.FC<Props> = (_props) => { | ||
return ( | ||
<svg | ||
className='fill-inherit w-16 p-2' | ||
viewBox='0 0 256 256' | ||
fill='none' | ||
xmlns='http://www.w3.org/2000/svg'> | ||
<path | ||
fillRule='evenodd' | ||
clipRule='evenodd' | ||
d='M53.9986 15.2881L231.789 172.408L125.988 174.809L54.0074 250.574L53.9986 15.2881ZM118.534 157.974L188 156.398L71 53.0001L71.0058 208L118.534 157.974Z' | ||
/> | ||
</svg> | ||
); | ||
}; |
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