feat(ui): brancher le design system (exports ESM, Font Awesome, polices offline)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-05 05:25:21 +02:00
parent f8a8478749
commit d3bf4a9fd2
4 changed files with 56 additions and 2 deletions
+6
View File
@@ -656,3 +656,9 @@ Object.assign(window, {
`;
document.head.appendChild(s);
})();
export {
Icon, Tooltip, IconButton, Toggle, StatusLed,
BatteryGauge, RadialGauge, BigRadialGauge,
Popup, Button, TreeNav, Sparkline, LineChart,
};
+4
View File
@@ -1,5 +1,9 @@
import React from "react";
import { createRoot } from "react-dom/client";
import "@fortawesome/fontawesome-free/css/all.min.css";
import "@fontsource/inter";
import "@fontsource/jetbrains-mono";
import "@fontsource/share-tech-mono";
import "./styles/app.css";
import { App } from "./App.js";