🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@euconform/ui

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@euconform/ui

UI components for EU AI Act compliance dashboards and assessment wizards.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@euconform/ui

UI components for EU AI Act compliance dashboards and assessment wizards.

npm version License: MIT

Installation

npm install @euconform/ui
# or
pnpm add @euconform/ui

Features

  • 🎨 Tailwind CSS – Built with Tailwind for easy customization
  • 🌙 Dark Mode – Full dark mode support out of the box
  • Accessible – WCAG 2.2 AA compliant components
  • 📱 Responsive – Mobile-first design

Usage

Import Styles

// In your app's entry point
import "@euconform/ui/styles.css";

Use Components

import { Card } from "@euconform/ui/card";
import { Button } from "@euconform/ui/button";

function MyComponent() {
  return (
    <Card title="Risk Assessment">
      <p>Your AI system has been classified.</p>
      <Button onClick={handleNext}>Continue</Button>
    </Card>
  );
}

Available Components

ComponentDescription
CardContainer component with title and content
ButtonAccessible button with variants
GradientDecorative gradient backgrounds

Styling

Components use Tailwind CSS with the ui: prefix for namespacing:

/* Custom overrides */
.ui\:bg-primary {
  background-color: var(--your-primary-color);
}

License

MIT

Keywords

eu-ai-act

FAQs

Package last updated on 07 Jan 2026

Did you know?

Socket

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.

Install

Related posts