File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
apps/website/src/components/mdx-components Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- import { PropsOf , Slot , component$ } from '@builder.io/qwik' ;
1
+ import { Component , PropsOf , Slot , component$ } from '@builder.io/qwik' ;
2
2
import { cn } from '@qwik-ui/utils' ;
3
3
import { AnatomyTable } from '../anatomy-table/anatomy-table' ;
4
4
import { APITable } from '../api-table/api-table' ;
5
5
import { CodeCopy } from '../code-copy/code-copy' ;
6
6
import { CodeSnippet } from '../code-snippet/code-snippet' ;
7
+ import { FeatureList } from '../feature-list/feature-list' ;
7
8
import { InstallSnippet } from '../install-snippet/install-snippet' ;
8
9
import { KeyboardInteractionTable } from '../keyboard-interaction-table/keyboard-interaction-table' ;
9
10
import { Note } from '../note/note' ;
@@ -42,7 +43,7 @@ export const components: Record<string, Component> = {
42
43
{ ...props }
43
44
class = { [
44
45
cn (
45
- 'mb-8 mt-20 scroll-mt-32 border-b-[1px] pb-2 text-2xl font-extrabold' ,
46
+ 'mb-8 mt-20 scroll-mt-32 border-b-2 pb-2 text-2xl font-extrabold' ,
46
47
props . class ,
47
48
) ,
48
49
] }
@@ -139,6 +140,7 @@ export const components: Record<string, Component> = {
139
140
AnatomyTable,
140
141
APITable,
141
142
CodeSnippet,
143
+ FeatureList,
142
144
InstallSnippet,
143
145
KeyboardInteractionTable,
144
146
Note,
You can’t perform that action at this time.
0 commit comments