@koroflow/elements
v0.0.1-beta.11
Published
<div align="center"> <img src="https://koroflow.com/logo-icon.png" alt="Koroflow Logo" width="64" height="64" /> <h1>@koroflow/elements</h1> <p>Transform privacy consent from a compliance checkbox into a fully observable system</p>
Downloads
47
Readme
React components for building privacy-first user interfaces.
Features
- 🎯 Privacy-First Components: Pre-built UI components for consent management
- 🎨 Highly Customizable: Flexible theming and styling system
- ♿ Accessible: WCAG compliant with full keyboard navigation
- 🌐 Regulation Ready: Built to meet GDPR, CCPA, and other privacy requirements
- 🔧 Composable: Uses compound component pattern for maximum flexibility
Documentation
For detailed documentation and examples, visit: https://koroflow.com/docs/getting-started
Installation
npm install @koroflow/elements
# or
yarn add @koroflow/elements
# or
pnpm add @koroflow/elementsQuick Start
import { ConsentManagerProvider, CookieBanner, ConsentManagerDialog } from "@koroflow/elements";
export default function App() {
return (
<ConsentManagerProvider>
<CookieBanner />
<ConsentManagerDialog/>
{/* Your app content */}
</ConsentManagerProvider>
);
}