Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@vtmn/assets
Advanced tools
@vtmn/assets
Decathlon Design System - Vitamin assets library
After installing npm or yarn, you can install @vtmn/assets
with this command:
# with npm
npm i -S @vtmn/assets
# with yarn
yarn add @vtmn/assets
Or you can also install it with a CDN like unpkg.com
. You can browse content here.
Once you have installed this package, depending on your setup, you can include @vtmn/assets
in a handful of ways.
<img>
elementVitamin assets gives you SVGs, so you can include them into your HTML in a few ways depending on how your project is setup.
Our assets include a width
and height
of 16px
by default to allow for easy resizing via font-size
.
Reference assets SVGs like normal images with the <img>
element.
<img
src="/node_modules/@vtmn/assets/dist/vitamix/svg/home-fill.svg"
alt="Home icon filled"
width="32"
height="32"
/>
Use the SVG sprite to insert any icon through the <use>
element. Use the icon’s filename as the fragment identifier (e.g., home-fill
is #home-fill
). SVG sprites allow you to reference an external file similar to an <img>
element.
<svg width="32" height="32" fill="#001018">
<use
xlink:href="/node_modules/@vtmn/assets/dist/vitamix/sprite/vitamix.svg#home-fill"
/>
</svg>
You can also use the SVG within your CSS (be sure to escape any characters, such as #
to %23
when specifying hex color values). When no dimensions are specified via width
and height
on the <svg>
, the icon will fill the available space.
The viewBox
attribute is required if you wish to resize assets with background-size
. Note that the xmlns
attribute is required.
.your-class {
display: inline-block;
content: '';
vertical-align: -0.125em;
background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path d="M7.3337.333v-4h1.334v4h4v1.334h-4v4h7.333v-4h-4v7.333h4z' fill='#001018'/></svg>');
background-repeat: no-repeat;
background-size: 1rem 1rem;
}
Embed your assets within the HTML of your page (as opposed to an external image file, not really recommended). Here we’ve used a custom width
and height
.
<svg width="16" height="16" fill="#001018" xmlns="http://www.w3.org/2000/svg">
<path
d="M7.333 7.333v-4h1.334v4h4v1.334h-4v4H7.333v-4h-4V7.333h4z"
fill="#001018"
/>
</svg>
If you want to know the different changes between versions of this package, look at the changelog here.
Please file the issue here.
Apache-2.0 © Decathlon
FAQs
Decathlon Design System - Vitamin assets library
The npm package @vtmn/assets receives a total of 3,300 weekly downloads. As such, @vtmn/assets popularity was classified as popular.
We found that @vtmn/assets demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.