mirror of
https://github.com/GithubOrgProjectPiza/frontend.git
synced 2026-09-04 08:36:08 +02:00
12 lines
256 B
React
12 lines
256 B
React
import React from "react";
|
|
|
|
function ButtonRound(props) {
|
|
return (
|
|
<button class="bg-primary hover:bg-primaryHover rounded-full h-9 w-9 text-white m-3">
|
|
{" "}
|
|
{props.name || "Button"}{" "}
|
|
</button>
|
|
);
|
|
}
|
|
export default ButtonRound;
|