This is a React component library shared by both web
and docs
applications in the Turborepo.
To install the package, run:
npx @konsys.co/ui add avatar
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;