Skip to content

Commit

Permalink
i18n(ja): Update components.mdx (#1206)
Browse files Browse the repository at this point in the history
Co-authored-by: HiDeoo <[email protected]>
  • Loading branch information
morinokami and HiDeoo authored Dec 2, 2023
1 parent f39ab83 commit 9e86187
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/src/content/docs/ja/guides/components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: StarlightにおけるMDXでのコンポーネントの利用。

```mdx
---
# src/content/docs/index.mdx
# src/content/docs/example.mdx
title: Welcome to my docs
---

Expand All @@ -33,7 +33,7 @@ StarlightはAstro製であるため、[サポート対象のUIフレームワー

Starlightは、Markdownコンテンツにデフォルトのスタイルを適用します。たとえば、要素間にマージンを追加します。これらのスタイルがコンポーネントの見た目と競合する場合は、`not-content`クラスをコンポーネントに設定してスタイルを無効化してください。

```astro
```astro 'class="not-content"'
---
// src/components/Example.astro
---
Expand All @@ -54,6 +54,8 @@ import { Tabs, TabItem } from '@astrojs/starlight/components';
`<Tabs>``<TabItem>`コンポーネントを使用して、タブインターフェースを表示できます。各`<TabItem>`は、ユーザーに表示する`label`を必要とします。

```mdx
# src/content/docs/example.mdx

import { Tabs, TabItem } from '@astrojs/starlight/components';

<Tabs>
Expand All @@ -78,6 +80,8 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
`<Card>``title`を必須とし、また任意で[Starlightの組み込みアイコンの1つ](#すべてのアイコン)を名前に設定した`icon`属性を含められます。

```mdx
# src/content/docs/example.mdx

import { Card, CardGrid } from '@astrojs/starlight/components';

<Card title="確認しよう">強調したい興味深いコンテンツ。</Card>
Expand Down Expand Up @@ -125,6 +129,8 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
十分なスペースがある場合、`<CardGrid>`により複数の`<LinkCard>`をグループ化して、カードを並べて表示できます。

```mdx
# src/content/docs/example.mdx

import { LinkCard, CardGrid } from '@astrojs/starlight/components';

<LinkCard
Expand Down Expand Up @@ -170,6 +176,8 @@ Starlightは、`<Icon>`コンポーネントを通じてコンテンツ内に表
`<Icon>`[`name`](#すべてのアイコン)を必須とし、任意で`label``size``color`属性を含められます。

```mdx
# src/content/docs/example.mdx

import { Icon } from '@astrojs/starlight/components';

<Icon name="star" color="goldenrod" size="2rem" />
Expand Down

0 comments on commit 9e86187

Please sign in to comment.