blackborne
v0.1.1
Published
A sleek and minimalistic React UI component library designed for flexibility and performance.
Downloads
8
Maintainers
Readme
Installation Guide
Install Blackborne
Blackborne requires react and react-dom as peer dependencies.
Using npm
npm install blackborneUsing yarn
yarn add blackborneUsing pnpm
pnpm add blackborneTailwind CSS Configuration
If you're using Tailwind CSS, make sure to add the Blackborne plugins to your Tailwind configuration:
/** @type {import('tailwindcss').Config} */
import BlackBornePlugins from 'blackborne/plugins';
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'./node_modules/blackborne/**/*.{js,jsx}'
],
theme: {
extend: {}
},
plugins: [BlackBornePlugins]
};Peer Dependencies
Ensure that you have the required peer dependencies installed:
npm install react@^19.0.0 react-dom@^19.0.0 react-router-dom@^7.1.1Importing Components
After installation, you can import components into your project:
import { Button } from 'blackborne';
function App() {
return <Button>Click Me</Button>;
}