-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45a152d
commit 6bea21d
Showing
4 changed files
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import clsx from "clsx"; | ||
|
||
const Docker = ({ className }: React.ButtonHTMLAttributes<HTMLButtonElement>) => { | ||
return <sup className={clsx("text-[11px] text-white", className)}>🐳 DOCKER</sup>; | ||
return <sup className={clsx("text-[11px] text-white font-bold", className)}>🐳 DOCKER</sup>; | ||
}; | ||
|
||
export default Docker; |
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,7 +1,7 @@ | ||
import clsx from "clsx"; | ||
|
||
const Local = ({ className }: React.ButtonHTMLAttributes<HTMLButtonElement>) => { | ||
return <sup className={clsx("text-[11px] text-white", className)}>🖥️ MY COMPUTER</sup>; | ||
return <sup className={clsx("text-[11px] text-white font-bold", className)}>🖥️ MY COMPUTER</sup>; | ||
}; | ||
|
||
export default Local; |
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,7 +1,7 @@ | ||
import clsx from "clsx"; | ||
|
||
const PeerToPeer = ({ className }: React.ButtonHTMLAttributes<HTMLButtonElement>) => { | ||
return <sup className={clsx("text-[11px] text-white", className)}>🍐 PEER TO PEER</sup>; | ||
return <sup className={clsx("text-[11px] text-white font-bold", className)}>🍐 PEER TO PEER</sup>; | ||
}; | ||
|
||
export default PeerToPeer; |
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,7 +1,7 @@ | ||
import clsx from "clsx"; | ||
|
||
const PremNetwork = ({ className }: React.ButtonHTMLAttributes<HTMLButtonElement>) => { | ||
return <sup className={clsx("text-[11px] text-white", className)}>📡 PREM NETWORK</sup>; | ||
return <sup className={clsx("text-[11px] text-white font-bold", className)}>📡 PREM NETWORK</sup>; | ||
}; | ||
|
||
export default PremNetwork; |