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

design-labs-ui

v1.6.0

Published

A modern UI component library

Downloads

62

Readme

Design Labs UI

A modern, lightweight React component library for building beautiful user interfaces.

npm version license downloads


Installation

Install the package using npm:

npm install design-labs-ui

Or, if you're using Yarn:

yarn add design-labs-ui

Quick Start

Here’s an example of how to use the StyleDiv component:

import React from "react";
import { StyleDiv } from "design-labs-ui";

function App() {
  return (
    <StyleDiv
      backgroundColor="#f5f5f5"
      padding="20px"
      borderRadius="8px"
      boxShadow="0 4px 8px rgba(0, 0, 0, 0.1)"
    >
      <h1>Hello, Design Labs UI!</h1>
      <p>This is a styled container component from our library.</p>
    </StyleDiv>
  );
}

export default App;

Components

StyleDiv

A flexible container component with customizable styling properties.

Props

| Prop | Type | Default | Description | | --------------- | --------- | ------------------------------ | --------------------------------------- | | backgroundColor | string | '#ffffff' | Background color of the div | | padding | string | '16px' | Padding inside the div | | margin | string | '0' | Margin around the div | | borderRadius | string | '4px' | Border radius of the div | | boxShadow | string | '0 2px 4px rgba(0, 0, 0, 0.1)' | Box shadow effect | | width | string | 'auto' | Width of the div | | height | string | 'auto' | Height of the div | | className | string | '' | Additional CSS class names | | children | ReactNode | - | Child elements to render inside the div |

Example

<StyleDiv
  backgroundColor="#e0e0e0"
  padding="24px"
  borderRadius="12px"
  boxShadow="0 6px 12px rgba(0, 0, 0, 0.15)"
>
  <h2>Custom Styled Container</h2>
  <p>This container has custom styling applied through props.</p>
</StyleDiv>

Roadmap

We're actively working on expanding our component library. Here are some components we plan to add in future releases:

  • Button
  • Input
  • Card
  • Modal
  • Dropdown
  • Tabs
  • Toast notifications
  • Form elements

Contributing

We welcome contributions to Design Labs UI! Please feel free to submit issues, pull requests, or suggestions to help improve the library.

  1. Fork the repository.
  2. Create your feature branch: git checkout -b feature/amazing-component.
  3. Commit your changes: git commit -m 'Add some amazing component'.
  4. Push to the branch: git push origin feature/amazing-component.
  5. Open a Pull Request.

License

This project is licensed under the ISC License. See the LICENSE file for details.


Author

Created by Digbijaya Lenka.


Acknowledgments

  • Thanks to all the open-source projects that inspired this library.
  • Special thanks to our contributors and users.

Made with ❤️ by the Design Labs UI team.