11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
component Skeleton {
|
|
props {
|
|
height = "4"
|
|
rounded = "lg"
|
|
className = ""
|
|
}
|
|
view {
|
|
<div aria-hidden="true" class="animate-pulse bg-slate-200 dark:bg-slate-800 h-{height} rounded-{rounded} {className}"></div>
|
|
}
|
|
}
|