({
children,
class: className,
...rest
}: JSX.IntrinsicElements['header'])
| 3 | import type { JSX } from 'solid-js/jsx-runtime' |
| 4 | |
| 5 | export function Header({ |
| 6 | children, |
| 7 | class: className, |
| 8 | ...rest |
| 9 | }: JSX.IntrinsicElements['header']) { |
| 10 | const styles = createStyles() |
| 11 | return ( |
| 12 | <header |
| 13 | data-tsd-surface |
| 14 | data-tsd-separator |
| 15 | class={clsx(styles().header.row, 'tsqd-header', className)} |
| 16 | {...rest} |
| 17 | > |
| 18 | {children} |
| 19 | </header> |
| 20 | ) |
| 21 | } |
| 22 |
nothing calls this directly
no test coverage detected