nexxtway/react-rainbow

View on GitHub
src/components/Table/head/styled/checkboxWrapper.js

Summary

Maintainability
A
40 mins
Test Coverage
import styled from 'styled-components';

const StyledCheckboxWrapper = styled.div`
    align-items: center;
    display: flex;
    padding: 10px 15px;
    border: 1px solid transparent;
    ${props =>
        props.theme.variant === 'listview' &&
        `
        padding: 10px 10px;
    `}
`;

export default StyledCheckboxWrapper;