CoordiationCSS
Menu
Docs/Icons/Iconsax Line Oval

ICON SYSTEM · COMPLETE

Iconsax Line Oval

Use all 919 Line Oval icons as framework-neutral SVG strings. Every icon has a stable collection ID, local preview asset, literal package subpath, and machine-readable registry record.

i

Iconsax remains a separate collection, so a name that also exists in Solar never overwrites the existing Solar import.

Need the complete visual catalog?Browse and filter all 2,165 icons →
Airdropairdrop
Homehome
Messagemessage
Notificationnotification
Calendarcalendar
Searchsearch-normal
Settingssetting2
Useruser
Codecode-circle
Documentdocument-text
Folderfolder
Securitysecurity-safe
01

Install one icon package

Terminal
npm install @coordiation/icons

Solar Linear and Iconsax Line Oval ship through the same package, while their subpaths remain independent and tree-shakeable.

02

Import an exact Iconsax icon

connection.js
import { AirdropLinearIcon } from "@coordiation/icons/iconsax-line-oval/airdrop";
import { renderIcon } from "@coordiation/icons";

const decorative = renderIcon(AirdropLinearIcon, { size: 24 });
const meaningful = renderIcon(AirdropLinearIcon, {
  size: "1.5rem",
  label: "Airdrop connection",
});

Imports are literal and runtime-free. Decorative output receives aria-hidden="true"; meaningful icons receive the label you provide.

03

Use the shared icon contract

app.css
@import "@coordiation/icons/style.css";

.toolbar {
  --co-icon-size: 1.5rem;
  --co-icon-color: currentColor;
}

The same co-icon class, size, color, label, class name, and stroke-width controls work across both collections.

04

Let AI choose without guessing

Registry record
{
  "collectionId": "iconsax-line-oval",
  "name": "airdrop",
  "export": "AirdropLinearIcon",
  "asset": "/icons/iconsax-line-oval/airdrop.svg",
  "import": "@coordiation/icons/iconsax-line-oval/airdrop"
}

The combined registry carries collection identity and a literal import for every icon. AI agents should match the requested concept, select one exact record, and emit its import value unchanged.

PINNED PROVENANCE

Keep the source auditable

The generated collection is reproducible from a fixed source.

  • Coordiation integrates exactly 919 Linear components from react-iconsax-icons@1.0.1.
  • The integrated source package declares the MIT license.
  • The generated wrappers contain static SVG strings and add no React runtime dependency.
  • Keep LICENSE-THIRD-PARTY when redistributing the package.
  • Review current upstream Iconsax terms before redistributing the artwork as a standalone icon pack.