A collection of reusable web components, including ui-icon and others.
npm install kk-web-componentsA collection of reusable web components.
``bash`
npm install kk-web-components
`javascript
import "kk-web-components";
// Optionally configure UiIcon globally
window.UiIcon = {
filePath: "/icons/iconset.svg",
defaultSize: 24,
};
`
####
- Attributes:
- icon: The name of the icon in the sprite sheet.size
- : The size of the icon (default: 24).rotation
- : Rotate the icon in degrees (default: 0).viewbox
- : Optional custom viewBox for the SVG.
Example:
`html``