MCPcopy Create free account
hub / github.com/better-auth/examples / TableHeader

Function TableHeader

astro-example/src/components/ui/table.tsx:17–21  ·  view source on GitHub ↗
(props: ComponentProps<"thead">)

Source from the content-addressed store, hash-verified

15};
16
17export const TableHeader = (props: ComponentProps<"thead">) => {
18 const [local, rest] = splitProps(props, ["class"]);
19
20 return <thead class={cn("[&_tr]:border-b", local.class)} {...rest} />;
21};
22
23export const TableBody = (props: ComponentProps<"tbody">) => {
24 const [local, rest] = splitProps(props, ["class"]);

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected