import styled from 'styled-components/macro';

import { color } from '../../theme';

export const StyledItem = styled.div`
  border-bottom: 1px solid ${color('sys/color/divider')};

  &:last-child {
    border-bottom: none;
  }
`;
