Skip to content

Commit

Permalink
Adds href to kitchen sink to fix cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
origami-z committed Jul 9, 2024
1 parent 89a6c06 commit 998bd07
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions packages/lab/stories/kitchen-sink/kitchen-sink.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export const Example1 = () => {
<Text color="warning">Warning body copy</Text>
<Text color="success">Success body copy</Text>
<Text color="info">Info body copy</Text>
<Link>Default link text</Link>
<Link href="#">Default link text</Link>
<Text>
<code>Code example 123</code>
</Text>
Expand All @@ -174,7 +174,7 @@ export const Example1 = () => {
<Text color="warning">Warning body copy</Text>
<Text color="success">Success body copy</Text>
<Text color="info">Info body copy</Text>
<Link>Default link text</Link>
<Link href="#">Default link text</Link>
<Text>
<code>Code example 123</code>
</Text>
Expand All @@ -191,7 +191,7 @@ export const Example1 = () => {
<Text color="success">Success body copy</Text>
<Text color="info">Info body copy</Text>
</Card>
<Link>Default link text</Link>
<Link href="#">Default link text</Link>
<Text>
<code>Code example 123</code>
</Text>
Expand All @@ -208,7 +208,7 @@ export const Example1 = () => {
<Text color="success">Success body copy</Text>
<Text color="info">Info body copy</Text>
</Card>
<Link>Default link text</Link>
<Link href="#">Default link text</Link>
<Text>
<code>Code example 123</code>
</Text>
Expand All @@ -229,10 +229,14 @@ export const Example1 = () => {
<Badge value="new" />
<NotificationIcon />
<NotificationSolidIcon />
<Link>Link</Link>
<Link variant="secondary">Link</Link>
<Link target="_blank">Link</Link>
<Link target="_blank" variant="secondary">
<Link href="#">Link</Link>
<Link href="#" color="secondary">Link</Link>
<Link href="#" color="info">Link</Link>
<Link href="#" color="success">Link</Link>
<Link href="#" color="warning">Link</Link>
<Link href="#" color="error">Link</Link>
<Link href="#" target="_blank">Link</Link>
<Link href="#" target="_blank" color="secondary">
Link
</Link>
<StatusIndicator status="error" />
Expand Down

0 comments on commit 998bd07

Please sign in to comment.