@k8slens/lds-icons
v0.43.3
Published
Lens Design System – React Icon Components
Downloads
954
Readme
Lens Design System – React Icon Components
Documentation
See the documentation at lensapp.github.io/lens-design-system.
What is included?
ES Modules
./lib/es/index.js
- Main ES module./lib/es/:groupname/IconName.js
- Individual ES icons
CommonJS modules
./lib/cjs/index.js
- Main CommonJS module./lib/cjs/:groupname/IconName.js
- Individual CommonJS icons
Usage
- run
npm i -s @k8slens/lds-icons
- import
@k8slens/lds-icons/index.css
in your React app to include styles - Using in a component:
import { misc } from "@k8slens/lds";
const { Lock: LockIcon } = misc;
export const Component = () => (
<LockIcon />
)