JSPM

  • Created
  • Published
  • Downloads 2243
  • Score
    100M100P100Q113358F
  • License MIT

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

Package Exports

  • untitledui-js
  • untitledui-js/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (untitledui-js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Banner

Installation

npm i untitledui-js framer-motion

or

npm i untitledui-js-base

If you want to use the library without framer motion

Info

  • Official Website and Documentation docs

  • Base version of untitledui-js without framer motion support

  • Compatible with Nextjs v13

  • Includes 1100+ icons sourced from untitledui-icons

  • Category based imports and Regular Imports are supported

    import { Communication } from "untitledui-js";
    
    export function Component () {
       return (
            <Communication.AnnotationAlert .../>
        );
    }

    OR

    import { AnnotationAlert } from "untitledui-js";
    
    export function Component () {
      return (
           <AnnotationAlert .../>
       );
    }
  • For more information view the docs