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

Function SheetHeader

astro-example/src/components/ui/sheet.tsx:122–134  ·  view source on GitHub ↗
(props: ComponentProps<"div">)

Source from the content-addressed store, hash-verified

120};
121
122export const SheetHeader = (props: ComponentProps<"div">) => {
123 const [local, rest] = splitProps(props, ["class"]);
124
125 return (
126 <div
127 class={cn(
128 "flex flex-col space-y-2 text-center sm:text-left",
129 local.class,
130 )}
131 {...rest}
132 />
133 );
134};
135
136export const SheetFooter = (props: ComponentProps<"div">) => {
137 const [local, rest] = splitProps(props, ["class"]);

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected