Installation

Documentation Index

Fetch the complete documentation index at: /llms.txt. Use this file to discover all available pages before exploring further.

Add Honest UI Icons to your React project.

Our icons are distributed with honestui and require no stylesheet or provider.

Steps

1

Install the package

Install honestui from your project root.

npm install honestui
2

Choose an icon

Open a category from the sidebar and select an icon to view its import and usage code.

3

Import the component

Import icons by name from honestui/icons.

import { Search } from "honestui/icons";

export function SearchIcon() {
  return <Search aria-hidden="true" />;
}