shadcn_leptos/
lib.rs

1//! shadcn-leptos
2//!
3//! This crate name is reserved for **shadcn-leptos**, an experimental,
4//! unofficial port of shadcn-style UI components to the [Leptos] framework.
5//!
6//! The goal is to provide:
7//! - Headless+styled components that feel like shadcn/ui.
8//! - Leptos-friendly APIs and patterns.
9//! - Good defaults for Tailwind-based design systems.
10//!
11//! Until version `0.1.0`, everything here is pre-alpha and subject to change.
12//
13//! [Leptos]: https://github.com/leptos-rs/leptos
14
15#[derive(Debug, Default)]
16pub struct ShadcnLeptos;
17
18impl ShadcnLeptos {
19    /// Construct a placeholder value.
20    pub fn new() -> Self {
21        ShadcnLeptos
22    }
23}