Cards 卡片组件
示例
用法
Markdown
import { Cards, Card } from 'nextra/components'
import { CardsIcon, OneIcon, WarningIcon } from '../../icons'
<Cards>
<Card icon={<WarningIcon />} title="提示" href="/docs/guide/built-ins/callout" />
<Card icon={<CardsIcon />} title="选项卡" href="/docs/guide/built-ins/tabs" />
<Card icon={<OneIcon />} title="步骤" href="/docs/guide/built-ins/steps" />
</Cards>