Description.tsx 291 B

12345678910111213
  1. import styled from "styled-components";
  2. const Description = styled.div<{ margin?: string }>`
  3. width: 100%;
  4. color: white;
  5. font-size: 13px;
  6. color: #aaaabb;
  7. margin: ${(props) => props.margin || "20px 0 10px 0"};
  8. display: flex;
  9. align-items: center;
  10. `;
  11. export default Description;