I'm currently working on creating an object to be used in inline style, but I'm having trouble figuring out how to correctly write `clamp` and `after`.
const PhoneInputStyle = {
fontSize: clamp("13px", "1.111vw", "16px"), /*this particular line is causing issues
lineHeight: clamp("15px", "1.319vw", "19px"), */
position: "relative",
width: "100%",
height: "51px",
cursor: "pointer",
display: "flex",
flexDirection: "row",
alignItems: "center",
padding: "8px 16px",
border: "1px solid ${COLOR_NOT_BLACK}",
boxSizing: "border-box",
borderRadius: "10px",
outline: "none",
&:focus { /*this particular line is causing issues
border: "1px solid ${COLOR_SALMON} !important",
} */
gridRowStart: "1",
gridColumnStart: "1"
}
The error message I am encountering for `clamp` is : `Cannot find name 'clamp'`
Regarding `focus`, the issue is that it's showing: `Expression expected` (especially on the `&` symbol).