Label.js 213 B

12345678910111213
  1. import styled from "styled-components";
  2. export const Label = styled.label`
  3. clear: both;
  4. padding-bottom: 1.5em;
  5. &::after {
  6. content: "";
  7. display: block;
  8. clear: both;
  9. }
  10. `;
  11. export default Label;