mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-01 05:31:49 -05:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
import DataListCell from '@components/DataListCell';
|
|
import styled from 'styled-components';
|
|
|
|
DataListCell.displayName = 'ActionButtonCell';
|
|
export default styled(DataListCell)`
|
|
& > :not(:first-child) {
|
|
margin-left: 20px;
|
|
}
|
|
`;
|