@badsectorlabs/icons
v1.0.1
Published
Custom brand-aligned icon set for Ludus by Bad Sector Labs
Readme
@badsectorlabs/icons
Two icon namespaces for Ludus apps and marketing surfaces, plus the Ludus brand mark. Tree-shakes per import.
// Roman / classical / military narrative — for marketing, role pickers,
// scenario headers, brand storytelling. (game-icons.net, CC-BY 3.0)
import { GladiusFilledIcon, ColiseumFilledIcon, CenturionHelmetFilledIcon }
from "@badsectorlabs/icons/roman"
// Technical / cyber-aesthetic line work — for VM nodes, network glyphs,
// dashboards, mid-zoom canvas. Each concept ships line and duotone.
// (Streamline Vectors Cyber, CC-BY 4.0)
import { ServerCyberLineIcon, NetworkCyberDuotoneIcon }
from "@badsectorlabs/icons/cyber"
// The Ludus colosseum brand mark.
import { LudusmarkIcon } from "@badsectorlabs/icons"Sizes and theming
Every component accepts size, width, height, and any standard SVG prop.
Color follows currentColor, so set CSS color on a parent to theme:
<div style={{ color: "var(--brand-gold)" }}>
<GladiusFilledIcon size={64} />
</div>