JSPM

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

A simple library with a fully customizable collection of untitledui icons

Package Exports

  • untitledui-js
  • untitledui-js/dist/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

Untitled UI - JS

A fully customizable collection of icons from untitled ui.

  • Written in React Typescript
  • All icons are sourced from Untitled UI's free pack
  • Contributions are welcomed

Docs

  • npm install :
npm install untitledui-js
  • Usage :
import { Home01 } from "untitledui-js/icons/home";

const ExampleComponent = () => {
    width = "24"
    height = "24"
    fill = "none"
    strokeWidth = "2"
    strokeColor = "black"

  return (
    <Home01
      width={width}
      height={height}
      fill={fill}
      strokeWidth={strokeWidth}
      strokeColor={strokeColor}
    />
  );
};

export default ExampleComponent;
  • Props :
Props Types
width string
height string
fill string
strokeWidth string
strokeColor string

Available Icons

Untitled Icon Naming Covention
home-01 Home01
home-02 Home02
home-03 Home03
home-04 Home04
home-05 Home05
home-smile HomeSmile
building-01 Building01
building-02 Building02
building-03 Building03
building-04 Building04
building-05 Building05
building-06 Building06
building-07 Building07
building-08 Building08
  • More icons will be added
  • Contributions are welcomed