Files
WRNexusJS/packages/ui/components/table.wrn
T
2026-07-19 13:38:23 +05:30

10 lines
331 B
Plaintext

component Table {
props {
caption = "Data table"
responsive = true
}
view {
<div class="w-full overflow-x-auto rounded-2xl border border-slate-200 dark:border-slate-800"><table class="w-full min-w-[640px] border-collapse text-left text-sm"><caption class="sr-only">{caption}</caption><slot /></table></div>
}
}