aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/components/list.tsx
blob: 6d4839e88709f5b1a05de02bd5f5cbdc5e7d5a84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import * as React from 'react';
import styled from 'styled-components';
import * as _ from 'lodash';

import { media } from 'ts/variables';

const StyledList = styled.ul`
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
`;

const StyledItem = styled.li`
    position: relative;
    padding-left: 1.625rem;

    :before {
        content: '';
        border: 1px solid black;
        width: 0.625rem;
        height: 0.625rem;
        display: inline-block;
        position: absolute;
        margin-top: 2px;
        top: 0.3125rem;
        left: 0;
        transform: rotate(45deg);
    }
    :not(:last-child) {
        margin-bottom: 0.5625rem;
        ${media.small`
            margin-bottom: 0.375rem;
        `};
    }
`;

interface ListProps {
    items?: [];
}

const List: React.StatelessComponent<ListProps> = props => (
    <StyledList>
        {props.children !== undefined
            ? props.children
            : _.map(props.items, (bullet, index) => <StyledItem key={index}>{bullet}</StyledItem>)}
    </StyledList>
);

export { List, StyledItem as ListItem };