-
Notifications
You must be signed in to change notification settings - Fork 4
Users nic rate #2047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Users nic rate #2047
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
78cc842
wip
ragnep 7142b8d
Merge branch 'main' into users-nic-rate
ragnep d027494
wip
ragnep 6e92505
wip
ragnep 7cdc33f
responsiveness work on mobile
ragnep e2ef07b
wip
ragnep 5474788
Merge branch 'main' into users-nic-rate
ragnep 9cb5f82
wip
ragnep d1794a2
Merge branch 'main' into users-nic-rate
ragnep 842c13c
Merge branch 'main' into users-nic-rate
ragnep 9d42157
wip
ragnep File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,42 @@ | ||
| export const FingerprintIcon = ({ | ||
| className, | ||
| }: { | ||
| readonly className?: string; | ||
| }) => ( | ||
| <svg | ||
| className={className} | ||
| viewBox="0 0 24 24" | ||
| fill="none" | ||
| stroke="currentColor" | ||
| strokeWidth="2" | ||
| strokeLinecap="round" | ||
| strokeLinejoin="round" | ||
| aria-hidden="true" | ||
| > | ||
| <path d="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" /> | ||
| <path d="M14 13.12c0 2.38 0 6.38-1 8.88" /> | ||
| <path d="M17.29 21.02c.12-.6.43-2.3.5-3.02" /> | ||
| <path d="M2 12a10 10 0 0 1 18-6" /> | ||
| <path d="M2 16h.01" /> | ||
| <path d="M21.8 16c.2-2 .131-5.354 0-6" /> | ||
| <path d="M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" /> | ||
| <path d="M8.65 22c.21-.66.45-1.32.57-2" /> | ||
| <path d="M9 6.8a6 6 0 0 1 9 5.2v2" /> | ||
| </svg> | ||
| ); | ||
|
|
||
| export function RateNicButton({ | ||
| onRateClick, | ||
| }: { | ||
| readonly onRateClick: () => void; | ||
| }) { | ||
| return ( | ||
| <button | ||
| type="button" | ||
| onClick={onRateClick} | ||
| className="tw-flex tw-flex-shrink-0 tw-cursor-pointer tw-items-center tw-gap-1.5 tw-rounded-lg tw-border tw-border-solid tw-border-emerald-600 tw-bg-emerald-600 tw-px-3 tw-py-2 tw-text-xs tw-font-bold tw-text-white tw-transition tw-duration-300 tw-ease-out hover:tw-border-emerald-500 hover:tw-bg-emerald-500" | ||
| > | ||
| Rate NIC | ||
| </button> | ||
| ); | ||
| } | ||
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.