
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@carbon/elements
Advanced tools
A collection of design elements in code for the IBM Design Language
A collection of design elements in code for the IBM Design Language
To install @carbon/elements
in your project, you will need to run the
following command using npm:
npm install -S @carbon/elements
If you prefer Yarn, use the following command instead:
yarn add @carbon/elements
@carbon/elements
includes all of the other elements packages in the project
and can be useful instead of installing each package individually. This package
offers support for both the JavaScript exports from these packages, in addition
to Sass support.
@carbon/elements
provides two entrypoints for you to leverage: a bundled
entrypoint and a module entrypoint. For most use-cases, the bundled entrypoint
will work for you. If you have taken an extra step to configure your build
configuration to properly resolve @import
s from files, then feel free to use
the module entrypoint.
To include the bundled entrypoint, you can include the following in your Sass file:
@import '@carbon/elements/scss/elements';
# Import a specific package nested in elements
@import '@carbon/elements/scss/themes/g10';
Include in the example above is how to access nested packages. These packages
are ones that you could optinonally install as a package, like @carbon/themes
,
but we've included them inline as a convenience.
To include the module entrypoint, you can include the following in your Sass file:
@import '@carbon/elements/scss/index';
@carbon/elements
re-exports the exports from all of the packages that it
exports. That means that if an individual package exports a value, then you can
import it the same way when using @carbon/elements
. For example, with
@carbon/colors
we might write:
import { colors } from '@carbon/colors';
With @carbon/elements
, you can also import colors
:
import { colors } from '@carbon/elements';
If you're looking for @carbon/elements
API documentation, check out:
We're always looking for contributors to help us fix bugs, build new features, or help us improve the project documentation. If you're interested, definitely check out our Contributing Guide! π
Licensed under the Apache 2.0 License.
FAQs
A collection of design elements in code for the IBM Design Language
The npm package @carbon/elements receives a total of 4,968 weekly downloads. As such, @carbon/elements popularity was classified as popular.
We found that @carbon/elements 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Koreaβs Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.