mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-06-13 06:11:55 +00:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
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; |