Anthill

ColonyDB's design system.

Installation

PNPM:

pnpm add @colonydb/anthill

Yarn:

yarn add @colonydb/anthill

npm:

npm install @colonydb/anthill

Usage

import { Base } from '@colonydb/anthill/Base';
import { Button } from '@colonydb/anthill/Button';

const MyComponent = () => (
  <Base>
    <Button
      onClick={() => {
        alert('Hello!');
      }}
    >
      Click me
    </Button>
  </Base>
);