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 🙏

© 2024 – Pkg Stats / Ryan Hefner

untitledui-js-base

v1.0.14

Published

A simple library with a fully customizable collection of untitledui icons with out of the box support for framer motion

Downloads

1,762

Readme

Untitled UI JS Base

This initiative began due to increasing dissatisfaction with how the Feather Icons project was being managed. With over 300 open issues and more than 100 pending pull requests, the Feather Icons project has been left abandoned. This means that many developers and designers wasted their time contributing to Feather Icons without any chance of their pull requests being accepted.

Additionally, Untitled UI Icons supports SVG animations without the need for any configuration. Essentially, each icon is wrapped in a <motion.svg> ... </motion.svg> element, making it simple to incorporate dynamic animations.

 Why choose Untitled UI JS over other icons libraries

  • More icons to work with: Untitled UI Icons boasts over 1200 icons, providing an extensive library for your projects.
  • Support for Framer Motion animations, enhancing the visual appeal and interactivity of your applications.
  • Easy access to design assets with Untitled UI's free icons library.
  • Actively supported and maintained: Untitled UI Icons is regularly updated and improved to meet the evolving needs of developers and designers.

Installation

Setup without framer motion support

 npm i untitledui-js-base

Setup with framer motion support

 npm i untitledui-js framer-motion

Quick Start Guide

1. Imports


import { AnnotationAlert } from "untitledui-js"
<-- Direct Import  -->

2. Rendering on the DOM

//...imports

const App = () => {
  return (
    <Fragment>
      <Communication.AnnotationAlert />

      <AnnotationAlert />
    </Fragment>
  );
};

3. Customization

return (
  <AnnotationAlert
    size={"15"} //adjusts both width and height properties
    pathProps={{
      ...props,
    }} //allows the adjustment of the path properties directly
    {...props} //other svg properties
  />
);

Note

  • Framer's svg animation properties are to be passed directly to the icon <Home01 initial={{}} animate={{}} /> or path as pathProps if required

  • If you aren't familiar with svg properties, you can view this documentation by documentation by mozilla

  • You can also view the current documentation site in beta

  • For simple animations of svg paths you can read this article by Noel

  • Category based imports have been deprecated