Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance Carbon installation section with additional configuration det… #4311

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
14 changes: 13 additions & 1 deletion src/pages/developing/angular-tutorial/step-1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -186,16 +186,28 @@ carbon-angular-tutorial
### Install Carbon

Even though we installed some dependencies while creating the new app, we've yet
to install the Carbon packages.
to install the Carbon packages:

- `carbon-components` - Component styles
- `carbon-components-angular` - Angular components
- `@carbon/icons` - Carbon icons

Run the following command to install the packages:

```bash
npm install carbon-components carbon-components-angular @carbon/icons
```

These links can be useful depending on the version of Angular and Carbon you
want to use. They provide deeper details about the components and the global
configuration of the design system. Additionally, they may cover other ways to
configure Carbon, which can vary based on the Angular version, as there may be
additional or different libraries available. Keep in mind that the configuration
for `styles.scss` may also vary:

- [Getting Started with Carbon for Angular](https://angular.carbondesignsystem.com/?path=/docs/getting-started--docs)
- [Carbon Design System Documentation](https://angular.carbondesignsystem.com/documentation/index.html)

#### Import carbon-components styles

In `src/styles.scss`, import the Carbon styles by adding the following to the
Expand Down
Loading