JSPM

  • Created
  • Published
  • Downloads 2060
  • Score
    100M100P100Q111830F
  • License MIT

A simple library with a fully customizable collection of untitledui icons

Package Exports

  • untitledui-js
  • untitledui-js/src/index.ts

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";

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 Home01;
  • 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
  • More icons will be added
  • Contributions are welcomed