({
children,
...rest
}: JSX.IntrinsicElements['p'])
| 27 | <h3 |
| 28 | data-tsd-separator |
| 29 | class={clsx(styles().section.title, rest.class)} |
| 30 | {...rest} |
| 31 | > |
| 32 | {children} |
| 33 | </h3> |
| 34 | ) |
| 35 | } |
| 36 | |
| 37 | export const SectionDescription = ({ |
| 38 | children, |
| 39 | ...rest |
| 40 | }: JSX.IntrinsicElements['p']) => { |
| 41 | const styles = createStyles() |
| 42 | return ( |
nothing calls this directly
no test coverage detected