1.0.0 • Published 3 years ago

@rocketsoftware/icons-angular v1.0.0

Weekly downloads
45
License
Apache-2.0
Repository
github
Last release
3 years ago

@rocketsoftware/icons-angular

Angular components for icons in digital and software products using the Carbon Design System

Getting started

To install @rocketsoftware/icons-angular in your project, you will need to run the following command using npm:

npm install -S @rocketsoftware/icons-angular

If you prefer Yarn, use the following command instead:

yarn add @rocketsoftware/icons-angular

Usage

Icons in this package support the following sizes: 16, 20, 24, and 32 pixels. These sizes refer to the width and height of the icon. To reduce bundle sizes each icon is exported as it's own module, you can use an icon component in your project by doing the following:

In your module:

import { Add32Module } from '@carbon/icons-angular/lib/add/32.js';

@NgModule({
  // ...
  imports: [
    // ...
    Add32Module,
    // ...
  ],
  // ...
})
export class MyModule {}

Note: if you would like to find the import path for an icon, you can reference our icon preview

In your component template:

<!-- ... -->
<ibm-icon-add32></ibm-icon-add32>
<!-- ... -->

API

Options availiable to all icon components:

# @Input() innerClass: string;

Applies a classList to the inner SVG. Use the normal class attribute to apply classes to the host element.

Example:

<ibm-icon-add16 innerClass="inner-class" class="host-class"></ibm-icon-add16>

would result in

<ibm-icon-add16 class="host-class">
  <svg class="inner-class"><!-- ... --></svg>
</ibm-icon-add16>

# @Input() ariaLabel: string;

If supplied, should provide an accessible description of the icon.

Example:

<ibm-icon-add16 ariaLabel="Add a new item"></ibm-icon-add16>

# @Input() ariaLabelledby: string;

If supplied, should link to an element providing an accessible description of the icon.

Example:

<label id="itemAddLabel">Add a new item</label>
<ibm-icon-add16 ariaLabelledby="itemAddLabel"></ibm-icon-add16>

# @Input() ariaHidden: boolean;

Controls the visibility of the underlying SVG to screen readers.

Example:

<ibm-icon-add16 ariaHidden="true"></ibm-icon-add16>

# @Input() title: string;

Adds a <title> element to the inner SVG. Most browsers will display this text as a tooltip when the icon is hovered.

Example:

<ibm-icon-add16 title="Add a new item"></ibm-icon-add16>

# @Input() focusable: boolean;

Enables or disables the focusable attribute. Set this to explicitly control whether the underlying element should receive focus. Defaults to false in most cases.

Example:

<ibm-icon-add16 focusable="false"></ibm-icon-add16>

🙌 Contributing

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! 👀

📝 License

Licensed under the Apache 2.0 License.