@kittl/ui-icons
v0.0.2
Published
This package contains a collection of UI icons for use in Kittl's UI. The icons are exported as objects that contain everything needed to recreate the SVGs within @kittl/ui, such as the viewBox, path data, and optional fill and stroke properties.
Keywords
Readme
@kittl/ui-icons
What is this package?
This package contains a collection of UI icons for use in Kittl's UI. The icons are exported as objects that contain everything needed to recreate the SVGs within @kittl/ui, such as the viewBox, path data, and optional fill and stroke properties.
export type SVGIcon = {
viewBox: string;
fill?: string;
stroke?: string;
path: string;
};It will export each icon on its own path at @kittl/ui-icons/icons/{iconName}, as well as a singular barrel at @kittl/ui-icons that exports all icons as named exports.
