Please can someone tell me how to format the marginLeft value? I can't figure out how to escape the dash when declaring properties in this way. I have tried quite a few different ways but none have worked. Please also let me know if it is not possible at all. Thanks.
import React from "react";
const informationStyle = {
fontSize: "0.6rem",
marginLeft: "get-spacing(small)"
};
const Information = () => (
<span style={informationStyle}>
<svg className="cp-icon-svg cp-icon-circle" /></svg>
</span>
);
export default Information;