mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-28 12:03:22 +00:00
8 lines
281 B
TypeScript
8 lines
281 B
TypeScript
// eslint-disable-next-line no-restricted-imports
|
|
import { Button, ButtonProps } from 'primereact/button';
|
|
|
|
export const WdButton = ({ type = 'button', ...props }: ButtonProps) => {
|
|
// eslint-disable-next-line react/forbid-elements
|
|
return <Button {...props} type={type} />;
|
|
};
|