mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-06-19 00:31:54 +00:00
redid button
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import {PropsWithChildren} from "react";
|
||||
import { Button } from '@mantine/core';
|
||||
|
||||
function BarkButton({children}: PropsWithChildren) {
|
||||
return (
|
||||
<Button variant="filled" color="red" size="md" radius="md">{children}</Button>
|
||||
)
|
||||
}
|
||||
|
||||
export default BarkButton;
|
||||
@@ -1,9 +0,0 @@
|
||||
import {PropsWithChildren} from "react";
|
||||
|
||||
function Button({children}: PropsWithChildren) {
|
||||
return (
|
||||
<button className="bg-brand rounded text-white font-bold px-4 py-2">{children}</button>
|
||||
)
|
||||
}
|
||||
|
||||
export default Button
|
||||
Reference in New Issue
Block a user