-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created "dataDisplay" tag & added the "command" example (#55)
* Created "dataDisplay" tag & added the "command" example * make more concise using join, and move to input tag --------- Co-authored-by: Willian Pinheiro <willpinhaaa@gmail.com>
- Loading branch information
1 parent
2ca22db
commit 1ecfee4
Showing
2 changed files
with
19 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<div class="join rounded-lg border border-[oklch(var(--bc)/.2)] divide-x divide-[oklch(var(--bc)/.2)]"> | ||
<!-- Command icon --> | ||
<div class="join-item py-3 px-4"> | ||
<i class="fa fa-terminal text-lg text-info" aria-hidden="true"></i> | ||
</div> | ||
|
||
<!-- Command text --> | ||
<div class="join-item p-3 pr-20"> | ||
npm install daisyui | ||
</div> | ||
|
||
<!-- Copy button --> | ||
<div class="join-item tooltip tooltip-right" data-tip="Copy"> | ||
<button class="btn btn-ghost join-item"> | ||
<i class="fa-solid fa-copy text-lg text-info" aria-hidden="true"></i> | ||
</button> | ||
</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