mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-21 12:49:20 +00:00
refactor(icons): use icons from carbon-icons-svelte@11
This commit is contained in:
parent
a9cb474854
commit
0a28d64acf
118 changed files with 1122 additions and 2201 deletions
27
src/icons/OverflowMenuHorizontal.svelte
Normal file
27
src/icons/OverflowMenuHorizontal.svelte
Normal file
|
@ -0,0 +1,27 @@
|
|||
<script>
|
||||
export let size = 16;
|
||||
|
||||
export let title = undefined;
|
||||
|
||||
$: labelled = $$props["aria-label"] || $$props["aria-labelledby"] || title;
|
||||
$: attributes = {
|
||||
"aria-hidden": labelled ? undefined : true,
|
||||
role: labelled ? "img" : undefined,
|
||||
focusable: Number($$props["tabindex"]) === 0 ? true : undefined,
|
||||
};
|
||||
</script>
|
||||
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 32 32"
|
||||
fill="currentColor"
|
||||
preserveAspectRatio="xMidYMid meet"
|
||||
width="{size}"
|
||||
height="{size}"
|
||||
{...attributes}
|
||||
{...$$restProps}
|
||||
>
|
||||
{#if title}<title>{title}</title>{/if}
|
||||
<circle cx="8" cy="16" r="2"></circle><circle cx="16" cy="16" r="2"
|
||||
></circle><circle cx="24" cy="16" r="2"></circle>
|
||||
</svg>
|
Loading…
Add table
Add a link
Reference in a new issue