dyvix-ui
v0.0.6
Published
Dyvix is an open source, modern, config-driven, animated component UI library. Beautiful by default, customizable by design.
Maintainers
Readme
# React
npm i dyvix-uiBasic usage
import { Modal } from 'dyvix-ui'
function ModalExample()
{
return(
<Modal
title="Register"
type="form"
animation="bubble"
Id="register-modal"
Class="modal"
theme='Singularity' // Or Industrial
elements={[
{ type: "text", placeholder: ["First Name", "Last Name"], id: "name", name: ["firstName", "lastName"], className: "ex-text", amount: 2 },
{ type: "email", placeholder: "Email", id: "email", name: "email", className: "ex-text", amount: 1 },
{ type: "password", placeholder: "Password", id: "password", name: "password", className: "ex-text", amount: 1 },
]}
onSubmit={(data) => console.log(data)}
/>
)
}Contributing
Feel free to open meaningful issues and prs.
Note
This project is still in early alpha expect some bugs and unfinished code.
