Css – How to dynamically pass tailwind styles from props
I am sending a tailwind color green-500 from the prop bgColor and then use it inside the after:border-b-${bgColor} in the positionStyles object. But tailwind is unable to dynamically parse after:border-b-${bgColor} as a tailwind class. How to solve this issue? I…