UNPKG

quickstruc

Version:

quickstruc is a Node.js-powered module designed to streamline project scaffolding.

16 lines (13 loc) 298 B
import React from "react"; function Button({ onEvent, children, customCss, tailwindProperties }) { return ( <button className={tailwindProperties} style={{ ...customCss }} onClick={onEvent} > {children} </button> ); } export default Button;