mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
26 lines
619 B
Svelte
26 lines
619 B
Svelte
<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}
|
|
<path d="M12 8L22 16 12 24z"></path>
|
|
</svg>
|