🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@silverassist/icons

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@silverassist/icons

Icon library for SilverAssist - Next.js compatible React icon components

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

SilverAssist Icons Library

React icon components for SilverAssist applications

Installation

npm install @silverassist/icons

Usage

import { QualitySVG, HealthcareSVG, CommunicationSVG } from '@silverassist/icons';

export default function MyComponent() {
  return (
    <div>
      {/* Use with default props */}
      <QualitySVG />
      
      {/* Customize size and colors */}
      <HealthcareSVG 
        width={50} 
        height={50} 
        fill="#E3F7FB" 
        stroke="#0066cc" 
      />
      
      {/* Works with Tailwind and other props */}
      <CommunicationSVG 
        className="hover:scale-110 transition-transform"
        onClick={() => console.log('Clicked!')}
      />
    </div>
  );
}

Component API

All icons accept standard SVG props via React.ComponentProps<"svg">:

PropTypeDefaultDescription
widthnumber100 or 50Icon width
heightnumber100 or 50Icon height
fillstring"#E3F7FB"Fill color
strokestring"#3F3F3F"Stroke color
classNamestring-CSS classes
onClickfunction-Click handler

Plus any other standard SVG attributes.

Available Icons

168 icons available including:

QualitySVG, ChoiceSVG, HealthcareSVG, CommunicationSVG, GovernmentSVG, LegalSVG, FinanceSVG, SafetySVG, TransportationSVG, EducationSVG, and many more.

For the complete list of icons, see the TypeScript autocomplete in your editor.

TypeScript Support

Full TypeScript support with type definitions included.

import type { ComponentProps } from 'react';
import { QualitySVG } from '@silverassist/icons';

// All SVG props are typed
const props: ComponentProps<typeof QualitySVG> = {
  width: 100,
  height: 100,
  fill: '#E3F7FB',
  stroke: '#3F3F3F'
};

Contributing

See CONTRIBUTING.md for development instructions.

License

Polyform Noncommercial License 1.0.0 - Silver Assist Team

Keywords

react

FAQs

Package last updated on 20 Dec 2025

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