mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
16 lines
474 B
Plaintext
16 lines
474 B
Plaintext
---
|
|
import Icon from '@ui/Icon.astro'
|
|
---
|
|
|
|
<!-- BEGIN THEME TOGGLE -->
|
|
<div class="nav-item">
|
|
<a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip" data-bs-placement="bottom">
|
|
<Icon name="moon" />
|
|
</a>
|
|
|
|
<a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip" data-bs-placement="bottom">
|
|
<Icon name="sun" />
|
|
</a>
|
|
</div>
|
|
<!-- END THEME TOGGLE -->
|