({
children,
...rest
}: JSX.IntrinsicElements['h3'])
| 15 | > |
| 16 | {children} |
| 17 | </section> |
| 18 | ) |
| 19 | } |
| 20 | |
| 21 | export const SectionTitle = ({ |
| 22 | children, |
| 23 | ...rest |
| 24 | }: JSX.IntrinsicElements['h3']) => { |
| 25 | const styles = createStyles() |
| 26 | return ( |
| 27 | <h3 |
| 28 | data-tsd-separator |
| 29 | class={clsx(styles().section.title, rest.class)} |
| 30 | {...rest} |
nothing calls this directly
no test coverage detected