mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 11:11:25 +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]
26 lines
664 B
Svelte
26 lines
664 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="M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z"></path>
|
|
</svg>
|