
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@hackclub/icons
Advanced tools
@hackclub/icons
Hack Club’s icons are a superset of Spectrum’s incredible collection (also published as spectrum-icons
). Designed for use with our Design System.
npm i @hackclub/icons
import React from 'react'
import Icon from '@hackclub/icons'
export default () => (
<div style={{ color: 'cyan' }}>
<Icon glyph="clubs" size={128} />
<Icon glyph="bank-circle" size={64} />
<Icon glyph="leaders" size={32} />
</div>
)
https://icons.hackclub.com/api/icons/:color/:glyph
:glyph
- A glyph from icons.hackclub.com.:color
- Any valid HTML color or Hack Club Theme color prefixed with hackclub-
. Replace #
with 0x
when using a hexadecimal color.All responses are SVGs with the MIME type image/svg+xml
. You can optionally include the .svg file extension.
Examples:
<img src="https://icons.hackclub.com/api/icons/red/clubs">
<img src="https://icons.hackclub.com/api/icons/hackclub-green/battery-bolt">
<img src="https://icons.hackclub.com/api/icons/0xc78ad4/sam.svg">
Copy and paste the Hack Club Icon component from the Figma file: figma.com/file/u8evOObGA4HCzUKlrVra1q/Hack-Club-Icon-Component
Choose the icon you'd like by modifying the Glyph
.
$ git clone https://github.com/hackclub/icons.git
$ cd icons
$ yarn
yarn run prepare
yarn run dev
If you’d like to add an icon, the Figma file is Hack Club Icons. Try to design the icon only out of components of other icons, to keep consistency high, with those small square canvas sizes. When you’re done, clone your new icon, flatten all the layers into one shape for the simplest/smallest code/rendering, then export as an SVG with no background. Open the file, copy the <path>
, then in the Icon source file, add a new one (alphabetically), using a wrapping <g>
if you have several <path>
s. Make sure to remove the fill attribute from all paths, & ensure you’re formatting props correctly as JSX (replacing hyphens with camelCase).
After publishing, remember to update the package dependency on the docs site so it’s showing the latest iconset.
FAQs
Hack Club’s iconset, a superset of spectrum-icons
We found that @hackclub/icons demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.