Skip to content

Commit e596fae

Browse files
committed
docs(mdx-components): add FeatureList comp
1 parent 3aa7773 commit e596fae

File tree

1 file changed

+4
-2
lines changed
  • apps/website/src/components/mdx-components

1 file changed

+4
-2
lines changed

apps/website/src/components/mdx-components/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import { PropsOf, Slot, component$ } from '@builder.io/qwik';
1+
import { Component, PropsOf, Slot, component$ } from '@builder.io/qwik';
22
import { cn } from '@qwik-ui/utils';
33
import { AnatomyTable } from '../anatomy-table/anatomy-table';
44
import { APITable } from '../api-table/api-table';
55
import { CodeCopy } from '../code-copy/code-copy';
66
import { CodeSnippet } from '../code-snippet/code-snippet';
7+
import { FeatureList } from '../feature-list/feature-list';
78
import { InstallSnippet } from '../install-snippet/install-snippet';
89
import { KeyboardInteractionTable } from '../keyboard-interaction-table/keyboard-interaction-table';
910
import { Note } from '../note/note';
@@ -42,7 +43,7 @@ export const components: Record<string, Component> = {
4243
{...props}
4344
class={[
4445
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',
4647
props.class,
4748
),
4849
]}
@@ -139,6 +140,7 @@ export const components: Record<string, Component> = {
139140
AnatomyTable,
140141
APITable,
141142
CodeSnippet,
143+
FeatureList,
142144
InstallSnippet,
143145
KeyboardInteractionTable,
144146
Note,

0 commit comments

Comments
 (0)