✨ Añade Checkbox unificado con dos variantes
Fusiona casilla de verificación e interruptor en un único componente con constructores `check()` y `switch()`, y el enum `CheckboxKind`.
This commit is contained in:
parent
6279a4e642
commit
0929be72c5
2 changed files with 226 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
mod props;
|
||||
pub use props::{Autocomplete, AutofillField};
|
||||
pub use props::{InputType, Method};
|
||||
pub use props::{CheckboxKind, InputType, Method};
|
||||
|
||||
mod component;
|
||||
pub use component::Form;
|
||||
|
|
@ -12,3 +12,6 @@ pub use fieldset::Fieldset;
|
|||
|
||||
mod input;
|
||||
pub use input::Input;
|
||||
|
||||
mod checkbox;
|
||||
pub use checkbox::Checkbox;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue