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

@gryt/ui

v0.1.3

Published

React component library for Gryt, the open-source WebRTC voice chat platform.

Readme

@gryt/ui

React component library for Gryt, the open-source WebRTC voice chat platform.

Built with MUI v7, React, Phosphor icons, Tailwind-authored compiled CSS, and the Gryt design palette from Gryt-chat/code-theme.

Install

bun add @gryt/ui
npm install @gryt/ui
pnpm add @gryt/ui
yarn add @gryt/ui

Gryt UI includes MUI, Emotion, Phosphor icons, and its compiled CSS. Your app should provide React and React DOM.

Usage

Import the stylesheet once in your app's global entry file.

// main.tsx, app.tsx, layout.tsx, or another global app entry
import "@gryt/ui/styles.css";

For Next.js, import the stylesheet from app/layout.tsx or pages/_app.tsx.

Wrap your app with GrytProvider, then use the components.

import { Button, GrytProvider, TextField } from "@gryt/ui";

export function App() {
  return (
    <GrytProvider>
      <form>
        <TextField label="Channel name" placeholder="Design review" />
        <Button tone="primary" size="medium">
          Create channel
        </Button>
      </form>
    </GrytProvider>
  );
}

Examples

Buttons support Gryt tones, variants, and sizes.

import { Button } from "@gryt/ui";

export function Actions() {
  return (
    <>
      <Button tone="primary">Save</Button>
      <Button tone="secondary" variant="outlined">
        Invite
      </Button>
      <Button tone="danger" variant="contained" size="small">
        Delete
      </Button>
      <Button tone="ghost" variant="text" size="xsmall">
        Dismiss
      </Button>
    </>
  );
}

Form primitives are MUI-backed and inherit the Gryt theme.

import { Select, Switch, TextField } from "@gryt/ui";

export function Preferences() {
  return (
    <>
      <TextField label="Display name" placeholder="Sivert" />
      <Select
        label="Voice activity"
        defaultValue="push-to-talk"
        options={[
          { label: "Push to talk", value: "push-to-talk" },
          { label: "Open mic", value: "open-mic" }
        ]}
      />
      <Switch
        defaultChecked
        inputProps={{ "aria-label": "Noise suppression" }}
      />
    </>
  );
}

Components

Includes MUI-backed primitives for buttons, inputs, selects, tabs, menus, dialogs, drawers, cards, feedback, data display, and Gryt chat-specific components like Composer, ConversationItem, and MessageBubble.

The package also exports GrytProvider, createGrytTheme, and grytTokens for apps that need a consistent Gryt theme boundary.

Styles

@gryt/ui/styles.css contains the compiled component styles. Import it once globally; do not import it inside every component.

import "@gryt/ui/styles.css";

If your bundler supports CSS imports from npm packages, no extra CSS configuration is needed.

Links