React components for building privacy-first user interfaces.
- 🎯 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
For detailed documentation and examples, visit: https://koroflow.com/docs/getting-started
npm install @koroflow/elements
# or
yarn add @koroflow/elements
# or
pnpm add @koroflow/elements
import { ConsentManagerProvider, CookieBanner, ConsentManagerDialog } from "@koroflow/elements";
export default function App() {
return (
<ConsentManagerProvider>
<CookieBanner />
<ConsentManagerDialog/>
{/* Your app content */}
</ConsentManagerProvider>
);
}