Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
carbon-icons-svelte
Advanced tools
Carbon Design System SVG icons as Svelte components.
This zero dependency icon library builds Carbon Design System icons as Svelte components. Although best paired with carbon-components-svelte, these icons can be consumed standalone.
Try it in the Svelte REPL or on CodeSandbox.
carbon-icons-svelte
can be installed using yarn
or npm
.
yarn add carbon-icons-svelte
# OR
npm i carbon-icons-svelte
Supported icon sizes include 16
, 20
, 24
and 32
. See the Icon Index for a list of supported icons.
<script>
import { Add16 } from "carbon-icons-svelte";
</script>
<Add16 />
Import icons directly for faster compiling.
import Add16 from "carbon-icons-svelte/lib/Add16";
Note: Even if using the base import method, a modern application bundler like Rollup or webpack should treeshake unused imports.
import Icon from "carbon-icons-svelte/lib/<ModuleName>";
Refer to the Icon Index for a list of all icons by module name.
All props are optional.
Name | Value |
---|---|
id | string |
aria-label | string |
aria-labelledby | string |
tabindex | string |
title | string |
focusable | boolean (default: false ) |
class | string |
style | string |
title
as a Slottitle
can be passed as a prop or through the slot as an element.
<Add16 title="Add" />
<!-- OR -->
<Add16>
<title>Add</title>
</Add16>
Event directives are forwarded directly to the SVG element.
<Add16
on:click="{() => {}}"
on:mouseenter="{() => {}}"
on:mouseover="{() => {}}"
on:mouseleave="{() => {}}"
on:keyup="{() => {}}"
on:keydown="{() => {}}"
/>
data-carbon-icon
selectorEach icon embeds its module name in the data-carbon-icon
selector for easier querying. This may be useful for automated testing in a headless browser.
<svg data-carbon-icon="Add16">...</svg>
// selects all carbon icons
document.querySelectorAll("[data-carbon-icon]");
// selects all `Add16` icons
document.querySelectorAll('[data-carbon-icon="Add16"]');
class
<style>
:global(svg.custom-class) {
fill: blue;
}
</style>
<Add16 class="custom-class" />
style
<Add16 style="fill: blue" />
<Add16 aria-label="Add" />
<Add16 aria-label="Add" tabindex="0" />
<label id="addFile">Add file</label>
<Add16 aria-labelledby="addFile" />
This library supports the ES
format. Currently, UMD
is not supported.
Use Webpack or Rollup for application bundling (see examples for sample set-ups).
10.14.1 - 2020-07-24
FAQs
Carbon Design System SVG icons as Svelte components
The npm package carbon-icons-svelte receives a total of 20,387 weekly downloads. As such, carbon-icons-svelte popularity was classified as popular.
We found that carbon-icons-svelte demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.