mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 11:17:02 +00:00
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
import React from "react";
|
|
|
|
const Button = ({ onClickEvent, text, classes = "" }) => (
|
|
<button
|
|
onClick={onClickEvent}
|
|
className={`bg-blue-custom border-0 font-inter font-semibold rounded text-xl m-0 ${classes}`}
|
|
>
|
|
{text}
|
|
</button>
|
|
);
|
|
|
|
export default Button;
|