84 animated micro-UI components for React. Dark industrial terminal aesthetic. Pure SVG. Fully themeable via CSS custom properties.
Built for dashboards, HUDs, monitoring panels, developer tools, creative portfolios, and anywhere you want that retro-terminal look.
| Signals | Data | Gauges | Radar |
|---|---|---|---|
| SignalMeter, PulseTag, StatusLight, HeartbeatLine, BatteryMeter, SystemLoad, WatchdogTimer... | WaveformLine, RadarSweep, HeatGrid, FrequencyBars, PacketFlow, DotChart... | DialGauge, Speedometer, CompassRose, PressureGauge, TankLevel, VoltageDisplay... | RadarReticle, CrosshairTarget, OrbitSystem, TargetReticle, MissionStatus... |
npm install @micrographics-js/react @micrographics-js/coreRequires a license token. See purchase & setup below.
import { SignalMeter, PulseTag, DialGauge, RadarSweep } from "@micrographics-js/react";
export default function Dashboard() {
return (
<div style={{ background: "#0d0e17", padding: 24, fontFamily: "monospace" }}>
<SignalMeter bars={5} speed={180} />
<PulseTag label="ONLINE" />
<DialGauge value={72} />
<RadarSweep size={80} />
</div>
);
}SignalMeter PulseTag StatusLight HeartbeatLine LoadBar BootSequence BatteryMeter Uptime PingIndicator ConnectionStatus AlertBanner ReadyBadge ScanLine NetworkPulse CPUSparkline ErrorRate MemoryBar SpinDial ScanBeam SystemLoad EventTicker SignalQuality WatchdogTimer
DotChart BarSparkline FrequencyBars BinaryStream VUMeter HexDump WaveformLine RadarSweep PacketFlow HeatGrid ThermalBar
GlitchCycler Typewriter GlitchText LogStream CounterUp BootLog MatrixRain KanaTag MicroStrip WeatherStrip ScrollingText BinaryCounter
CornerOrnament Barcode PanelTitle PixelDiamond ChevronRow DataLabel SectorBadge RulerTick CoordLabel WireFrame HexGrid
PixelClock UnixTimestamp DayProgress CountdownTimer StopwatchDisplay TimezoneBar
DialGauge TankLevel FlowMeter PressureGauge VoltageDisplay TemperatureBar CompassRose Speedometer
CopyButton RatingDots ToggleSwitch NumericStepper SegmentedBar
OrbitSystem TargetReticle PriorityBadge RegistrationMark ArchiveTag RadarReticle CrosshairTarget MissionStatus
All components use CSS custom properties. Override on any ancestor:
:root {
--bg: #0d0e17;
--bg-secondary: #13141f;
--fg: #e8e8e8;
--fg-dim: #9a9aaa;
--fg-dimmer: #555566;
--accent: #3ecf8e; /* primary color — change this for instant theming */
--accent-amber: #f5a623;
--accent-red: #e05252;
--border: rgba(255,255,255,0.07);
--border-strong: rgba(255,255,255,0.15);
}Per-component color override:
<SignalMeter color="#8b5cf6" />
<DialGauge value={80} color="var(--accent-red)" />Per-section theme:
.cyberpunk { --accent: #8b5cf6; }npm install @micrographics-js/tailwind// tailwind.config.js
module.exports = {
presets: [require("@micrographics-js/tailwind/preset")],
};Then use: bg-mg-bg, text-mg-accent, mg-card, mg-badge, mg-glow, animate-mg-pulse, etc.
All components include "use client" — works out of the box with App Router:
// app/page.tsx
import { SignalMeter, PixelClock } from "@micrographics-js/react";
export default function Page() {
return <div className="bg-mg-bg p-8"><SignalMeter /><PixelClock /></div>;
}- Purchase at recursivevoid.lemonsqueezy.com
- Install:
npm install @micrographics-js/react @micrographics-js/core - Add your license key in your app entry point:
// app/layout.tsx (Next.js) or src/main.tsx (Vite)
import { initLicense } from "@micrographics-js/core";
initLicense("your-license-key");- Pure SVG — pixel-crisp rendering at any size
- CSS custom properties — no hardcoded colors, fully themeable
- Zero runtime deps — only
@micrographics-js/core(tiny shared utils) - Monospace-first — designed for JetBrains Mono / monospace fonts
- Subtle animations — non-distracting micro-animations via
createTicker() - "use client" — Next.js/RSC compatible out of the box
Commercial license. See LICENSE.md.
Free for personal/non-commercial use. Purchase required for production.