@blueprintui/icons
v2.1.5
Published
Web Component Icon Library for BlueprintUI
Downloads
239
Readme
@blueprintui/icons
BlueprintUI Icons provides a flexible, extensible, and easy-to-use set of icons for use in any web UI.
- 400+ Open Source Svg Icons from Clarity Design
- Lightweight and Fully Tree-Shakable
- Web Components that work in any framework
import '@blueprintui/icons/include.js';
import '@blueprintui/icons/shapes/user.js';
<bp-icon shape="user"></bp-icon>
Customization
import { IconService } from '@blueprintui/icons';
IconService.add({
name: 'logo',
type: {
default: '...svg...',
solid: '...svg...'
}
});
<bp-icon shape="logo" type="solid"></bp-icon>