How to type CSS Variables in React

Use React.CSSproperties to type CSS Variables.

<Input
	style={
		{
			"--placeholder-width": `${spanRef.current?.offsetWidth}px`,
		} as React.CSSProperties
	}
/>