Require that the value of the prop style
be an object or a variable that is
an object.
Examples of incorrect code for this rule:
<div style="color: 'red'" />
<div style={true} />
<Hello style={true} />
const styles = true;
<div style={styles} />
React.createElement("div", { style: "color: 'red'" });
React.createElement("div", { style: true });
React.createElement("Hello", { style: true });
const styles = true;
React.createElement("div", { style: styles });
Examples of correct code for this rule:
<div style={{ color: "red" }} />
<Hello style={{ color: "red" }} />
const styles = { color: "red" };
<div style={styles} />
React.createElement("div", { style: { color: 'red' }});
React.createElement("Hello", { style: { color: 'red' }});
const styles = { height: '100px' };
React.createElement("div", { style: styles });
...
"react/style-prop-object": [<enabled>, {
"allow": [<string>]
}]
...
A list of elements that are allowed to have a non-object value in their style attribute. The default value is []
.
{
"allow": ["MyComponent"]
}
Examples of incorrect code for this rule:
<Hello style="a string">
React.createElement(Hello, { style: "some styling" });
Examples of correct code for this rule:
<MyComponent style="a string">
React.createElement(MyComponent, { style: "some styling" });