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
--- | |
/* | |
# Tab View Component | |
> requirement: Tailwind CSS (Vite Plugin) | |
## Usage | |
```astro | |
<Tabs> | |
<div slot="tab-1" id="first">Tab 1</div> | |
<div slot="panel-1">Content 1</div> | |
<div slot="tab-2" id="second">Tab 1</div> |
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
os_icon="" | |
if [ "$(uname -s)" = "Darwin" ]; then | |
os_icon="" | |
typeset -U path PATH | |
os_arch_prompt="%F{6}macOS%f⟨%F{13}$(uname -m)%f⟩" | |
elif [ "$(uname -s)" = "Linux" ]; then | |
os_icon="" | |
os_arch_prompt="%F{6}$(uname -s)%f⟨%F{13}$(uname -m)%f⟩" | |
else | |
os_icon="" |