OOKNET                             [ /  search the index  ]  
──────────────────────────────────────────────────────────────────────────────────────
══════════════════════════════════════════════════════════════════════════════════════
OOKNET   [ /  search  ]  
────────────────────────────────────────────────
════════════════════════════════════════════════
 
 
master @ 13 LINES
 
[ HISTORY ]  [ UP ]
 

---
interface Props {
  class?: string;
  [key: string]: any; // Allow data-* attributes
}

const { class: className = "", ...attrs } = Astro.props;
---

<div class={`table-row ${className}`.trim()} {...attrs}>
  <slot />
</div>

---
interface Props {
  class?: string;
  [key: string]: any; // Allow data-* attrib
utes
}

const { class: className = "", ...attrs } = 
Astro.props;
---

<div class={`table-row ${className}`.trim()}
 {...attrs}>
  <slot />
</div>
 
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET