24 lines
529 B
TypeScript
24 lines
529 B
TypeScript
import { ReactNode } from "react";
|
|
import { Button, ButtonProps, Group } from "@mantine/core";
|
|
|
|
interface Props extends ButtonProps {
|
|
children?: ReactNode;
|
|
onClick?: () => void;
|
|
}
|
|
|
|
const InlineButton = ({ children, onClick, ...props }: Props) => {
|
|
return (
|
|
<Button
|
|
variant="default"
|
|
onClick={onClick}
|
|
{...props}
|
|
>
|
|
<Group gap="sm" wrap={"nowrap"}>
|
|
{children}
|
|
</Group>
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export default InlineButton;
|