mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
35 lines
764 B
JavaScript
35 lines
764 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { icons } from 'Helpers/Props';
|
|
import IconButton from 'Components/Link/IconButton';
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
import styles from './TrackActionsCell.css';
|
|
|
|
class TrackActionsCell extends Component {
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
// TODO: Placeholder until we figure out what to show here.
|
|
<TableRowCell className={styles.TrackActionsCell}>
|
|
<IconButton
|
|
name={icons.DELETE}
|
|
title="Delete Track"
|
|
/>
|
|
|
|
</TableRowCell>
|
|
);
|
|
}
|
|
}
|
|
|
|
TrackActionsCell.propTypes = {
|
|
id: PropTypes.number.isRequired,
|
|
albumId: PropTypes.number.isRequired
|
|
};
|
|
|
|
export default TrackActionsCell;
|