({
children,
...rest
}: JSX.IntrinsicElements['span'])
| 39 | ...rest |
| 40 | }: JSX.IntrinsicElements['p']) => { |
| 41 | const styles = createStyles() |
| 42 | return ( |
| 43 | <p class={clsx(styles().section.description, rest.class)} {...rest}> |
| 44 | {children} |
| 45 | </p> |
| 46 | ) |
| 47 | } |
| 48 | |
| 49 | export const SectionIcon = ({ |
| 50 | children, |
| 51 | ...rest |
| 52 | }: JSX.IntrinsicElements['span']) => { |
| 53 | const styles = createStyles() |
| 54 | return ( |
nothing calls this directly
no test coverage detected