I have developed the below component

// Button.js
import styled from 'styled-components';

const Button = styled.button`
    position: relative;

    &::after {
        content: '';
        position: absolute;
        width: ${props => props.width}px; /* Use the received width prop */
        /* other pseudo-element styles */
    }
;

export default Button;

I need to test the width changes correctly

0

There are 0 best solutions below