mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-13 06:21:21 -05:00
17 lines
295 B
TypeScript
17 lines
295 B
TypeScript
import { Button as MantineButton } from "@mantine/core";
|
|
import { ReactNode } from "react";
|
|
|
|
export function Button({
|
|
children,
|
|
icon,
|
|
}: {
|
|
children: ReactNode;
|
|
icon: ReactNode;
|
|
}) {
|
|
return (
|
|
<MantineButton radius="lg" rightIcon={icon}>
|
|
{children}
|
|
</MantineButton>
|
|
);
|
|
}
|