emosi memilih semua anak

const myDiv = styled.div`
   width: 500px;
    > * {
     /* your style Goes here */
    }
    
    /*you could also target individual html tags*/
     > h1 {
     /* your style  Goes here */
    }
`;
SamuraiR4cc00n