
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
@silverassist/icons
Advanced tools
Icon library for SilverAssist - Next.js compatible React icon components
React icon components for SilverAssist applications
npm install @silverassist/icons
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>
);
}
All icons accept standard SVG props via React.ComponentProps<"svg">:
| Prop | Type | Default | Description |
|---|---|---|---|
width | number | 100 or 50 | Icon width |
height | number | 100 or 50 | Icon height |
fill | string | "#E3F7FB" | Fill color |
stroke | string | "#3F3F3F" | Stroke color |
className | string | - | CSS classes |
onClick | function | - | Click handler |
Plus any other standard SVG attributes.
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.
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'
};
See CONTRIBUTING.md for development instructions.
Polyform Noncommercial License 1.0.0 - Silver Assist Team
FAQs
Icon library for SilverAssist - Next.js compatible React icon components
We found that @silverassist/icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.