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