carbon-components-svelte/tests/Link.test.svelte
metonym 45c272642f
fix(link): $$restProps should extend p, a HTML attributes (#1233)
* fix(link): restProps should extend `p` or `a` tag attributes

* Run "yarn build:docs"

* test(link): assert anchor link rest attributes
2022-04-09 11:24:25 -07:00

9 lines
253 B
Svelte

<script lang="ts">
import { Link, OutboundLink } from "../types";
</script>
<Link size="sm" inline disabled download visited href="/" target="_blank">
Carbon Design System
</Link>
<OutboundLink inline href="https://www.carbondesignsystem.com/" />