npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qumra/manara

v1.0.2

Published

Qumra's design system and React component library — build admin interfaces that feel native to Qumra

Readme

@qumra/manara

npm version License: ISC

Qumra's design system — React components and design tokens for building admin interfaces.

منارة (manara) means "lighthouse" in Arabic, guiding your admin UI to clarity and consistency.

Installation

npm install @qumra/manara react react-dom

Peer Dependencies:

  • React >=18
  • React DOM >=18

Quick Start

import { Page, Card, Button } from '@qumra/manara';

export default function Dashboard() {
  return (
    <Page title="Dashboard">
      <Card>
        <Button onClick={() => alert('Hello!')}>Get Started</Button>
      </Card>
    </Page>
  );
}

Components

Layout

Page — Top-level page container with title and actions

<Page title="Users" actions={<Button>Add User</Button>}>
  {/* Content */}
</Page>

Layout — Flexible layout with optional sections

<Layout>
  <Layout.Section>Content</Layout.Section>
</Layout>

Card — Content container with elevation

<Card>
  <Text>Card content here</Text>
</Card>

Box — Primitive container for spacing and layout

<Box padding="lg">Box with padding</Box>

InlineStack — Horizontal flex container

<InlineStack gap="md">
  <Button>Cancel</Button>
  <Button variant="primary">Submit</Button>
</InlineStack>

BlockStack — Vertical flex container

<BlockStack gap="md">
  <Text>Item 1</Text>
  <Text>Item 2</Text>
</BlockStack>

Typography

Text — Semantic text rendering with variants

<Text variant="body" tone="critical">Error message</Text>

Forms

TextField — Single-line text input

<TextField label="Email" type="email" placeholder="[email protected]" />

Select — Dropdown selection

<Select label="Role" options={[{ label: 'Admin', value: 'admin' }]} />

Actions

Button — Interactive button with variants

<Button variant="primary" size="lg">Click Me</Button>

Feedback

Badge — Status indicator

<Badge tone="success">Active</Badge>

Banner — Alert or notification container

<Banner tone="warning">Check your settings</Banner>

Toast — Temporary notification

<Toast message="Changes saved" type="success" />

Spinner — Loading indicator

<Spinner />

Data

DataTable — Tabular data with sorting and pagination

<DataTable columns={[{ key: 'name', header: 'Name' }]} rows={data} />

Modal — Dialog overlay

<Modal open title="Confirm Action">
  <Text>Are you sure?</Text>
</Modal>

Design Tokens

Colors

Access colors for consistent theming:

import { colors } from '@qumra/manara';

// Usage in custom styles
const style = { color: colors.primary, background: colors.surface };

Available palettes: primary, success, warning, critical, surface, background, text

Spacing

Standard spacing scale for margins and padding:

import { spacing } from '@qumra/manara';

// xs, sm, md, lg, xl, xxl
const margin = spacing.md;

Typography

Font Family

import { fontFamily } from '@qumra/manara';

// fontFamily.base, fontFamily.mono

Font Size

import { fontSize } from '@qumra/manara';

// xs, sm, md, lg, xl, xxl

Font Weight

import { fontWeight } from '@qumra/manara';

// light, normal, medium, semibold, bold

Utilities

createStyles

Generate scoped CSS classes:

import { createStyles } from '@qumra/manara';

const styles = createStyles({
  container: { padding: '1rem', background: 'white' },
  active: { fontWeight: 'bold' }
});

<div className={styles.container}>
  <span className={styles.active}>Active</span>
</div>

classNames

Conditionally merge class names:

import { classNames } from '@qumra/manara';

<div className={classNames('base', { 'active': isActive })}>
  Conditional styling
</div>

Qumra Ecosystem

| Package | Description | |---------|-------------| | @qumra/app-sdk | Core SDK — sessions, security, errors | | @qumra/app-react-router | React Router 7 integration | | @qumra/app-session-storage-prisma | Prisma session storage | | @qumra/app-session-storage-mongodb | MongoDB session storage | | @qumra/jisr | App Bridge for iframe communication | | @qumra/manara | Design system & components | | @qumra/riwaq | UI Extensions SDK |

License

ISC © Qumra

Documentation

https://docs.qumra.cloud