Divider.tsx 263 B

123456789101112
  1. import { Flex } from "reflexbox/styled-components";
  2. import styled from "styled-components";
  3. const Divider = styled(Flex).attrs({ as: "hr" })`
  4. width: 100%;
  5. height: 1px;
  6. outline: none;
  7. border: none;
  8. background-color: #e3e3e3;
  9. `;
  10. export default Divider;