mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* chore: update ignore rules, remove unused files * refactor(icons): use icons from carbon-icons-svelte@11 * docs(time-picker): fix default value * chore: upgrade carbon-icons-svelte to v11 * docs: update examples to use icons from carbon-icons-svelte@11 * docs: update number of icons [ci skip]
38 lines
714 B
Svelte
38 lines
714 B
Svelte
<script lang="ts">
|
|
import { Tag } from "../types";
|
|
import Add from "carbon-icons-svelte/lib/Add.svelte";
|
|
</script>
|
|
|
|
<Tag class="my-class" style="margin: 1rem;">IBM Cloud</Tag>
|
|
|
|
<Tag type="red">red</Tag>
|
|
|
|
<Tag type="magenta">magenta</Tag>
|
|
|
|
<Tag type="purple">purple</Tag>
|
|
|
|
<Tag type="blue">blue</Tag>
|
|
|
|
<Tag type="cyan">cyan</Tag>
|
|
|
|
<Tag type="teal">teal</Tag>
|
|
|
|
<Tag type="green">green</Tag>
|
|
|
|
<Tag type="gray">gray</Tag>
|
|
|
|
<Tag type="cool-gray">cool-gray</Tag>
|
|
|
|
<Tag type="warm-gray">warm-gray</Tag>
|
|
|
|
<Tag type="high-contrast">high-contrast</Tag>
|
|
|
|
<Tag type="outline">outline</Tag>
|
|
|
|
<Tag filter on:click on:close>Filterable</Tag>
|
|
|
|
<Tag icon="{Add}">Custom icon</Tag>
|
|
|
|
<Tag interactive>Text</Tag>
|
|
|
|
<Tag skeleton />
|