Installation

Roman ships 62 reusable React components and can be added to existing products in minutes. Use the package manager your team already relies on, then import only what you need.

Install the package

npm install @luicn/roman
pnpm add @luicn/roman
yarn add @luicn/roman

Peer dependencies

Roman is built for React 18+ and works best in modern bundlers such as Next.js, Vite, and webpack. Ensure your project includes compatible versions of react, react-dom, and Ant Design packages.

First component

import { Card, Button } from "@luicn/roman";

export function Demo() {
  return (
    <Card>
      <Button type="primary">Ship UI faster</Button>
    </Card>
  );
}