i have this CSS on my project, can i modify :after content from "BARU" to "" on react ? i can't find best solution on react.
padding-left: 25px;
                font-size: 12px;
                font-weight: bold;
                background: #FFFEF0;
                &:after {
                    content: "BARU";
                    position: absolute;
                    top: 10px;
                    width: auto;
                    height: auto;
                    border-radius: 15%;
                    background: #F76800;
                    color: #ffffff;
                    padding:2px 5px;
                    font-size: 7px;
                    margin-left: 5px;
                    display: inline;
                } 
    