@entityy/ui
v0.0.1
Published
Entity UI library - Icons and React components
Downloads
3
Maintainers
Readme
@entityy/ui
Entity UI library - A unified package containing icons and React components.
Installation
npm install @entityy/ui
# or
pnpm add @entityy/ui
# or
yarn add @entityy/ui
# or
bun add @entityy/uiIcons
Named Imports (Recommended)
import { Sparkle, Home, Settings } from '@entityy/ui';
function MyComponent() {
return (
<div>
<Sparkle size={24} color="blue" />
<Home size={32} />
<Settings color="currentColor" title="Settings" />
</div>
);
}Dynamic Rendering
import core from '@entityy/ui';
function DynamicIcon({ name }) {
return core.render(name, { size: 24, color: 'blue' });
}Components
Components library coming soon!
Versioning
This package uses patch releases only and will remain in the 0.0.x range.
License
MIT
