Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

abaabil.icon

Package Overview
Dependencies
Maintainers
0
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abaabil.icon

[![NPM version](https://img.shields.io/npm/v/abaabil.icon)](https://www.npmjs.com/package/abaabil.icon) [![License](https://img.shields.io/npm/l/abaabil.icon)](https://www.npmjs.com/package/abaabil.icon) [![Downloads](https://img.shields.io/npm/dm/abaabil

  • 0.0.31
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

Icon Component Documentation

NPM version License Downloads Bundle Size

Overview

The Icon component is a lightweight and flexible SVG icon component for React applications. It allows you to easily include icons in your application using a centralized sprite sheet, ensuring a consistent and efficient way to manage your iconography.

Features:

  • Customizable Sizing: The component supports different sizes, allowing you to scale icons according to your design requirements.
  • Accessibility Support: Includes options for making icons either decorative or informative, with appropriate ARIA attributes.
  • SVG Sprite Usage: Icons are referenced from an external SVG sprite sheet, making it easy to manage and update icons across your application.

Installation

You can install the Icon component using npm:

npm install abaabil.icon

Props

id

  • Type: string
  • Description: The ID of the icon within the SVG sprite sheet. This ID is used to reference the specific icon you want to display.

size

  • Type: string
  • Default: 'df'
  • Options: 'cp', 'df', 'sp'
  • Description: Specifies the size of the icon. The available options correspond to different width and height values:
    • 'cp': Small size (w-4 h-4)
    • 'df': Base size (w-6 h-6)
    • 'sp': Large size (w-8 h-8)

className

  • Type: string
  • Description: Additional CSS classes to apply to the icon for custom styling.

aria-label

  • Type: string
  • Description: Provides an accessible label for the icon. Use this prop when the icon conveys meaningful information that needs to be announced by screen readers. If provided, the aria-hidden attribute is automatically set to false.

aria-hidden

  • Type: boolean
  • Default: true (when no aria-label is provided)
  • Description: Controls whether the icon is hidden from screen readers. By default, the icon is hidden (aria-hidden="true"), but if an aria-label is provided, this attribute is automatically set to false.

Accessibility Considerations

  • Decorative Icons: If the icon is purely decorative and does not convey any meaningful content, the aria-hidden="true" attribute is applied by default. This ensures that screen readers ignore the icon, improving the overall accessibility experience.

  • Informative Icons: If the icon conveys important information (such as an error or success indicator), provide an aria-label prop to describe the icon. This makes the icon accessible to users relying on screen readers, ensuring that they receive the same information as sighted users.

Example Usage

Basic Icon (Decorative)

<Icon id="checkmark" />

In this example, the icon is decorative and does not require any additional accessibility features. The aria-hidden="true" attribute is applied by default.

Informative Icon (With aria-label)

<Icon id="checkmark" aria-label="Success" />

Here, the icon represents a "Success" status and therefore includes an aria-label. This makes the icon accessible to screen readers, ensuring that users are informed about the icon's meaning.

Large Icon with Custom Styling

<Icon id="alert" size="sp" className="text-red-500" />

This example shows how to render a large icon with custom styling applied via the className prop. The icon will have a large size and be colored red using Tailwind CSS utilities.

Best Practices

  1. Always use aria-label for informative icons to ensure that their meaning is conveyed to users who rely on screen readers.
  2. Use decorative icons sparingly and make sure they are correctly marked with aria-hidden="true" so they do not clutter the screen reader experience.
  3. Consistently manage icon sizes using the provided size prop to ensure a cohesive visual design throughout your application.

Keywords

FAQs

Package last updated on 15 Aug 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc