Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
carbon-icons-svelte
Advanced tools
Svelte components for icons in digital and software products using the Carbon Design System
Svelte components for icons in digital and software products using the Carbon Design System.
This zero dependency library uses @carbon/icons to build Carbon Design System icons.
carbon-icons-svelte
can be installed as a development dependency using yarn or npm.
yarn add -D carbon-icons-svelte
# OR
npm i -D carbon-icons-svelte
Supported icon sizes include 16
, 20
, 24
and 32
.
<script>
import { Add16 } from 'carbon-icons-svelte';
</script>
<Add16 />
For faster compiling, import icons individually.
<script>
import Add16 from 'carbon-icons-svelte/lib/Add16';
</script>
<Add16 />
import Icon from 'carbon-icons-svelte/lib/<ModuleName>';
Refer to the Icon Index for a list of available icons.
All props are optional.
Name | Value |
---|---|
id | string |
aria-label | string |
aria-labelledby | string |
tabindex | string |
title | string |
class | string |
style | string (default: "will-change: transform;" ) |
title
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="{() => {}}"
/>
data-carbon-icon
selectorEach icon includes a data attribute and value for easier querying. This is especially useful for automated testing in a headless browser.
<svg data-carbon-icon="Add16">...</svg>
document.querySelectorAll('[data-carbon-icon]'); // all carbon icons
document.querySelectorAll('[data-carbon-icon="Add16"]'); // all Add16 icons
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).
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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.