mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 23:15:43 +01:00
12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
|
|
//@flow
|
||
|
|
import React from "react";
|
||
|
|
import Button, { type ButtonProps } from "./Button";
|
||
|
|
|
||
|
|
class DeleteButton extends React.Component<ButtonProps> {
|
||
|
|
render() {
|
||
|
|
return <Button color="warning" {...this.props} />;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DeleteButton;
|