Base UI · Tailwind CSS · Design Tokens

Acronis UIKit

A production-ready component library for building Acronis products — accessible, themeable, and fully typed.

24Components
470+Icons
2Brands
100%TypeScript

Capabilities

Everything you need.

01

Base UI Components

Buttons, inputs, selects, navigation, and more — built on Base UI primitives for production use in enterprise products.

02

Acronis Icon Set

A tree-shakeable icon set from @acronis-platform/icons-react, covering enterprise and product interfaces.

03

Token-Driven Theming

Light, dark, and brand themes from generated --ui-* design tokens — switch with a data attribute, no rebuild.

04

TypeScript-first

Every component is fully typed. IntelliSense, autocomplete, and type safety built in from the ground up.

05

Accessible

Built on Base UI primitives with WAI-ARIA compliance and full keyboard navigation out of the box.

06

Zero Configuration

Import the styles, use the components. No build plugins, no extra setup, no configuration required.

Installation

Ready in seconds.

Install the package and start building immediately.

Terminal
$ npm install @acronis-platform/ui-react react react-dom
app.tsx
import '@acronis-platform/ui-react/styles';
import { Button } from '@acronis-platform/ui-react';

export default function App() {
  return <Button>Hello UIKit</Button>;
}
Read the full docs