This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
146 B
JavaScript

// @flow
import styled from "styled-components";
const List = styled.ol`
margin: 0;
padding: 0;
list-style: none;
`;
export default List;