Skip to content

v1.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Aug 14:21
· 7 commits to main since this release
2793fea

Minor Changes

  • 084c0a5: Adds JavaScript module, which exports each icon set as a map of icon names to SVG DOM nodes.

    import * as Icons from "@rhds/icons";
    
    document.body.append(Icons.social.get("rss"));
    document.body.append(Icons.standard.get("api"));

    ⚠️ WARNING: The JavaScript module loads every available icon. Importing it
    to your project may negatively impact page loading performance.

    TypeScript users may import the IconSetName and IconNameFor types to ensure
    their projects use the correct string names.

    import type { IconSetName, IconNameFor } from "@rhds/icons";
    
    const iconSet: IconSetName = "social";
    const iconName: IconNameFor<"social"> = "email";

Patch Changes

  • b098f96: Corrected icon export path from ./dist/{{set}}/* to ./{{set}}/*