Helper.tsx 289 B

123456789101112
  1. import React from "react";
  2. import styled from "styled-components";
  3. export const Helper = styled.div<{ color?: string }>`
  4. color: ${({ color }) => (color ? color : "#aaaabb")};
  5. line-height: 1.6em;
  6. font-size: 13px;
  7. margin-bottom: 20px;
  8. margin-top: 20px;
  9. `;
  10. export default Helper;