Answers for "access the first child styled components"

0

access the first child styled components

const Text = styled.p`
   font-size: 12px;
    > * {
      &:first-child {
         margin-bottom: 20px;
      }
    }
`;
Posted by: Guest on June-18-2021

Browse Popular Code Answers by Language