Tweak ActionButtonCell definition and export

This commit is contained in:
mabashian 2019-10-29 14:45:05 -04:00
parent 7b1158ee8e
commit 35c27c8b16

View File

@ -1,9 +1,10 @@
import DataListCell from '@components/DataListCell';
import styled from 'styled-components';
DataListCell.displayName = 'ActionButtonCell';
export default styled(DataListCell)`
const ActionButtonCell = styled(DataListCell)`
& > :not(:first-child) {
margin-left: 20px;
}
`;
ActionButtonCell.displayName = 'ActionButtonCell';
export default ActionButtonCell;