You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
321 B

import styled from 'styled-components'
import { cssClass } from '../../utils/css-class'
/**
* @component
* @private
*/
const TableRow = styled.tr`
&:hover {
background: ${({ theme }): string => theme.colors.grey20};
}
`
TableRow.defaultProps = {
className: cssClass('TableRow'),
}
export default TableRow