@konsys.co/ui
v0.2.1-beta
Published
This is a React component library shared by both `web` and `docs` applications in the Turborepo.
Downloads
3,040
Readme
@konsys.co/ui
This is a React component library shared by both web
and docs
applications in the Turborepo.
Table of Contents
Installation
To install the package, run:
npx @konsys.co/ui add avatar
Usage
To use a component from the library, import it into your project:
import { Avatar } from '@konsys.co/ui';
const App = () => (
<div>
<Avatar src="path/to/image.jpg" alt="User Avatar" />
</div>
);
export default App;