Installation

Get started with APEX Design System by installing the package via npm.

Requirements

Before installing, make sure you have the following:

  • Node.js 18 or higher
  • React 19.2.0 or higher
  • TypeScript 5.0 or higher (recommended)

Install the package

bash
npm install apex-design-system

Import styles

Import the CSS file in your app's entry point:

tsx
import 'apex-design-system/dist/styles.css';

Start using components

tsx
import { Button, Card, Input } from 'apex-design-system';

export default function App() {
  return (
    <Card>
      <h2>Welcome to APEX</h2>
      <Input placeholder="Enter your email" />
      <Button variant="primary">Get Started</Button>
    </Card>
  );
}

Next steps