-
-
Notifications
You must be signed in to change notification settings - Fork 224
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
Showing
7 changed files
with
55 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { InterfaceIcon } from "./icons"; | ||
|
||
export const IPInterface = () => { | ||
return ( | ||
<div className="stats shadow bg-primary-content stats-vertical lg:stats-horizontal"> | ||
<div className="stat gap-2"> | ||
<div className="stat-title">IP Inerface</div> | ||
<div className="flex flex-col gap-3"> | ||
<div className="flex flex-row items-center justify-start gap-2"> | ||
<span className="label-text text-slate-500 ">Set the network interface</span> | ||
<div className="flex flex-grow justify-end text-secondary"> | ||
<InterfaceIcon /> | ||
</div> | ||
</div> | ||
<input type="text" className="input input-primary w-full input-disabled" placeholder="Input DNS resolver: e.g. 8.8.8.8" /> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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,20 @@ | ||
import { DBIcon } from "./icons"; | ||
|
||
export const Resolver = () => { | ||
return ( | ||
<div className="stats shadow bg-primary-content stats-vertical lg:stats-horizontal"> | ||
<div className="stat gap-2"> | ||
<div className="stat-title">Resolver</div> | ||
<div className="flex flex-col gap-3"> | ||
<div className="flex flex-row items-center justify-start gap-2"> | ||
<span className="label-text text-slate-500 ">Set the DNS resolver</span> | ||
<div className="flex flex-grow justify-end text-secondary"> | ||
<DBIcon /> | ||
</div> | ||
</div> | ||
<input type="text" className="input input-primary w-full input-disabled" placeholder="Input DNS resolver: e.g. 8.8.8.8" /> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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