Skip to content

Commit

Permalink
as prop has a default value
Browse files Browse the repository at this point in the history
Signed-off-by: 8845musign <hiroki.yokouchi@dr-ubie.com>
  • Loading branch information
8845musign committed Apr 21, 2024
1 parent f72c54d commit 0f845d5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/Heading/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type Props = {
* レンダリングされるHTML要素
* @default p
*/
as: HTMLTagname;
as?: HTMLTagname;
/**
* テキストのカラーバリエーション
* @default secondary
Expand Down
20 changes: 10 additions & 10 deletions src/stories/Heading.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,42 @@ type Story = StoryObj<typeof Heading>;
export const Default: Story = {
render: () => (
<Stack spacing="md">
<Heading as="p" size="xs">
<Heading size="xs">
xs: スマートフォン問診
</Heading>
<Heading as="p" size="xs">
<Heading size="xs">
xs: スマートフォン問診を利用できる
<br />
近くの医療機関から調べる
</Heading>
<Heading as="p" size="sm">
<Heading size="sm">
sm: スマートフォン問診
</Heading>
<Heading as="p" size="sm">
<Heading size="sm">
sm: スマートフォン問診を利用できる
<br />
近くの医療機関から調べる
</Heading>
<Heading as="p" size="md">
<Heading size="md">
md: スマートフォン問診
</Heading>
<Heading as="p" size="md">
<Heading size="md">
md: スマートフォン問診を利用できる
<br />
近くの医療機関から調べる
</Heading>
<Heading as="p" size="lg">
<Heading size="lg">
lg: スマートフォン問診
</Heading>
<Heading as="p" size="lg">
<Heading size="lg">
lg: スマートフォン問診を利用できる
<br />
近くの医療機関から調べる
</Heading>
<Heading as="p" size="xl">
<Heading size="xl">
xl: スマートフォン問診
</Heading>
<Heading as="p" size="xl">
<Heading size="xl">
xl: スマートフォン問診を利用できる
<br />
近くの医療機関から調べる
Expand Down

0 comments on commit 0f845d5

Please sign in to comment.